UNIX Disk Usage Command Examples

There are several commands you can use in Unix to view disk usage information, including: df: The df command displays information about disk space usage on your file system. By default, df shows disk usage information for all mounted file systems. Here’s an example of how to use df: df -h The -h option makes … Read more

HowTo: Find Symlink under UNIX / Linux

To find symbolic links (symlinks) in Unix or Linux, you can use the find command in combination with the -type option. The -type option allows you to search for specific types of files, including symbolic links. Here’s the basic syntax for finding symlinks: find /path/to/search -type l Where /path/to/search is the directory or file system … Read more

Linux Open .CBR (Comic Book Archive) File

To open .cbr files on Linux, you can use a variety of comic book reader applications such as: MComix: A user-friendly comic book reader that supports CBR, CBZ, and PDF files. QComicBook: A lightweight comic book reader that supports CBR, CBZ, and PDF files. Comix: A feature-rich comic book reader that supports CBR, CBZ, and … Read more

Change the Password in UNIX Command

To change the password in UNIX, you can use the passwd command in a terminal window. To change your own password, simply type passwd and press Enter. You will be prompted to enter your current password, followed by your new password and a confirmation of your new password. For example: $ passwd Changing password for … Read more

CentOS / RHEL Linux: Remove GDM

To remove the GDM (GNOME Display Manager) graphical login screen on CentOS or Red Hat Enterprise Linux, you need to uninstall the gdm package using the yum package manager. First, use the following command to check if GDM is installed: yum list installed | grep gdm If the package is installed, you can remove it … Read more