1、查找命令路径
<1>which 命令
<2>find / -type f -name "命令"
<3>whereis -b 命令
<4>locate 命令
2、find命令详解
find 路径 -type f 查找路径下的所有文件
find 路径 -type f -name "文件名" 查找路径下的具体文件
3、重要命令
netstat -lntup 查看端口
ps -ef 查看进程
alias 查看定义别名
df -h 查看磁盘空间
top 监听系统CPU及其他资源
groupadd 用户组 新增用户组
useradd 用户名 新建用户名
passwd 用户名 修改用户密码
half 关机
restart 重启
vimdiff 比较文件
iptables -L -n 查看防火墙
/etc/init.d/iptables status 查看防火墙状态
/etc/init.d/iptables stop 关闭防火墙
ifconfig 查看ip
uname -a 查看操作系统所有信息
file 程序名 查看程序是位数
echo $LANG 查看编码
ulimit -u unlimited 修改系统进程不受限制
时间: 2024-11-03 22:46:16