備份ubuntu的方法:
1.打開終端,輸入“$ sudo su”成為root用戶。
2.再進入文件系統的根目錄,命令:
# cd /
3.使用以下命令備份系統:
# tar cvpzf backup.tgz –exclude=/proc –exclude=/lost+found –exclude=/backup.tgz –exclude=/mnt –exclude=/sys ./*
程序例如:
tar cvpzf backup.tgz –exclude=/proc –exclude=/lost+found –exclude=/backup.tgz –exclude=/mnt –exclude=/sys ./*remark:tar: Cowardly refusing to create an empty archive
有時候在打包的時候,某個目錄或者是文件不需要打包備份,比如服務器上上傳的圖片很大就不需要打包備份。
打包如下命令:
tar -czvf /root/test.tar.gz --exclude=php ./*