Author: Binny V A

A philosopher programmer who specializes in backend development and stoicism.

Change Ownership of a File

Change user and group ownership of a file chown user:group file

Meminfo

Show memory use $ cat /proc/meminfo

List all Installed RPMs

List all packages installed on the system yum list

Force delete a file

Force delete a file rm -f file

Tail Command in Follow Mode

View in real time what is added to a file. -f stands for Follow tail -f /var/log/messages

Network Stats

Show network adpters and statistics cat /proc/net/dev

Change File Encoding

Creates a new from the given input file by assuming it is encoded in fromEncoding and converting it to toEncoding….

Batch Resize Images with ImageMagick

Batch resize files in the current directory and send them to a thumbnails directory (requires convert from Imagemagick) find ….

Cpuinfo

Linux command to show information about the CPU cat /proc/cpuinfo # Result (example) processor : 0 vendor_id : AuthenticAMD cpu…

tree Command

Show files and directories in a tree tree