请问SuSe 10的crontab是读写的哪个文件啊?像redhat 的是在/var/spool/cront/下面,suse 怎么没有????在线等待!!!
任务调度的crond常驻命令 crond 是linux用来定期执行程序的命令。当安装完成操作系统之后,默认便会启动此任务调度命令。crond命令每分锺会定期检查是否有要执行的工作,如果有要执行的工作便会自动执行该工作。而linux任务调度的工作主要分为以下两类: 1、系统执行的工作:系统周期性所要执行的工作,如备份系统数据、清理缓存 2、个人执行的工作:某个用户定期要做的工作,例如每隔10分钟检查邮件服务器是否有新信,这些工作可...
#!/bin/sh # # Exploit for SuSE linux 9.{1,2,3}/10.0, Desktop 1.0, Unitedlinux 1.0 # and SuSE linux Enterprise Server {8,9} 'chfn' local root bug. # # by Hunger # # Advistory: # http://lists.suse.com/archive/suse-security-announce/2005-Nov/0002.html # # hunger@suse:~> id # uid=1000(hunger) gid=1000(hunger) groups=1000(hunger) # hunger@suse:~> ./susechfn.sh # Type your current password to get roo...
where i get SuSe linux server version?now is what version? and where i can get the user menu?? thank you
where i get SuSe linux server version?now is what version? and where i can get the user menu?? thank you
crontab -e 如何使用? 本人的/var/log/下面保存了很多 messages-20081219.bz2 net-snmpd.log-20081228.bz2 xinetd.log-20081220.bz2 zmd-backend.log-20090411.bz2 我只想保存最近1个月的,如何在crontab -e中设置任务?
关于crontab的一个问题请教大家。 我写了一个svn备份的程序。然后crontab -e让他每天可以执行 (以root的身份)。但是我发现实际上do nothing, 但是试了半天也没有查出原因。请教大家了。 crontab 中的命令给出的是: 0 5 * * * /root/bin/backup_svn.pl >> /dev/dull 2>&1 backup_svn.pl 已经设置了可执行权限。 谢谢!!!
基本格式 : * * * * * command 分 时 日 月 周 命令 第1列表示分钟1~59 每分钟用*或者 */1表示 第2列表示小时1~23(0表示0点) 第3列表示日期1~31 第4列表示月份1~12 第5列标识号星期0~6(0表示星期天) 第6列要运行的命令 crontab文件的一些例子: 30 21 * * * /usr/local/etc/rc.d/lighttpd restart 上面的例子表示每晚的21:30重启apache。 45 4 1,10,22 * * /usr/local/etc/rc.d/lighttpd restart 上...
linux命令详解–crontab # +—————- minute (0 – 59) # | +————- hour (0 – 23) # | | +———- day of month (1 – 31) # | | | +——- month (1 – 12) # | | | | +—- day of week (0 – 7) (Sunday=0 or 7) # | | | | | # * * * * * command to be executed 推荐记忆为 分 时 日 月 周 服务的启动和停止 cron服务是linux的内置服务,但它不会开机自动启动。可以用以下命令启动和停止服务: /sbi...
[code][root@debian ~]#cat /etc/crontab SHELL=/bin/sh PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin 17 * * * * root cd / && run-parts --report /etc/cron.hourly 25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily ) #每小时的第17分钟执行 /etc/cron.hourly 目录下的所有可执行文件。 47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts ...