linux小技巧
1、监控网络流量:
watch -n 1 "/sbin/ifconfig eth0 "
2、与域控时钟服务器同步时间:
//进入vi编辑定时同步比时间任务
crontab -e
//保存以下内容
0 9 * * * /usr/sbin/ntpdate 10.10.10.10 && /usr/sbin/hwclock --systohc
30 12 * * * /usr/sbin/ntpdate 10.10.10.10 && /usr/sbin/hwclock --systohc
//退出vi,并执行以下命令
/usr/sbin/ntpdate 10.101.28.230 && /usr/sbin/hwclock --systohc
//检查
date