Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 30613
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T13:28:31+00:00 2026-05-10T13:28:31+00:00

I want to setup a cron job to rsync a remote system to a

  • 0

I want to setup a cron job to rsync a remote system to a backup partition, something like:

bash -c 'rsync -avz --delete --exclude=proc --exclude=sys root@remote1:/ /mnt/remote1/' 

I would like to be able to ‘set it and forget it’ but what if /mnt/remote1 becomes unmounted? (After a reboot or something) I’d like to error out if /mnt/remote1 isn’t mounted, rather than filling up the local filesystem.

Edit:
Here is what I came up with for a script, cleanup improvements appreciated (especially for the empty then … else, I couldn’t leave them empty or bash errors)

#!/bin/bash  DATA=data ERROR='0'  if cut -d' ' -f2 /proc/mounts | grep -q '^/mnt/$1\$'; then     ERROR=0 else     if mount /dev/vg/$1 /mnt/$1; then         ERROR=0     else         ERROR=$?         echo 'Can't backup $1, /mnt/$1 could not be mounted: $ERROR'     fi fi  if [ '$ERROR' = '0' ]; then     if cut -d' ' -f2 /proc/mounts | grep -q '^/mnt/$1/$DATA\$'; then         ERROR=0     else         if mount /dev/vg/$1$DATA /mnt/$1/data; then             ERROR=0         else             ERROR=$?             echo 'Can't backup $1, /mnt/$1/data could not be mounted.'         fi     fi fi  if [ '$ERROR' = '0' ]; then     rsync -aqz --delete --numeric-ids --exclude=proc --exclude=sys \         root@$1.domain:/ /mnt/$1/     RETVAL=$?     echo 'Backup of $1 completed, return value of rsync: $RETVAL' fi 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T13:28:32+00:00Added an answer on May 10, 2026 at 1:28 pm
    if cut -d' ' -f2 /proc/mounts | grep '^/mnt/remote1$' >/dev/null; then     rsync -avz ... fi 

    Get the list of mounted partitions from /proc/mounts, only match /mnt/remote1 (and if it is mounted, send grep’s output to /dev/null), then run your rsync job.

    Recent greps have a -q option that you can use instead of sending the output to /dev/null.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 77k
  • Answers 77k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer Looking at your question, it seems you wish to use… May 11, 2026 at 3:23 pm
  • added an answer This link may help. I can't speak from experience with… May 11, 2026 at 3:23 pm
  • added an answer Use re-search-forward and match-string: (when (re-search-forward '\\(\\S-\\)' nil t) (match-string… May 11, 2026 at 3:22 pm

Related Questions

I've been working on a web app using Django, and I'm curious if there
I'm working with a small (4 person) development team on a C# project. I've
I have a cron job that runs every hour. It accesses an xml feed.
After you start tracking the source of a bunch of open source software, how

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.