How to create a full backup of a remote ubuntu 16.04 server?Tips to backup ubuntu serverBackup data to remote dedicated serverHow to backup a full Centos Server?MSSQL Remote BackupIncremental backup up from a remote ftp box to a Windows serverHow to make a full backup of an ubuntu root server with tar?Full server backup solution (to remote windows share)backup plan on ubuntu server (filesystem/mysql)Backup files with backup-manager are emptyHow can I backup an SQL Server database using Windows Server Backup?
Are there any important biographies of nobodies?
Medieval flying castle propulsion
1980s live-action movie where individually-coloured nations on clouds fight
How Often Do Health Insurance Providers Drop Coverage?
How do governments keep track of their issued currency?
Is it a problem if <h4>, <h5> and <h6> are smaller than regular text?
Should I avoid hard-packed crusher dust trails with my hybrid?
Soft question: Examples where lack of mathematical rigour cause security breaches?
How does an ordinary object become radioactive?
What is the `some` keyword in SwiftUI?
Where Mongol herds graze
Why did the Herschel Space Telescope need helium coolant?
Motivation - or how can I get myself to do the work I know I need to?
Thread Pool C++ Implementation
How can "научись" mean "take it and keep trying"?
Should I give professor gift at the beginning of my PhD?
Is it possible to have a wealthy country without middle class?
Trapping Rain Water
How to hide an urban landmark?
Why would future John risk sending back a T-800 to save his younger self?
Arriving at the same result with the opposite hypotheses
What language is software running on the ISS written in?
Overlapping String-Blocks
Logarithm of exponential
How to create a full backup of a remote ubuntu 16.04 server?
Tips to backup ubuntu serverBackup data to remote dedicated serverHow to backup a full Centos Server?MSSQL Remote BackupIncremental backup up from a remote ftp box to a Windows serverHow to make a full backup of an ubuntu root server with tar?Full server backup solution (to remote windows share)backup plan on ubuntu server (filesystem/mysql)Backup files with backup-manager are emptyHow can I backup an SQL Server database using Windows Server Backup?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I just finished configuring a dedicated remote ubuntu server and want to create a backup with DD in order to be able to rebuild fast in case of hardware issues.
The system has 2 SSD drives with 500GB and a remote FTP server ready for backup. I created the following backups, but I am not sure if this was correctly done and would allow me to recover like intended. As it is a software raid, I assume it is enough to backup MBR and one SSD
Question: Is this backup procedure OK and sufficient to recover to the same server and what would be the savest way to rebuild from the backup files?
root@rescue ~ # lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sdb 8:16 0 465.8G 0 disk
|-sdb2 8:18 0 465.3G 0 part
| `-md1 9:1 0 465.1G 0 raid1
| |-vg0-swap 253:1 0 4G 0 lvm
| |-vg0-pro2 253:6 0 24G 0 lvm
| |-vg0-pro1 253:4 0 30G 0 lvm
| |-vg0-tmp 253:2 0 5G 0 lvm
| |-vg0-root 253:0 0 10G 0 lvm
| |-vg0-staging_pro1 253:7 0 30G 0 lvm
| |-vg0-restore 253:5 0 30G 0 lvm
| `-vg0-home 253:3 0 140G 0 lvm
`-sdb1 8:17 0 512M 0 part
`-md0 9:0 0 511.4M 0 raid1
loop0 7:0 0 2G 1 loop
sda 8:0 0 465.8G 0 disk
|-sda2 8:2 0 465.3G 0 part
| `-md1 9:1 0 465.1G 0 raid1
| |-vg0-swap 253:1 0 4G 0 lvm
| |-vg0-pro2 253:6 0 24G 0 lvm
| |-vg0-pro1 253:4 0 30G 0 lvm
| |-vg0-tmp 253:2 0 5G 0 lvm
| |-vg0-root 253:0 0 10G 0 lvm
| |-vg0-staging_pro1 253:7 0 30G 0 lvm
| |-vg0-restore 253:5 0 30G 0 lvm
| `-vg0-home 253:3 0 140G 0 lvm
`-sda1 8:1 0 512M 0 part
`-md0 9:0 0 511.4M 0 raid1
// MBR
dd if=/dev/sda bs=512 count=1 | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-MBR-$(date +%Y%m%d%H%M).gz; quit"
// SSDs
dd if=/dev/sda2 bs=2048 conv=noerror,sync | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-sda2-$(date +%Y%m%d%H%M).gz; quit"
// partition table
sfdisk /dev/sda –d | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-sda-part-table-$(date +%Y%m%d%H%M).gz; quit"
The backup files look OK:
ls -lh
-rw-r--r-- 1 486 Feb 10 12:51 backup-MBR-201702101351.gz
-rw-r--r-- 1 143 Feb 10 15:56 backup-sda-part-table-201702101656.gz
-rw-r--r-- 1 86.7M Feb 10 15:54 backup-sda1-201702101654.gz
-rw-r--r-- 1 182.3G Feb 10 15:42 backup-sda2-02-201702101440.gz
ubuntu backup dd
add a comment |
I just finished configuring a dedicated remote ubuntu server and want to create a backup with DD in order to be able to rebuild fast in case of hardware issues.
The system has 2 SSD drives with 500GB and a remote FTP server ready for backup. I created the following backups, but I am not sure if this was correctly done and would allow me to recover like intended. As it is a software raid, I assume it is enough to backup MBR and one SSD
Question: Is this backup procedure OK and sufficient to recover to the same server and what would be the savest way to rebuild from the backup files?
root@rescue ~ # lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sdb 8:16 0 465.8G 0 disk
|-sdb2 8:18 0 465.3G 0 part
| `-md1 9:1 0 465.1G 0 raid1
| |-vg0-swap 253:1 0 4G 0 lvm
| |-vg0-pro2 253:6 0 24G 0 lvm
| |-vg0-pro1 253:4 0 30G 0 lvm
| |-vg0-tmp 253:2 0 5G 0 lvm
| |-vg0-root 253:0 0 10G 0 lvm
| |-vg0-staging_pro1 253:7 0 30G 0 lvm
| |-vg0-restore 253:5 0 30G 0 lvm
| `-vg0-home 253:3 0 140G 0 lvm
`-sdb1 8:17 0 512M 0 part
`-md0 9:0 0 511.4M 0 raid1
loop0 7:0 0 2G 1 loop
sda 8:0 0 465.8G 0 disk
|-sda2 8:2 0 465.3G 0 part
| `-md1 9:1 0 465.1G 0 raid1
| |-vg0-swap 253:1 0 4G 0 lvm
| |-vg0-pro2 253:6 0 24G 0 lvm
| |-vg0-pro1 253:4 0 30G 0 lvm
| |-vg0-tmp 253:2 0 5G 0 lvm
| |-vg0-root 253:0 0 10G 0 lvm
| |-vg0-staging_pro1 253:7 0 30G 0 lvm
| |-vg0-restore 253:5 0 30G 0 lvm
| `-vg0-home 253:3 0 140G 0 lvm
`-sda1 8:1 0 512M 0 part
`-md0 9:0 0 511.4M 0 raid1
// MBR
dd if=/dev/sda bs=512 count=1 | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-MBR-$(date +%Y%m%d%H%M).gz; quit"
// SSDs
dd if=/dev/sda2 bs=2048 conv=noerror,sync | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-sda2-$(date +%Y%m%d%H%M).gz; quit"
// partition table
sfdisk /dev/sda –d | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-sda-part-table-$(date +%Y%m%d%H%M).gz; quit"
The backup files look OK:
ls -lh
-rw-r--r-- 1 486 Feb 10 12:51 backup-MBR-201702101351.gz
-rw-r--r-- 1 143 Feb 10 15:56 backup-sda-part-table-201702101656.gz
-rw-r--r-- 1 86.7M Feb 10 15:54 backup-sda1-201702101654.gz
-rw-r--r-- 1 182.3G Feb 10 15:42 backup-sda2-02-201702101440.gz
ubuntu backup dd
I would make the backup from themd1
device, and restore it to a similar RAID device on the restored version. This way you don't include the RAID metadata to the backup, which could cause issues on backup restore. I hope you will test your backup restore process before implementing the backup process.
– Tero Kilkanen
Feb 11 '17 at 1:26
add a comment |
I just finished configuring a dedicated remote ubuntu server and want to create a backup with DD in order to be able to rebuild fast in case of hardware issues.
The system has 2 SSD drives with 500GB and a remote FTP server ready for backup. I created the following backups, but I am not sure if this was correctly done and would allow me to recover like intended. As it is a software raid, I assume it is enough to backup MBR and one SSD
Question: Is this backup procedure OK and sufficient to recover to the same server and what would be the savest way to rebuild from the backup files?
root@rescue ~ # lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sdb 8:16 0 465.8G 0 disk
|-sdb2 8:18 0 465.3G 0 part
| `-md1 9:1 0 465.1G 0 raid1
| |-vg0-swap 253:1 0 4G 0 lvm
| |-vg0-pro2 253:6 0 24G 0 lvm
| |-vg0-pro1 253:4 0 30G 0 lvm
| |-vg0-tmp 253:2 0 5G 0 lvm
| |-vg0-root 253:0 0 10G 0 lvm
| |-vg0-staging_pro1 253:7 0 30G 0 lvm
| |-vg0-restore 253:5 0 30G 0 lvm
| `-vg0-home 253:3 0 140G 0 lvm
`-sdb1 8:17 0 512M 0 part
`-md0 9:0 0 511.4M 0 raid1
loop0 7:0 0 2G 1 loop
sda 8:0 0 465.8G 0 disk
|-sda2 8:2 0 465.3G 0 part
| `-md1 9:1 0 465.1G 0 raid1
| |-vg0-swap 253:1 0 4G 0 lvm
| |-vg0-pro2 253:6 0 24G 0 lvm
| |-vg0-pro1 253:4 0 30G 0 lvm
| |-vg0-tmp 253:2 0 5G 0 lvm
| |-vg0-root 253:0 0 10G 0 lvm
| |-vg0-staging_pro1 253:7 0 30G 0 lvm
| |-vg0-restore 253:5 0 30G 0 lvm
| `-vg0-home 253:3 0 140G 0 lvm
`-sda1 8:1 0 512M 0 part
`-md0 9:0 0 511.4M 0 raid1
// MBR
dd if=/dev/sda bs=512 count=1 | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-MBR-$(date +%Y%m%d%H%M).gz; quit"
// SSDs
dd if=/dev/sda2 bs=2048 conv=noerror,sync | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-sda2-$(date +%Y%m%d%H%M).gz; quit"
// partition table
sfdisk /dev/sda –d | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-sda-part-table-$(date +%Y%m%d%H%M).gz; quit"
The backup files look OK:
ls -lh
-rw-r--r-- 1 486 Feb 10 12:51 backup-MBR-201702101351.gz
-rw-r--r-- 1 143 Feb 10 15:56 backup-sda-part-table-201702101656.gz
-rw-r--r-- 1 86.7M Feb 10 15:54 backup-sda1-201702101654.gz
-rw-r--r-- 1 182.3G Feb 10 15:42 backup-sda2-02-201702101440.gz
ubuntu backup dd
I just finished configuring a dedicated remote ubuntu server and want to create a backup with DD in order to be able to rebuild fast in case of hardware issues.
The system has 2 SSD drives with 500GB and a remote FTP server ready for backup. I created the following backups, but I am not sure if this was correctly done and would allow me to recover like intended. As it is a software raid, I assume it is enough to backup MBR and one SSD
Question: Is this backup procedure OK and sufficient to recover to the same server and what would be the savest way to rebuild from the backup files?
root@rescue ~ # lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sdb 8:16 0 465.8G 0 disk
|-sdb2 8:18 0 465.3G 0 part
| `-md1 9:1 0 465.1G 0 raid1
| |-vg0-swap 253:1 0 4G 0 lvm
| |-vg0-pro2 253:6 0 24G 0 lvm
| |-vg0-pro1 253:4 0 30G 0 lvm
| |-vg0-tmp 253:2 0 5G 0 lvm
| |-vg0-root 253:0 0 10G 0 lvm
| |-vg0-staging_pro1 253:7 0 30G 0 lvm
| |-vg0-restore 253:5 0 30G 0 lvm
| `-vg0-home 253:3 0 140G 0 lvm
`-sdb1 8:17 0 512M 0 part
`-md0 9:0 0 511.4M 0 raid1
loop0 7:0 0 2G 1 loop
sda 8:0 0 465.8G 0 disk
|-sda2 8:2 0 465.3G 0 part
| `-md1 9:1 0 465.1G 0 raid1
| |-vg0-swap 253:1 0 4G 0 lvm
| |-vg0-pro2 253:6 0 24G 0 lvm
| |-vg0-pro1 253:4 0 30G 0 lvm
| |-vg0-tmp 253:2 0 5G 0 lvm
| |-vg0-root 253:0 0 10G 0 lvm
| |-vg0-staging_pro1 253:7 0 30G 0 lvm
| |-vg0-restore 253:5 0 30G 0 lvm
| `-vg0-home 253:3 0 140G 0 lvm
`-sda1 8:1 0 512M 0 part
`-md0 9:0 0 511.4M 0 raid1
// MBR
dd if=/dev/sda bs=512 count=1 | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-MBR-$(date +%Y%m%d%H%M).gz; quit"
// SSDs
dd if=/dev/sda2 bs=2048 conv=noerror,sync | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-sda2-$(date +%Y%m%d%H%M).gz; quit"
// partition table
sfdisk /dev/sda –d | gzip -fc | lftp userxx.your-backup.de -u uxx,pw -e "put /dev/stdin -o backup-sda-part-table-$(date +%Y%m%d%H%M).gz; quit"
The backup files look OK:
ls -lh
-rw-r--r-- 1 486 Feb 10 12:51 backup-MBR-201702101351.gz
-rw-r--r-- 1 143 Feb 10 15:56 backup-sda-part-table-201702101656.gz
-rw-r--r-- 1 86.7M Feb 10 15:54 backup-sda1-201702101654.gz
-rw-r--r-- 1 182.3G Feb 10 15:42 backup-sda2-02-201702101440.gz
ubuntu backup dd
ubuntu backup dd
asked Feb 10 '17 at 16:13
merlinmerlin
1,00962351
1,00962351
I would make the backup from themd1
device, and restore it to a similar RAID device on the restored version. This way you don't include the RAID metadata to the backup, which could cause issues on backup restore. I hope you will test your backup restore process before implementing the backup process.
– Tero Kilkanen
Feb 11 '17 at 1:26
add a comment |
I would make the backup from themd1
device, and restore it to a similar RAID device on the restored version. This way you don't include the RAID metadata to the backup, which could cause issues on backup restore. I hope you will test your backup restore process before implementing the backup process.
– Tero Kilkanen
Feb 11 '17 at 1:26
I would make the backup from the
md1
device, and restore it to a similar RAID device on the restored version. This way you don't include the RAID metadata to the backup, which could cause issues on backup restore. I hope you will test your backup restore process before implementing the backup process.– Tero Kilkanen
Feb 11 '17 at 1:26
I would make the backup from the
md1
device, and restore it to a similar RAID device on the restored version. This way you don't include the RAID metadata to the backup, which could cause issues on backup restore. I hope you will test your backup restore process before implementing the backup process.– Tero Kilkanen
Feb 11 '17 at 1:26
add a comment |
1 Answer
1
active
oldest
votes
You can't create dd
backups of a running system, as you most likely won't end up with a consistent image of your file system. To image something with dd
it must not be mounted or mounted read-only.
Use one of the myriad other tools to do a proper backup.
If you dd
from a rescue system instead of a live system, you could as well backup the whole of sda
(or sdb
) at once. Currently, you appear to be missing /dev/sda1
, which quite likely is raided to be mounted as /boot
, containing your kernel (which is essential, naturally). Also, if you have a MBR partition table, the partition table will be already included in the MBR (this is not true for GPT, of course).
I do the backup from a rescue system and have done a backup of sda1 and sda2. I believe I am using an MBR partition table, how could I find out if this is the case? Also is there an (dis)/advantage of doing a backup of sda instead of sda1,sda2? What about the BS, does the size matter concerning it is an SSD?
– merlin
Feb 10 '17 at 16:34
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f831854%2fhow-to-create-a-full-backup-of-a-remote-ubuntu-16-04-server%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can't create dd
backups of a running system, as you most likely won't end up with a consistent image of your file system. To image something with dd
it must not be mounted or mounted read-only.
Use one of the myriad other tools to do a proper backup.
If you dd
from a rescue system instead of a live system, you could as well backup the whole of sda
(or sdb
) at once. Currently, you appear to be missing /dev/sda1
, which quite likely is raided to be mounted as /boot
, containing your kernel (which is essential, naturally). Also, if you have a MBR partition table, the partition table will be already included in the MBR (this is not true for GPT, of course).
I do the backup from a rescue system and have done a backup of sda1 and sda2. I believe I am using an MBR partition table, how could I find out if this is the case? Also is there an (dis)/advantage of doing a backup of sda instead of sda1,sda2? What about the BS, does the size matter concerning it is an SSD?
– merlin
Feb 10 '17 at 16:34
add a comment |
You can't create dd
backups of a running system, as you most likely won't end up with a consistent image of your file system. To image something with dd
it must not be mounted or mounted read-only.
Use one of the myriad other tools to do a proper backup.
If you dd
from a rescue system instead of a live system, you could as well backup the whole of sda
(or sdb
) at once. Currently, you appear to be missing /dev/sda1
, which quite likely is raided to be mounted as /boot
, containing your kernel (which is essential, naturally). Also, if you have a MBR partition table, the partition table will be already included in the MBR (this is not true for GPT, of course).
I do the backup from a rescue system and have done a backup of sda1 and sda2. I believe I am using an MBR partition table, how could I find out if this is the case? Also is there an (dis)/advantage of doing a backup of sda instead of sda1,sda2? What about the BS, does the size matter concerning it is an SSD?
– merlin
Feb 10 '17 at 16:34
add a comment |
You can't create dd
backups of a running system, as you most likely won't end up with a consistent image of your file system. To image something with dd
it must not be mounted or mounted read-only.
Use one of the myriad other tools to do a proper backup.
If you dd
from a rescue system instead of a live system, you could as well backup the whole of sda
(or sdb
) at once. Currently, you appear to be missing /dev/sda1
, which quite likely is raided to be mounted as /boot
, containing your kernel (which is essential, naturally). Also, if you have a MBR partition table, the partition table will be already included in the MBR (this is not true for GPT, of course).
You can't create dd
backups of a running system, as you most likely won't end up with a consistent image of your file system. To image something with dd
it must not be mounted or mounted read-only.
Use one of the myriad other tools to do a proper backup.
If you dd
from a rescue system instead of a live system, you could as well backup the whole of sda
(or sdb
) at once. Currently, you appear to be missing /dev/sda1
, which quite likely is raided to be mounted as /boot
, containing your kernel (which is essential, naturally). Also, if you have a MBR partition table, the partition table will be already included in the MBR (this is not true for GPT, of course).
answered Feb 10 '17 at 16:24
Sven♦Sven
88.5k10150202
88.5k10150202
I do the backup from a rescue system and have done a backup of sda1 and sda2. I believe I am using an MBR partition table, how could I find out if this is the case? Also is there an (dis)/advantage of doing a backup of sda instead of sda1,sda2? What about the BS, does the size matter concerning it is an SSD?
– merlin
Feb 10 '17 at 16:34
add a comment |
I do the backup from a rescue system and have done a backup of sda1 and sda2. I believe I am using an MBR partition table, how could I find out if this is the case? Also is there an (dis)/advantage of doing a backup of sda instead of sda1,sda2? What about the BS, does the size matter concerning it is an SSD?
– merlin
Feb 10 '17 at 16:34
I do the backup from a rescue system and have done a backup of sda1 and sda2. I believe I am using an MBR partition table, how could I find out if this is the case? Also is there an (dis)/advantage of doing a backup of sda instead of sda1,sda2? What about the BS, does the size matter concerning it is an SSD?
– merlin
Feb 10 '17 at 16:34
I do the backup from a rescue system and have done a backup of sda1 and sda2. I believe I am using an MBR partition table, how could I find out if this is the case? Also is there an (dis)/advantage of doing a backup of sda instead of sda1,sda2? What about the BS, does the size matter concerning it is an SSD?
– merlin
Feb 10 '17 at 16:34
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f831854%2fhow-to-create-a-full-backup-of-a-remote-ubuntu-16-04-server%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I would make the backup from the
md1
device, and restore it to a similar RAID device on the restored version. This way you don't include the RAID metadata to the backup, which could cause issues on backup restore. I hope you will test your backup restore process before implementing the backup process.– Tero Kilkanen
Feb 11 '17 at 1:26