Linux goodness again

Some more commands to know

 

Command Description
gzip/gunzip Zip a file using GNU Zip and unzip it e.g. gzip filename
tar Create an archive of files e.g. tar cvf output.tar inputfile1 inputfile2 where c creates the new archive, v gives verbose output and f tells tar it is dealing with a file. To extract (x) files from an archive use tar xvf output.tar
free Displays the memory usage on a system
halt Shutdown linux
shutdown Shutdown linux
reboot Restarts the computer
kill Force a process to shutdown e.g. kill -9 PID where PID is the process ID which can be obtained from using the top command
top Shows the most important processes
uname Display information about the system e.g. uname -a
ps Display the current running processes e.g. ps ax –cols 132 will show all the processes formatted into the terminal
pstree Shows the parent-child relationships for the running processes
groups Prints the groups that include a specified user e.g. groups root
id Print the user and group ID for a given user e.g. id root
passwd Change the user password
su Switch user. If there is no argument then it switches to root
df Displays disk usage and space available e.g. df -h
du Disk usage statistics e.g. du -ah /etc for all files in human readable format kept in /etc
cal Show a calendar e.g. cal 2013
date Show the current time and date

 

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

A WordPress.com Website.

Up ↑

%d bloggers like this: