如何备份我的 Ubuntu 系统的所有数据?

如何备份我的 Ubuntu 系统的所有数据?

我目前正在使用remastersys来备份我的 Ubuntu 系统,但最后它告诉我以下错误:

The compressed filesystem is larger than genisoimage allows for a single file. You must try to reduce the amount of data you are backing up and try again.

但是备份系统后剩余2GB可用空间。我不知道该如何解决这个问题。(另外:我的笔记本电脑里还有另一个系统Windows 7)

Partition table:   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *          63    83891429    41945683+   7  HPFS/NTFS/exFAT
/dev/sda2        83891491   625141759   270625134+   f  W95 Ext'd (LBA)
/dev/sda5        83891493   264253184    90180846    7  HPFS/NTFS/exFAT
/dev/sda6       264253248   444614939    90180846    7  HPFS/NTFS/exFAT
/dev/sda7       444616704   446568447      975872   83  Linux
/dev/sda8       495398912   612583423    58592256   83  Linux
/dev/sda9       612585472   625141759     6278144   82  Linux swap / Solaris
/dev/sda10      446570496   495396863    24413184   83  Linux

答案1

您可以使用 dd 而不是使用 Remastersys,它是一个主要用于备份的命令行工具。要备份硬盘/分区,请使用以下命令。

           dd if=/dev/sda of=~/disk1.iso

如果空间不足,您可以使用 gzip 或 bzip2 压缩备份

相关内容