📚 Ubuntu Linux Commands Reference
Complete guide to essential Linux commands - organized alphabetically
Most Linux commands on Ubuntu have detailed manual (man) pages available online through several repositories. For your convenience, each command card on this page includes a direct link to its official Ubuntu man page. You can also access these manuals directly from the command line by typing man <command> (for example, man ls). This will display the manual page for the command in your terminal, providing usage, options, and examples. Whether you prefer browsing online or using the terminal, these resources will help you master Linux commands efficiently.
A
B
C
cd
Change directory - navigate between folders.
cd /home/user/Documents
Navigation
D
E
exit
Exit the current shell or terminal session.
exit
Shell
export
Set environment variables.
export PATH=$PATH:/new/path
System
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
🔗
sed
Stream editor for filtering and transforming text.
sed 's/old/new/g' file.txt
Text Processing
T
U
V
W
X
🔗
xargs
Build and execute command lines from standard input.
find . -name "*.txt" | xargs rm
Utilities