发布时间:2013-06-08 22:41:42
1.首先保证redhat运行级别为:52.vi /etc/inittab 最后一行添加:id:5:respawn:/usr/sbin/gdm 3.service iptables stop如果防火墙打开了,使用以下命令打开177端口:iptables -A INPUT -p udp --dport 177 -j ACCEPTvi /etc/sysconfig/iptables-A INPUT -m state --state NEW -m tc.........【阅读全文】
发布时间:2013-06-08 22:28:05
#!/usr/bin/expect -fset password password#downloadspawn scp root@192.168.1.100:/opt/step3.sh /home/set timeout 30expect "root@192.168.1.100's password:"set timeout 30send "$password\r"set timeout 30send "exit\r"expect eof......【阅读全文】
发布时间:2013-06-08 22:25:00
#!/usr/bin/expect-fset password 123456#downloadspawn scp root@192.168.1.218:/root/a.wmv /home/hbhe/set timeout 300 expect "root@192.168.1.218'spassword:"set timeout 300 send "$password\r"set timeout 300 send "exit\r"expect eof #uploadspawn scp /home/hbhe/abc.sqlroot@.........【阅读全文】
发布时间:2013-06-08 22:19:31
一. Crontab 介绍 crontab命令的功能是在一定的时间间隔调度一些命令的执行。 1.1 /etc/crontab 文件 在/etc目录下有一个crontab文件,这里存放有系统运行的一些调度程序。每个.........【阅读全文】