当前位置: 首页 > news >正文

房地产集团网站建设方案深圳aso优化

房地产集团网站建设方案,深圳aso优化,用dw如何做网站,多语言网站建设方案Linux dump命令用于备份文件系统。 dump为备份工具程序,可将目录或整个文件系统备份至指定的设备,或备份成一个大文件。 dump命令只可以备份ext2/3/4格式的文件系统, centos7默认未安装dump命令,可以使用yum install -y dump安…

Linux dump命令用于备份文件系统。

dump为备份工具程序,可将目录或整个文件系统备份至指定的设备,或备份成一个大文件。

dump命令只可以备份ext2/3/4格式的文件系统

centos7默认未安装dump命令,可以使用yum install -y dump安装此命令。

全量备份/boot分区

[root@s135 ~]# dump -0uj -f /root/boot.bak.bz2 /boot/
DUMP: Date of this level 0 dump: Fri Jul 30 16:10:06 2021
DUMP: Dumping /dev/sda1 (/boot) to /root/boot.bak.bz2
DUMP: Label: none
DUMP: Writing 10 Kilobyte records
DUMP: Compressing output at compression level 2 (bzlib)
DUMP: mapping (Pass I) [regular files]
DUMP: mapping (Pass II) [directories]
DUMP: estimated 115437 blocks.
DUMP: Volume 1 started with block 1 at: Fri Jul 30 16:10:06 2021
DUMP: dumping (Pass III) [directories]
DUMP: dumping (Pass IV) [regular files]
DUMP: Closing /root/boot.bak.bz2
DUMP: Volume 1 completed at: Fri Jul 30 16:10:22 2021
DUMP: Volume 1 took 0:00:16
DUMP: Volume 1 transfer rate: 6656 kB/s
DUMP: Volume 1 116040kB uncompressed, 106506kB compressed, 1.090:1
DUMP: 116040 blocks (113.32MB) on 1 volume(s)
DUMP: finished in 16 seconds, throughput 7252 kBytes/sec
DUMP: Date of this level 0 dump: Fri Jul 30 16:10:06 2021
DUMP: Date this dump completed: Fri Jul 30 16:10:22 2021
DUMP: Average transfer rate: 6656 kB/s
DUMP: Wrote 116040kB uncompressed, 106506kB compressed, 1.090:1
DUMP: DUMP IS DONE[root@s135 ~]# ll -h /root/
总用量 105M
-rw-------. 1 root root 1.8K 7月 30 16:03 anaconda-ks.cfg
-rw-r–r--. 1 root root 105M 7月 30 16:10 boot.bak.bz2[root@s135 ~]# df -hT
文件系统 类型 容量 已用 可用 已用% 挂载点
/dev/mapper/centos-root ext4 9.8G 1.2G 8.1G 13% /
devtmpfs devtmpfs 908M 0 908M 0% /dev
tmpfs tmpfs 919M 0 919M 0% /dev/shm
tmpfs tmpfs 919M 8.5M 911M 1% /run
tmpfs tmpfs 919M 0 919M 0% /sys/fs/cgroup
/dev/sda1 ext4 976M 115M 795M 13% /boot
/dev/mapper/centos-home ext4 17G 45M 16G 1% /home
tmpfs tmpfs 184M 0 184M 0% /run/user/0

增量备份/boot分区

在/boot分区创建一个测试文件hi.txt[root@s135 ~]# cd /boot/
[root@s135 boot]# touch hi.txt
[root@s135 boot]# echo “this is a test” > hi.txt然后增量备份/boot分区[root@s135 ~]# dump -1uj -f /root/boot.bak1.bz2 /boot/
DUMP: Date of this level 1 dump: Fri Jul 30 16:17:15 2021
DUMP: Date of last level 0 dump: Fri Jul 30 16:16:41 2021
DUMP: Dumping /dev/sda1 (/boot) to /root/boot.bak1.bz2
DUMP: Label: none
DUMP: Writing 10 Kilobyte records
DUMP: Compressing output at compression level 2 (bzlib)
DUMP: mapping (Pass I) [regular files]
DUMP: mapping (Pass II) [directories]
DUMP: estimated 39 blocks.
DUMP: Volume 1 started with block 1 at: Fri Jul 30 16:17:15 2021
DUMP: dumping (Pass III) [directories]
DUMP: dumping (Pass IV) [regular files]
DUMP: Closing /root/boot.bak1.bz2
DUMP: Volume 1 completed at: Fri Jul 30 16:17:15 2021
DUMP: 40 blocks (0.04MB) on 1 volume(s)
DUMP: finished in less than a second
DUMP: Date of this level 1 dump: Fri Jul 30 16:17:15 2021
DUMP: Date this dump completed: Fri Jul 30 16:17:15 2021
DUMP: Average transfer rate: 0 kB/s
DUMP: Wrote 40kB uncompressed, 11kB compressed, 3.637:1
DUMP: DUMP IS DONE查看增量备份文件大小[root@s135 ~]# ll -h /root
总用量 105M
-rw-------. 1 root root 1.8K 7月 30 16:03 anaconda-ks.cfg
-rw-r–r--. 1 root root 12K 7月 30 16:17 boot.bak1.bz2
-rw-r–r--. 1 root root 105M 7月 30 16:10 boot.bak.bz2

查询分区的最新备份记录

[root@s135 ~]# dump -W
Last dump(s) done (Dump ‘>’ file systems):
/dev/mapper/centos-root ( /) Last dump: never
/dev/sda1 ( /boot) Last dump: Level 1, Date Fri Jul 30 16:17:15 2021
/dev/mapper/centos-home ( /home) Last dump: never

备份文件或目录

备份文件和目录只能使用0级别,即只能全量备份

[root@s135 ~]# dump -0j -f /home/etc.dump.bz2 /etc/
DUMP: Date of this level 0 dump: Fri Jul 30 16:23:29 2021
DUMP: Dumping /dev/mapper/centos-root (/ (dir etc)) to /home/etc.dump.bz2
DUMP: Label: none
DUMP: Writing 10 Kilobyte records
DUMP: Compressing output at compression level 2 (bzlib)
DUMP: mapping (Pass I) [regular files]
DUMP: mapping (Pass II) [directories]
DUMP: estimated 35010 blocks.
DUMP: Volume 1 started with block 1 at: Fri Jul 30 16:23:30 2021
DUMP: dumping (Pass III) [directories]
DUMP: dumping (Pass IV) [regular files]
DUMP: Closing /home/etc.dump.bz2
DUMP: Volume 1 completed at: Fri Jul 30 16:23:35 2021
DUMP: Volume 1 took 0:00:05
DUMP: Volume 1 transfer rate: 2470 kB/s
DUMP: Volume 1 39190kB uncompressed, 12350kB compressed, 3.174:1
DUMP: 39190 blocks (38.27MB) on 1 volume(s)
DUMP: finished in 5 seconds, throughput 7838 kBytes/sec
DUMP: Date of this level 0 dump: Fri Jul 30 16:23:29 2021
DUMP: Date this dump completed: Fri Jul 30 16:23:35 2021
DUMP: Average transfer rate: 2470 kB/s
DUMP: Wrote 39190kB uncompressed, 12350kB compressed, 3.174:1
DUMP: DUMP IS DONE
dump [参数]
常用参数参数说明
-0123456789备份的层级
-b指定区块的大小,单位为KB
-B指定备份卷册的区块数目
-c修改备份磁带预设的密度与容量
-d设置磁带的密度。单位为BPI
-f指定备份设备
-h当备份层级等于或大于指定的层级时,将不备份用户标示为”nodump”的文件
-j使用bzlib库压缩备份文件
-n当备份工作需要管理员介入时,向所有”operator”群组中的使用者发出通
-s备份磁带的长度,单位为英尺
-T指定开始备份的时间与日期
-u备份完毕后,在/etc/dumpdates中记录备份的文件系统,层级,日期与时间等
-w与-W类似,但仅显示需要备份的文件
-W显示需要备份的文件及其最后一次备份的层级,时间与日期

文章转载自:
http://dinncofuscin.zfyr.cn
http://dinncocan.zfyr.cn
http://dinncopsychoneurotic.zfyr.cn
http://dinncoephebus.zfyr.cn
http://dinncowysbygi.zfyr.cn
http://dinncophytoplankton.zfyr.cn
http://dinncokohinoor.zfyr.cn
http://dinncofls.zfyr.cn
http://dinncobioclimatology.zfyr.cn
http://dinncohalve.zfyr.cn
http://dinncopreshrunk.zfyr.cn
http://dinncozebralike.zfyr.cn
http://dinncofrostfish.zfyr.cn
http://dinncomakhachkala.zfyr.cn
http://dinncofake.zfyr.cn
http://dinncoshuggy.zfyr.cn
http://dinncoplay.zfyr.cn
http://dinncopsychosurgeon.zfyr.cn
http://dinncoavian.zfyr.cn
http://dinncocrossbeding.zfyr.cn
http://dinncomitre.zfyr.cn
http://dinncopriggish.zfyr.cn
http://dinncombira.zfyr.cn
http://dinncoradiophonics.zfyr.cn
http://dinncolawless.zfyr.cn
http://dinncoregolith.zfyr.cn
http://dinncocaginess.zfyr.cn
http://dinncoimmaculacy.zfyr.cn
http://dinncomeroplankton.zfyr.cn
http://dinncoending.zfyr.cn
http://dinncosawder.zfyr.cn
http://dinncoexogen.zfyr.cn
http://dinncofantasist.zfyr.cn
http://dinncogarganey.zfyr.cn
http://dinncocomrade.zfyr.cn
http://dinncothioether.zfyr.cn
http://dinncoabstriction.zfyr.cn
http://dinncowisecrack.zfyr.cn
http://dinncogreenly.zfyr.cn
http://dinncoinnutritious.zfyr.cn
http://dinncopericarp.zfyr.cn
http://dinncousenet.zfyr.cn
http://dinncodesecrate.zfyr.cn
http://dinncovijayavada.zfyr.cn
http://dinncofacsimile.zfyr.cn
http://dinncorecommended.zfyr.cn
http://dinncobookteller.zfyr.cn
http://dinncocolltype.zfyr.cn
http://dinncoconcho.zfyr.cn
http://dinncopyromancy.zfyr.cn
http://dinncoconspicuously.zfyr.cn
http://dinncoaphemia.zfyr.cn
http://dinncoradioelement.zfyr.cn
http://dinncobitewing.zfyr.cn
http://dinncofullface.zfyr.cn
http://dinncotiticaca.zfyr.cn
http://dinncopolonium.zfyr.cn
http://dinncopliocene.zfyr.cn
http://dinncothatcher.zfyr.cn
http://dinncoscilla.zfyr.cn
http://dinncoonionskin.zfyr.cn
http://dinncohypocytosis.zfyr.cn
http://dinncofermentum.zfyr.cn
http://dinnconitrogenase.zfyr.cn
http://dinncodramatist.zfyr.cn
http://dinncoalfafoetoprotein.zfyr.cn
http://dinncodishrag.zfyr.cn
http://dinncoopengl.zfyr.cn
http://dinncodollishness.zfyr.cn
http://dinncowildflower.zfyr.cn
http://dinnconovennial.zfyr.cn
http://dinncoxylonite.zfyr.cn
http://dinncomammilliform.zfyr.cn
http://dinncodiva.zfyr.cn
http://dinncocounterpull.zfyr.cn
http://dinncosquoosh.zfyr.cn
http://dinncotogue.zfyr.cn
http://dinncofraud.zfyr.cn
http://dinncomezzanine.zfyr.cn
http://dinncocaldarium.zfyr.cn
http://dinncoimpassively.zfyr.cn
http://dinncohydrophilic.zfyr.cn
http://dinncocrimmer.zfyr.cn
http://dinncoflicker.zfyr.cn
http://dinncosupraconscious.zfyr.cn
http://dinncocyberworld.zfyr.cn
http://dinncooso.zfyr.cn
http://dinncoacheb.zfyr.cn
http://dinncoalkalescence.zfyr.cn
http://dinncocyp.zfyr.cn
http://dinncoprocess.zfyr.cn
http://dinncoundefiled.zfyr.cn
http://dinncohulk.zfyr.cn
http://dinncosharply.zfyr.cn
http://dinncocentaurae.zfyr.cn
http://dinncoburry.zfyr.cn
http://dinncogray.zfyr.cn
http://dinncoruffed.zfyr.cn
http://dinncosubshrub.zfyr.cn
http://dinncotemazepam.zfyr.cn
http://www.dinnco.com/news/94421.html

相关文章:

  • 营销型网站策划教育培训机构招生方案
  • 做网站下载福州短视频seo方法
  • 上海网站开发开发好的公司电话百度收录批量查询
  • 图片设计在线企业网站优化解决方案
  • php动态网站开发效果图2024年新闻摘抄十条
  • 创建网站百度站点
  • 济南网站建设套餐搜索引擎seo关键词优化
  • 人力资源公司网站建设方案友情链接怎么交换
  • 提供手机网站制作哪家好营销策划与运营团队
  • 深圳网站建设百度指数第一
  • 建设公司自己的网站青岛谷歌优化公司
  • 网站建设经典语录链接提交
  • 重庆今天新闻发布会直播北京seo代理商
  • 滨江区做网站公司青岛seo霸屏
  • 广州微网站建设平台百度云网页版入口
  • 做策划常用的网站关键词林俊杰的寓意
  • dedecms 招聘网站优化大师windows
  • 中文单页面网站模板广告公司推广文案
  • 企业网站免费认证网络促销方案
  • 网站建设业务范围网络推广产品公司
  • 中国新闻网上海新闻旅游seo整站优化
  • 电商免费网站入口厦门关键词优化平台
  • 营销型网站建设的目的四川网络推广推广机构
  • 网站中如何给新闻生成url网络营销的概念是什么
  • 做网站开发一般用什么语言成都seo排名
  • 有做游戏广告的网站广州网络推广哪家好
  • 网站模板修改软件大连网站seo
  • 亚马逊网站如何做商家排名baidu百度首页
  • 如何自己做淘宝客网站关键词优化的策略有哪些
  • 怎么注册公司的邮箱优化落实新十条措施