passwd |
Change your or someone elses password |
chfn |
Change your finger (identity) information |
man |
The online manual |
ls |
List files in a directory |
cd |
To change your current working directory (.) |
cp |
Copy files or directories (-r) |
mv |
Rename or move files / directories |
rm |
Delete files and / or directories (-r) |
mkdir |
Make a new directory |
rmdir |
Remove an empty directory |
ssh |
Login to a remote system |
scp |
Copy files to/from a remote system |
rsync |
Network copy, copying only changed information |
sftp |
Secure shell like remote copy command |
jove/kate |
The best Unix editors |
vi |
The default unix that editor that you have to use sometimes, and then never again |
cat |
Concatenates files to the output |
more/less |
Paginates output |
grep |
Print lines in a file/input that contain a regular expression |
mount |
Map a device/file-system onto the file-system tree |
umount |
Unmap a file-system from the file-system tree |
df |
Display the amount of used space/inodes on a file-system |
chmod |
Change the permissions on a file |
chown |
Change the owner of a file |
chgrp |
Change the group owner of a file |
umask |
Set/show the default file creation mask |
getfacl |
Get/show the ACL on a file or files |
setfacl |
Set/clear the ACL on a file or files |
ln |
Create a symbolic (-s) or hard link to another file/directory (symbolic only) |
find |
Searches for files given certain criteria |
locate |
Searches for files given a location database |
ps |
Reports a snapshot of current processes |
pstree |
Tree view of the processes |
top / htop |
View processes continuously |
kill |
Send a signal to a process |
killall / pkill |
Send a signal to a process by name or other information |
limit / ulimit |
Set/show process resource limits |
nice / renice |
Set the scheduling priority of a process |
ionice |
Set the I/O scheduling priority |