You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.9 KiB

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

dump
===
用于备份ext2或者ext3文件系统
## 补充说明
**dump命令** 用于备份ext2或者ext3文件系统。可将目录或整个文件系统备份至指定的设备或备份成一个大文件。
### 语法
```
dump(选项)(参数)
```
### 选项
```
-0123456789备份的层级
-b<区块大小>指定区块的大小单位为KB
-B<区块数目>:指定备份卷册的区块数目;
-c修改备份磁带预设的密度与容量
-d<密度>设置磁带的密度。单位为BPI
-f<设备名称>:指定备份设备;
-h<层级>当备份层级等于或大于指定的层级时将不备份用户标示为“nodump”的文件
-n当备份工作需要管理员介入时向所有“operator”群组中的使用者发出通知
-s<磁带长度>:备份磁带的长度,单位为英尺;
-T<日期>:指定备份的时间与日期;
-u备份完毕后在/etc/dumpdates中记录备份的文件系统、层级、日期与时间等
-w与-W类似但仅显示需要备份的文件
-W显示需要备份的文件及其最后一次备份的层级、时间与日期。
```
### 参数
备份源:指定要备份的文件、目录或者文件系统。
### 实例
将`/home`目录所有内容备份到`/tmp/homeback.bak`文件中,备份层级为`0`并在`/etc/dumpdates`中记录相关信息:
```
dump -0u -f /tmp/homeback.bak /home
```
将`/home`目录所有内容备份到`/tmp/homeback.bak`文件中,备份层级为`1`(只备份上次使用层次`0`备份后发生过改变的数据)并在`/etc/dumpdates`中记录相关信息:
```
dump -1u -f /tmp/homeback.bak /home
```
通过dump命令的备份层级可实现完整+增量备份、完整+差异备份在配合crontab可以实现无人值守备份。
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->