Linux Command: Show Linux Version

To show the version of the Linux distribution that you are currently running, you can use the following command: lsb_release -a Running this command in a terminal will display the version of the Linux distribution, as well as other information such as the release codename, description, and more. For example, running this command on an … Read more

How To Find Linux Kernel Version Command

To find the version of the Linux kernel that is currently running on your system, you can use the following command: uname -r Running this command in a terminal will display the kernel version number, for example: 5.13.0-28-generic The output of this command shows the major version number (5 in the example), the minor version … Read more

HowTo: Update Linux Kernel With ksplice

Ksplice is a technology that allows you to apply updates to the Linux kernel without having to reboot the system. This can be very useful in situations where you need to keep your system running continuously without any downtime. Here’s how you can update the Linux kernel with Ksplice: Check whether your system is compatible … Read more

Ubuntu Uninstall deb Package

To uninstall a .deb package in Ubuntu, you can use the dpkg command. Here are the steps to uninstall a .deb package: Open the terminal by pressing Ctrl + Alt + T. Type the following command and press Enter: sudo dpkg -r package_name Replace package_name with the name of the package you want to uninstall. … Read more

Linux: Find User Files

To find files owned by a specific user on Linux, you can use the find command with the -user option. Here’s an example command that finds all files in the home directory of user “username”: find /home/username -user username In this command, replace “username” with the actual username you want to search for. The command … Read more

How To Delete All Files And Folders In Linux

To delete all files and folders in Linux, you can use the rm command with the -r option, which recursively deletes files and directories. Before using this command, be sure you know what you’re doing, as it will delete all files and directories in the specified location. Here’s how to delete all files and folders … Read more