TL
Tool Lab
💰Donate
💰Donate

Linux Commandoreferentie

Snelreferentie voor essentiële Linux/Unix-commando's: bestandsbeheer, tekstverwerking, processen, netwerken en meer.

Bestanden & Mappen

ls -laList files with details and hidden files
cd <dir>Change directory
pwdPrint working directory
mkdir -p <dir>Create directory (and parents)
rm -rf <dir>Remove directory recursively (careful!)
cp -r <src> <dest>Copy files/directories recursively
mv <src> <dest>Move or rename file/directory
touch <file>Create empty file or update timestamp
find . -name "*.txt"Find files by name pattern
find . -type f -size +10MFind files larger than 10MB
du -sh *Show disk usage of each item
df -hShow disk space usage

Tekstverwerking

cat <file>Print file contents
less <file>Page through file (q to quit)
head -n 20 <file>Show first 20 lines
tail -n 20 <file>Show last 20 lines
tail -f <file>Follow file (live log viewing)
grep -r "pattern" .Search for pattern recursively
grep -i "pattern" <file>Case-insensitive search
grep -n "pattern" <file>Show line numbers in results
sed -i "s/old/new/g" <file>Replace text in file in-place
awk '{print $1}' <file>Print first column
sort <file>Sort lines alphabetically
sort -n -k2 <file>Sort numerically by 2nd column
uniq -cCount and deduplicate adjacent lines
wc -l <file>Count lines in file
cut -d"," -f1,3 <file>Cut specific columns (CSV)

Processen

ps auxList all running processes
topInteractive process viewer
htopEnhanced process viewer (if installed)
kill <pid>Terminate process by PID
kill -9 <pid>Force kill process
pkill <name>Kill processes by name
pgrep <name>Find PIDs by process name
nohup <cmd> &Run command immune to hangups, in background
jobsList background jobs
bg %1Resume job 1 in background
fg %1Bring job 1 to foreground

Rechten & Eigenaarschap

chmod 755 <file>Set rwxr-xr-x permissions
chmod +x <file>Make file executable
chown user:group <file>Change file owner and group
sudo <cmd>Run command as superuser
sudo -iSwitch to root shell
su - <user>Switch to another user
umask 022Set default permission mask

Netwerken

curl -I <url>Show response headers only
curl -L -o file <url>Download file following redirects
wget <url>Download file
ping <host>Test network connectivity
traceroute <host>Trace network path to host
nslookup <domain>DNS lookup
dig <domain>Detailed DNS lookup
netstat -tulnShow listening ports
ss -tulnShow listening ports (modern)
ssh user@hostConnect via SSH
scp <file> user@host:/pathCopy file via SSH
rsync -avz src/ user@host:dest/Sync files efficiently

Archieven & Compressie

tar -czf archive.tar.gz <dir>Create gzip compressed archive
tar -xzf archive.tar.gzExtract gzip archive
tar -cjf archive.tar.bz2 <dir>Create bzip2 compressed archive
zip -r archive.zip <dir>Create zip archive
unzip archive.zipExtract zip archive
gzip <file>Compress file with gzip
gunzip <file>.gzDecompress gzip file

Systeeminformatie

uname -aSystem and kernel information
cat /etc/os-releaseOS version information
free -hMemory usage
uptimeSystem uptime and load
whoWho is logged in
idCurrent user and group IDs
envShow environment variables
export VAR=valueSet environment variable
which <cmd>Find command path
historyCommand history
man <cmd>Manual page for a command

Over deze tool

De Linux Commandoreferentie biedt een zorgvuldig samengestelde collectie van essentiële Linux/Unix-commando's georganiseerd in zeven categorieën: bestands- en mapbeheer, tekstverwerking, procesbesturing, rechten en eigenaarschap, netwerken, archieven en compressie, en systeeminformatie.

Elk commando bevat een echt gebruiksvoorbeeld en een bondige beschrijving. Gebruik het zoekvak om snel te filteren op commandonaam of beschrijving.

Hoe te gebruiken

  1. Typ een commandonaam of trefwoord in het zoekvak.
  2. Scroll door de categorieën om commando's te bekijken.
  3. Bekijk het commando en de beschrijving en gebruik het in uw terminal.
  4. Vervang de tijdelijke aanduidingen tussen punthaken (<dir>, <file>, enz.) door werkelijke waarden.

Gebruiksscenario's

DevOps-ingenieurs die deployment-scripts schrijven, systeembeheerders die serverproblemen oplossen, ontwikkelaars die bestandsrechten of processen controleren, en beginners die de grondbeginselen van de Linux-opdrachtregel leren.

Veelgestelde vragen

  • Wat betekenen de punthaken (<>)? Punthaken zijn tijdelijke aanduidingen. Vervang <dir> door een echt mappad, <file> door een bestandsnaam, <pid> door een proces-ID, enzovoort.
  • Wat als een commando niet gevonden wordt? Sommige commando's zoals htop zijn niet standaard geïnstalleerd. Installeer ze met uw pakketbeheerder (bijv. sudo apt install htop) of controleer beschikbaarheid met het man-commando.
  • Waar moet ik op letten bij het gebruik van sudo? sudo voert commando's uit met supergebruikersbevoegdheden. Destructieve commando's zoals rm -rf gebruikt met sudo kunnen leiden tot onherstelbaar gegevensverlies. Controleer altijd voor uitvoering.