<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: looking for command line for scheduling daily backup in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/looking-for-command-line-for-scheduling-daily-backup/m-p/3159660#M72931</link>
    <description>You do this with the at command or for regular jobs cron&lt;BR /&gt;&lt;BR /&gt;crontab -e&lt;BR /&gt;&lt;BR /&gt;edits the cron file.&lt;BR /&gt;&lt;BR /&gt;Here is an example&lt;BR /&gt;&lt;BR /&gt;30 4 * * * /backupscript 2&amp;gt;&amp;amp;1 | mail -s "backup job" youraddress@yourisp.com&lt;BR /&gt;&lt;BR /&gt;This job runs the backup script at 4:30 a.m. every day and mails the output to your email address&lt;BR /&gt;&lt;BR /&gt;crontab -l shows in non-edit mode the users current cron table(schedule).&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Thu, 08 Jan 2004 11:05:44 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2004-01-08T11:05:44Z</dc:date>
    <item>
      <title>looking for command line for scheduling daily backup</title>
      <link>https://community.hpe.com/t5/operating-system-linux/looking-for-command-line-for-scheduling-daily-backup/m-p/3159657#M72928</link>
      <description>hi,&lt;BR /&gt;can some body tell me the command for scheduling daily backup command on linux 5.2 server and linux 7.3 server.&lt;BR /&gt;&lt;BR /&gt;thz &lt;BR /&gt;turishi</description>
      <pubDate>Thu, 08 Jan 2004 10:39:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/looking-for-command-line-for-scheduling-daily-backup/m-p/3159657#M72928</guid>
      <dc:creator>Turishi Malhotra</dc:creator>
      <dc:date>2004-01-08T10:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: looking for command line for scheduling daily backup</title>
      <link>https://community.hpe.com/t5/operating-system-linux/looking-for-command-line-for-scheduling-daily-backup/m-p/3159658#M72929</link>
      <description>I guess the simplest form is to use "cron". cron is a scheduler that runs things at regular intervals.  It takes a file called a crontab file which contains the time and day and month that a program should run and contains the path  to the program to run.  You edit your crontab file with "crontab -e" and an example would be&lt;BR /&gt; &lt;BR /&gt;# Run daily backup job at 4:40 every day:&lt;BR /&gt;40 4 * * * tar cvf /dev/st0 /*&lt;BR /&gt; &lt;BR /&gt;In this example "tar" is used to backup to tape but you would replace this with your chosen method of backing up.&lt;BR /&gt; &lt;BR /&gt;Check out the man page for "cron" and "crontab"</description>
      <pubDate>Thu, 08 Jan 2004 11:02:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/looking-for-command-line-for-scheduling-daily-backup/m-p/3159658#M72929</guid>
      <dc:creator>Mark Grant</dc:creator>
      <dc:date>2004-01-08T11:02:53Z</dc:date>
    </item>
    <item>
      <title>Re: looking for command line for scheduling daily backup</title>
      <link>https://community.hpe.com/t5/operating-system-linux/looking-for-command-line-for-scheduling-daily-backup/m-p/3159659#M72930</link>
      <description>If your utilizing omniback, your cell manager's crontab may initiated the backup...&lt;BR /&gt;&lt;BR /&gt;setup an executable shell script containing the following omniback command:&lt;BR /&gt;&lt;BR /&gt;/opt/omni/bin/omnib -datalist DATAlistname&lt;BR /&gt;&lt;BR /&gt;(review omnib man for more info)&lt;BR /&gt;&lt;BR /&gt;if your utilizing tar, that would be setup on the corresponding linux server...&lt;BR /&gt;&lt;BR /&gt;you would need a backup device:&lt;BR /&gt;&lt;BR /&gt;        backup dev  filesystem&lt;BR /&gt;tar cvf /dev/rmt/0m /home/* &amp;gt; /logdirectory/weekly_home.log 2&amp;gt;&amp;amp;1&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;another option is dump, which I have not tried....checkup man pages.&lt;BR /&gt;&lt;BR /&gt;hope this helps and happy new-year,&lt;BR /&gt;manuel</description>
      <pubDate>Thu, 08 Jan 2004 11:03:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/looking-for-command-line-for-scheduling-daily-backup/m-p/3159659#M72930</guid>
      <dc:creator>Manuel Contreras</dc:creator>
      <dc:date>2004-01-08T11:03:53Z</dc:date>
    </item>
    <item>
      <title>Re: looking for command line for scheduling daily backup</title>
      <link>https://community.hpe.com/t5/operating-system-linux/looking-for-command-line-for-scheduling-daily-backup/m-p/3159660#M72931</link>
      <description>You do this with the at command or for regular jobs cron&lt;BR /&gt;&lt;BR /&gt;crontab -e&lt;BR /&gt;&lt;BR /&gt;edits the cron file.&lt;BR /&gt;&lt;BR /&gt;Here is an example&lt;BR /&gt;&lt;BR /&gt;30 4 * * * /backupscript 2&amp;gt;&amp;amp;1 | mail -s "backup job" youraddress@yourisp.com&lt;BR /&gt;&lt;BR /&gt;This job runs the backup script at 4:30 a.m. every day and mails the output to your email address&lt;BR /&gt;&lt;BR /&gt;crontab -l shows in non-edit mode the users current cron table(schedule).&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 08 Jan 2004 11:05:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/looking-for-command-line-for-scheduling-daily-backup/m-p/3159660#M72931</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-01-08T11:05:44Z</dc:date>
    </item>
  </channel>
</rss>

