1、查看端口被哪个进程占用
netstat -lnp | grep <端口号>
2、查看某个进程号详细信息
ps <进程号>
3、检查指定服务是否开启(例如 telnet)
chkconfig --list | grep telnet
chkconfig iptables on (打开某个服务器自启动)
4、杀掉进程: kill -9 <进程号>
5、启动关闭服务: service <服务名> start (stop、restart)
6、将系统时间与网络时间同步: # ntpdate time.windows.com
7、将硬件时间设置为当前系统时间: #hwclock –w
8、每天的8:30将进行一次时间同步:
vi /etc/crontab
加入: 30 8 * * * root /usr/sbin/ntpdate time.windows.com; /sbin/hwclock -w
重启cron服务: Service crond restart