LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   What do slackers put in cron.* (https://www.linuxquestions.org/questions/slackware-14/what-do-slackers-put-in-cron-%2A-4175441563/)

g4ry 12-15-2012 10:14 AM

What do slackers put in cron.*
 
I've just started looking into using cron, which I'm fairly new to linux. I've written a script to sync my time daily but was wondering what others use cron for?

Thanks

malekmustaq 12-15-2012 10:50 AM

Quote:

Originally Posted by g4ry (Post 4849871)
I've just started looking into using cron, which I'm fairly new to linux. I've written a script to sync my time daily but was wondering what others use cron for?

Thanks

Usually for system maintenance tasks.

tronayne 12-15-2012 11:23 AM

... and see man crontab for how to write an entry.

Note, you use crontab -e to edit a crontab file.

Hope this helps some.

jmccue 12-15-2012 12:06 PM

What I have in my personal crontab:

1. remove vim/emacs backup files older than 30 days, once per day
2. get weather data from noaa for conky, twice per day
3. download any Slackware patches that exists twice a month

John

Habitual 12-15-2012 12:55 PM

Quote:

...what others use cron for?
Avoiding Repetitive Tasks.

onebuck 12-15-2012 03:46 PM

Member Response
 
Hi,

Or to run tasks on timely basis. :)

w1k0 12-15-2012 04:02 PM

I use cron to run every six minutes the script that among the other things downloads new mail using POP3, checks whether new patches for Slackware appeared, and stores the ChangeLog.txt file locally.

ttk 12-15-2012 07:55 PM

I chmod 000 /etc/cron.daily/slocate to cut down on my disks' wear-and-tear, and run an analogous command by hand perhaps three times per year.

Like you, I add rsetdate to /etc/cron.daily. On my personal server in the colo I also added a script that downloads the Slackware changelog and emails any new entries to myself and some friends:
http://ciar.org/ttk/public/slacklog.pl

frankbell 12-15-2012 09:25 PM

I run my podcatcher (I'm currently using podget) to pick my podcasts at 04:00 every morning.

kooru 12-16-2012 03:09 AM

Backup, update my custom motd, mail notification in case of alarm, and other things..

g4ry 12-16-2012 05:45 AM

Thanks for your replies. @w1k0, I like the idea of checking for patches and maybe mailing them to root. Other ideas I had was to periodically run programs like aide and rkhunter, or would that be better done from a live distro?

Another thing I was thinking about was retrieving gmail, does anyone do this?

interndan 12-16-2012 08:53 AM

I have a script in cron.daily to sync my system clock with a time server.

onebuck 12-16-2012 08:57 AM

Member Response
 
Hi,

'Time' is one that I do on a regular 'cron' task. Be sure to use a 'pool' so the load is handled properly.

GazL 12-16-2012 10:47 AM

I don't make much use of cron as I'm more of a ad-hoc kind of guy. Maybe if I left my system up 24x7 then I'd do things differently, but my box sleeps when I sleep.
:)


Quote:

Originally Posted by ttk (Post 4850133)
I chmod 000 /etc/cron.daily/slocate to cut down on my disks' wear-and-tear, and run an analogous command by hand perhaps three times per year.

I think you're proably right to disable it. slocate/updatedb may make sense on a server with millions of files, but for a modern desktop/workstation that has more than enough ram to keep inodes/dirents in vfs_cache I'm not convinced a database based solution like slocate makes any sense..

I have this in my .bashrc, which I use instead and will pretty much do the same job as an "slocate -i" does without the need to run updatedb.
Code:

function qlocate()
{
    find "$HOME" /local -xdev -readable -ipath "*${1}*" 2>/dev/null
}


qweasd 12-16-2012 01:08 PM

Quote:

Originally Posted by g4ry (Post 4849871)
I've written a script to sync my time daily but was wondering what others use cron for?

I mirror the host with rsync and sync the system time with sntp, both daily.


All times are GMT -5. The time now is 11:37 PM.