Linux 系统中有大量常用命令,以下分类整理了一些最核心和实用的命令,便于快速查阅:
ls
-l
(详细信息)、-a
(显示隐藏文件)、-h
(人类可读大小)cd
cd /home
、cd ..
(返回上级)pwd
mkdir
mkdir dirname
、mkdir -p dir1/dir2
(递归创建)rm
rm file
、rm -r dir
(递归删除目录)cp
cp file1 file2
、cp -r dir1 dir2
mv
mv oldname newname
、mv file /target/path
touch
touch filename
cat
cat file.txt
less
/ more
head
/ tail
tail -f logfile
(实时追踪日志)find
find /home -name "*.txt"
grep
grep "keyword" file
、grep -r "pattern" /dir
chmod
chmod 755 file
、chmod +x script.sh
chown
chown user:group file
sudo
sudo apt update
passwd
passwd username
useradd
/ userdel
useradd newuser
、userdel olduser
su
su - username
uname
uname -a
(全部信息)df
df -h
(人类可读格式)du
du -sh /dir
top
/ htop
free
free -h
ps
ps aux | grep nginx
kill
kill -9 PID
uptime
ping
ping google.com
ifconfig
/ ip
ip addr show
netstat
/ ss
netstat -tulnp
curl
/ wget
curl -O http://example.com/file
ssh
ssh user@host
scp
scp file user@host:/path
tar
tar -cvf archive.tar dir/
tar -xvf archive.tar
gzip
/ gunzip
.gz
文件gzip file
、gunzip file.gz
zip
/ unzip
.zip
文件unzip archive.zip
Debian/Ubuntu (APT)
sudo apt update
(更新软件列表)sudo apt install package
(安装包)sudo apt remove package
(卸载包)RHEL/CentOS (YUM/DNF)
sudo yum install package
sudo dnf remove package
Arch Linux (Pacman)
sudo pacman -S package
sudo pacman -R package
alias
alias ll='ls -alF'
history
crontab
crontab -e
(编辑任务)ln
ln -s /path/target linkname
(软链接)dd
dd if=/dev/zero of=file.bin bs=1M count=100
掌握这些命令能覆盖日常80%的Linux操作需求。建议结合 man
命令(如 man ls
)查阅手册深入学习。对于复杂任务,可通过管道(|
)和重定向(>
、>>
)组合命令。