1.关闭电源
# shutdown -hp now
2.查看网络流量
# netstat 1
说明:Traffic 流量 peak 峰值 average 平均值
3.磁盘空间使用情形 df 和 du
说明: 指令df用来查看整个档案系统的使用情形,如果您需要知道某个目录的使用情形用指令du。
# df -h
# du -h /etc
# du -sh /etc
-s 参数来省略指定目录下的子目录
-h 表示使用GB、MB等易读的格式
4.显示子目录
# ls -l | grep ^d
说明:统计当前目录下的子目录数?
# ls -l | grep ^d | wc -l
5.找文件
5.1 find
# find 仓库 -name filename
5.2 whereis
# whereis [ -bms ] program
说明:-b 搜寻二进制程序 -m 搜寻使用者手册 -s 搜寻原始程序的数据夹
5.3 which program
# which ls
说明:从使用者的执行路径,寻找执行文件。
6.列出所经过的route
# traceroute ip
7.显示正在运行的进程
#
ps -aux
说明:如要找名为 httpd 的进程,操作如下:
#
ps -auwx | grep httpd
8.SMB 查看资源使用状况
# smbstatus
9.让OpenBSD同步网络时间
# rdate -n time.cn99.com
说明:-n Use SNTP (RFC 1361) instead of the RFC 868 time protocol.
10:禁止一般用户查看系统日志
# chmod g-w,o-r /var/log/*
11.路由
查看路由
# route show
加静态路由
# route add -net 204.12.16.0 -netmask 255.255.255.0 172.20.8.252
说明:把204.12.16.0/24的网段都路由到172.20.8.252上面。
阅读(1035) | 评论(0) | 转发(0) |