Difference between revisions of "DigitalOcean"
Jump to navigation
Jump to search
Line 8: | Line 8: | ||
* https://www.digitalocean.com/community/questions/how-to-backup-droplet-whole-server-to-my-own-storage | * https://www.digitalocean.com/community/questions/how-to-backup-droplet-whole-server-to-my-own-storage | ||
** https://www.digitalocean.com/community/tutorials/how-to-use-sshfs-to-mount-remote-file-systems-over-ssh | ** https://www.digitalocean.com/community/tutorials/how-to-use-sshfs-to-mount-remote-file-systems-over-ssh | ||
+ | |||
+ | I got an error with the command they suggested, and modified it to this: | ||
+ | * <code>sudo sshfs -o allow_other root@xxx.xxx.xxx.xxx:/ /mnt/droplet</code> | ||
+ | ...but then this didn't work: | ||
+ | <source lang=bash>dd if=/mnt/droplet of=tootcat2.hypertwins.net-1523357095826-abandoned | ||
+ | dd: error reading '/mnt/droplet': Is a directory</source> | ||
+ | |||
*** https://opensource.com/article/18/7/how-use-dd-linux | *** https://opensource.com/article/18/7/how-use-dd-linux | ||
'''Restore''': Possibly the "custom images" feature is the way to go? | '''Restore''': Possibly the "custom images" feature is the way to go? | ||
* https://www.digitalocean.com/docs/images/custom-images/how-to/upload/ | * https://www.digitalocean.com/docs/images/custom-images/how-to/upload/ |
Revision as of 21:37, 5 September 2019
This page is a seed article. You can help HTYP water it: make a request to expand a given page and/or donate to help give us more writing-hours!
|
Links
Notes
Backup/Restore Images
Backup:
I got an error with the command they suggested, and modified it to this:
sudo sshfs -o allow_other root@xxx.xxx.xxx.xxx:/ /mnt/droplet
...but then this didn't work:
dd if=/mnt/droplet of=tootcat2.hypertwins.net-1523357095826-abandoned
dd: error reading '/mnt/droplet': Is a directory
Restore: Possibly the "custom images" feature is the way to go?