Posts

Practical Disk Cleanup Methods Beyond the Default Tool

Over time, several built-in Windows methods prove effective for reclaiming disk space without relying solely on graphical cleanup utilities. Temporary Directories %temp% C:\Windows\Temp These directories often accumulate non-essential files over extended system usage. Windows Update Cache net stop wuauserv Delete contents of: C:\Windows\SoftwareDistribution\Download net start wuauserv Clearing outdated update files can free measurable disk space. Component Store Cleanup DISM /Online /Cleanup-Image /StartComponentCleanup Safely reduces the size of the Windows component store. Hibernation File Removal powercfg -h off Disabling hibernation removes the hibernation file, which can occupy several gigabytes. System-level cleanup should always be performed with caution, especially on production machines.

Underrated Windows Commands Every IT Professional Should Know

Most Windows users are familiar with commands like ipconfig and ping . But in real-world enterprise environments, basic commands are often not enough. As an IT professional, knowing lesser-known native Windows utilities can significantly improve your troubleshooting speed and flexibility — especially in restricted or domain-controlled systems. Here are some underrated yet powerful Windows commands every IT professional should know. 1. net1 – The Lesser-Known Alternative The net command is widely used for managing users, groups, and network shares. However, many professionals are unaware that net1 exists as a built-in alternative. net1 user net1 localgroup administrators Why it matters: Understanding native alternatives improves flexibility during troubleshooting and teaches you more about how Windows maintains backward compatibility. 2. qwinsta – View Active RDP Sessions This command displays active Remote Desktop sessions on a system. qwinsta Use case: He...

Installing QEMU/Virt-Manager On Arch Linux

First update your system : sudo pacman -Syu Install the required packages : sudo pacman –S qemu qemu-arch-extra virt-manager ebtables bridge–utils dmidecode sudo systemctl start libvirtd sudo systemctl enable libvirtd sudo systemctl status libvirtd sudo nano /etc/libvirt/qemu.conf user="root" group="root" Ctrl+X to exit Y to save Enter to confirm  sudo systemctl restart libvirtd sudo systemctl status libvirtd If everything is active and running without any error you can continue and start creating your VM.

How To Create And Configure Sudo User On Arch Linux

Step 1) Install sudo package Right off the bat, we need to install the sudo utility. Unlike other Linux distributions, this is not included by default in the base install. To install this, execute the following command as root: # pacman -S sudo Step 2) Create a regular user Next, we need to create a regular user. We will later add this user to the sudoers group to enable them to carry out administrative tasks. To create a sudo user, use the useradd command as shown: # useradd -m -G wheel -s /bin/bash username Let’s break down the command: The -m option creates a home directory for the user /home/user. The -G option adds the user to an additional group. In this case, the user is being added to the wheel group. The -s option specifies the default login shell. In this case, we are assigning bash shell denoted by /bin/bash. So, let’s assume you want to add a regular user called techuser. To accomplish this, run the command as follows: # useradd -m -G wheel -s /bin/bash techuser Step 3) Con...

How To Change Username In Arch Linux

Logoff. Switch to a tty console (Ctrl+Alt+F4). Login as root. Edit the following directories and replace the username nano /etc/passwd nano /etc/shadow nano /etc/group Finally, rename your current home folder mv /home/oldusername /home/newusername Reboot device  reboot

Dual Boot Manjaro With Windows 10

Disable Windows features Do you plan on doing read/write on your Windows partition? Disable Windows options like Fast Startup Hybrid Sleep Windows  Hybrid Sleep  defaults to enabled on desktop computers and disabled for laptop computers. Why should I do that?  When Windows uses the above options it leaves the file system in a  dirty state . When the file system is in this state the Linux filesystem tool  ntfs-3g  mounts the file system  read-only , effectively blocking you from making changes to your files on the Windows partition. To disable Windows Fast Startup you need to access the Windows Control Panel. You find it by clicking on  Windows Start  button → type  control  → select  Control Panel  desktop app. In the Control Panel app Click on  System and Security Click on  Power Options Click on  Choose what power buttons do a. Click on  Change settings that are currently unavailable b. Uncheck the op...

How To Create Infinite Folders On Windows

Open a Notepad and copy this code to Notepad. @echo off :top md %random% goto top  @echo off makes it so that it appears to be a blank screen but actually its making hundreds of folder. md %random% is command that creating folders with random names. goto top – return to label :top , infinite loop Save the file with .bat extension(for eg: folderscreate.bat) That’s all if you double click the file it will create a finite folder wherever the batch file is.