How to check CPU temperature in OpenSUSE Linux

To check the CPU temperature in OpenSUSE Linux, you can use the ‘sensors’ command. This command can give you information about the temperature of different components of your system, including the CPU. Before you can use the ‘sensors’ command, you will need to make sure that the ‘lm_sensors’ package is installed on your system. To … Read more

How to check CPU temperature on Ubuntu Linux

To check the CPU temperature on Ubuntu Linux, you can use the ‘sensors’ command. This command is part of the lm-sensors package, which is not installed by default on Ubuntu. To install it, you can run the following command: sudo apt-get install lm-sensors Once the package is installed, you can run the ‘sensors’ command to … Read more

Can I delete /var/cache/apt/archives for Ubuntu/Debian Linux?

Yes, you can delete the contents of the /var/cache/apt/archives directory on Ubuntu/Debian Linux. The directory contains package files that have been downloaded by the apt package manager, and they can be safely removed if you need to free up space on your system. You can use the command “sudo rm -rf /var/cache/apt/archives/*” to remove all … Read more

How to check disk space on Unix servers

There are several commands that can be used to check disk space on Unix servers. Some common ones include: df -h: This command shows the file system disk space usage in human-readable format. It shows the total, used and available space on each file system. du -sh: This command shows the disk space usage for … Read more