标签:str group 重定向 文件名 lsof linux命令 mount chgrp 符号
Debian : dpkg管理.deb软件包 apt apt-get dpkg
red-hat: rpm管理rpm包:yum
mv source destination
mkdir
rmdir
cp -r # 递归的复制
rm -rf dirname
# 文件内容查找
grep
# 文件名定位
find
locate
whereis # 程序位置 man whatis
ls -l dirname
chown
chgrp
chmod
# 用户组:u文件属主 g文件属组 o其他人 a所有人
# 权限规则:r w x
chmod u+x days
chmod a-x days
chmod ug=rw o=r days
# 文件类型
普通文件 - 目录 d 字符设备文件 c 块设备文件 b 本地域套接口 S 有名管道 p 符号链接 l
ln -s days my_days
uname -r > ls_out
uname -r >> ls_out # 以追加方式
cat < days
# 管道:前一条命令的输出作为后一个命令的输入文件
ls | grep ay
# 命令组的连续执行 &
mount
df
fsck
mkfs
# 压缩
gzip
bzip
xz
# 打包
tar -xzvf -czvf
dd
useradd groupadd userdel -r john
/etc/passwd
ps aux | grep man # 列出所有进程查找特定进程
kill pid
top
lsof filename
ifconfig eth0 ip_address netmark num up
netstat -r # 列出路由信息
sudo route add default
标签:str group 重定向 文件名 lsof linux命令 mount chgrp 符号
原文地址:https://www.cnblogs.com/0xthonsun/p/9876109.html