<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <p>I am using the 'backup to a central backup server with 7 day
      incremental' example to archive three separate computers to
      identically configured (apart from name) shares on a Western
      Digital 'MyBookLive' NAS which has rsync enabled. The backup from
      two Raspberry Pi Computers operates without a problem but the
      backup from a Fedora 32 computer fails with an 'unknown module
      Linux1' error message. The only difference between the code in the
      .sh module for all three computers is the name of the share(Linux1
      for the Fedora Computer) and the home directory.<br>
    </p>
    <p>#~ #!/bin/sh<br>
      <br>
      # This script does personal backups to a rsync backup server. You
      will end up<br>
      # with a 7 day rotating incremental backup. The incrementals will
      go<br>
      # into subdirectories named after the day of the week, and the
      current<br>
      # full backup goes into a directory called "current"<br>
      # <a class="moz-txt-link-abbreviated" href="mailto:tridge@linuxcare.com">tridge@linuxcare.com</a><br>
      <br>
      HOME=/home/XXX<br>
      <br>
      # directory to backup<br>
      BDIR=/<br>
      <br>
      # excludes file - this contains a wildcard pattern per line of
      files to exclude<br>
      EXCLUDES=$HOME/Documents/exclude.txt<br>
      <br>
      # the name of the backup machine<br>
      <a class="moz-txt-link-abbreviated" href="mailto:BSERVER=root@nnn.nnn.nnn.nnn">BSERVER=root@nnn.nnn.nnn.nnn</a><br>
      <br>
      export RSYNC_PASSWORD=xxxxxxxx<br>
      <br>
########################################################################<br>
      <br>
      BACKUPDIR=`date +%A`<br>
      <br>
      OPTS="--force --ignore-errors --delete-excluded
      --exclude-from=/home/joe/Documents/exclude.txt <br>
            --delete --backup --backup-dir=/$BACKUPDIR -a"<br>
            <br>
      export PATH=$PATH:/bin:/usr/bin:/usr/local/bin<br>
      <br>
      # the following line clears the last weeks incremental directory<br>
      [ -d $HOME/emptydir ] || mkdir $HOME/emptydir<br>
      rsync --delete -a $HOME/emptydir/ $BSERVER::Linux1/$BACKUPDIR/<br>
      rmdir $HOME/emptydir<br>
      <br>
      # now the actual transfer<br>
      rsync $OPTS $BDIR $BSERVER::Linux1/current</p>
    <p><br>
    </p>
    <p>Can anyone explain why this is happening please?</p>
    <p>Joe Curtis<br>
    </p>
    <p><br>
    </p>
    <br class="Apple-interchange-newline">
    <div class="moz-signature">-- <br>
      <img src="cid:part1.90E3C34A.7B4E7EA9@craythorne.uk" border="0"></div>
  </body>
</html>