Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login
    1. Home
    2. dbruce.ae05
    3. Best
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 12
    • Best 2
    • Controversial 0
    • Groups 0

    Best posts made by dbruce.ae05

    • Implement G17, G18, G19 for CNC

      Please implement G18 and G19. These are pretty important operations in CNC for curves not in the xy plane.

      Just bought a Duet3 and didn't find this out until after...disappointed :(.

      Firmwarewishlist

      posted in Firmware wishlist
      dbruce.ae05undefined
      dbruce.ae05
    • RE: SBC Raspberry Pi Backup Configs

      Thanks @Phaedrux! that's just what I needed. I created a cronjob to run the following script every hour while I'm trying to get things running.

      now=`date +'%F_%H.%M.%S'`
      host_address="username@host"
      filename="[backup file pathway]/$now/"
      
      #echo $now
      #echo $host_address
      #echo $filename
      
      ssh $host_address mkdir -p $filename
      
      rsync -av /opt/dsf/sd/sys $host_address:$filename
      rsync -av /opt/dsf/sd/macros $host_address:$filename
      

      The script above requires automatic ssh login, a good link to set that up is here: http://www.linuxproblem.org/art_9.html

      Cron:

      # m h  dom mon dow   command
      0 * * * * bash /home/pi/Documents/backup-duet3.sh
      
      posted in General Discussion
      dbruce.ae05undefined
      dbruce.ae05