Cron entries
Moderators: snarkout, Patrick, dann
Cron entries
I need mySamba server to backup a small amount of data to a Zip disk on a regular basis. How can I configure Cron to do this for me?
"Eagles may soar, but weasles don't get sucked into jet engines."
I need to use absolute path's for commands right? All the documentation I've been reading has made it look like this is the case.
On another note, how can I configure a parallel external Zip drive? I dunno how to tell which /dev/ file it's used by.
On another note, how can I configure a parallel external Zip drive? I dunno how to tell which /dev/ file it's used by.
"Eagles may soar, but weasles don't get sucked into jet engines."
The parallel zip drive will be detected as a scsi device. When the module is loaded in you can probably determine what the device is by running dmesg. If the device is attached at boot, chances are the module is loaded and it is ready to go. Again, dmesg |less will allow you to scroll through the boot messages and find what device your zip drive has been assigned too.
For instance, if it is the only scsi device is may be /dev/sda0.
As for absolute paths in your script for cron or in cron in general, you cannot go wrong using absolute paths.
For instance, if it is the only scsi device is may be /dev/sda0.
As for absolute paths in your script for cron or in cron in general, you cannot go wrong using absolute paths.
The module I use is ppa. It is under the scsi drivers. There is a <a href="http://www.tldp.org/HOWTO/ZIP-Drive.html">zip drive howto</a> over at the linux doc project: