免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1209 | 回复: 0
打印 上一主题 下一主题

File system snapshots in 10 steps [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-08-08 16:48 |只看该作者 |倒序浏览

Snapshots are useful because they can be applied on active file systems. You do not need to have the system in single user mode, nor do you need to unmount the file system you want to backup, as apposed to traditional backups with the standard ufsdump utility.
In the example below, we backup the root file system.

  • Create the backing store directory on a partition which has preferably at least the same amount of free space as the entire partition size you want to backup. E.g. if your root file system is 500 MB, you will need 500 MB of free space somewhere, no matter how much of that diskspace is actually being used for root file system data. The backing store may also be a raw device. Read the man pages if you want to take risks with sizes.

  • Create the file system snapshot using the fssnap command:
    # fssnap -F ufs -o bs=/somewhere_spacy /
    This creates 3 files:

    • A big file in the /somewhere_spacy directory. While our actual root file system data are "frozen" so it is safe to make the backup, any changes that happen while the file system is in this frozen state will be written to the backing store file.
    • A raw snapshot device /dev/rfssnap/0 or the first free number if you already have active snapshot devices.
    • A block snapshot device /dev/fssnap/0 or first free number. These devices are images of the actual device that you want to backup.


  • Use the fssnap from /usr/lib/fs/ufs/ with the -i option to get more information about the snapshot; you may want to add this to some kind of log file.

  • Create a mount point for your snapshot device. Mount it and check that everything is OK:
    # mkdir /fssnap
    # mount -F ufs -o ro /dev/fssnap/0 /fssnap
    # ls /fssnap
    --output ommitted--

  • Backing up the snapshot using tar is also done using the mounted block device:
    # cd /fssnap
    # tar cvf /dev/rmt/0 .
    --output ommitted--

  • Of course you can also use ufsdump, on the raw device in that case:
    # ufsdump 0uf /dev/rmt/0 /dev/rfssnap/0
    --output ommitted--

  • Test your backup:
    # tar tvf /dev/rmt/0
    --output ommitted--
    for tar, or like this if you used ufsdump:
    # ufsrestore tf /dev/rmt/0
    --output ommitted--

  • When you are done making the backup of your snapshot, deactivate it as soon as possible. First unmount the device if you mounted it.

  • Delete the snapshot:
    # fssnap -d /
    This will deactivate the freeze of your file system. All changes that were temporarily kept in the backin store file, are now written to the actual file system, which then resumes normal behavior.

  • Remove the backing store file.
    When using ufsdump, you can make incremental backups of snapshots just like you would do in a normal situation. Deactivate the snapshots after every level of backup.


    本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/5370/showart_152722.html
  • 您需要登录后才可以回帖 登录 | 注册

    本版积分规则 发表回复

      

    北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
    未成年举报专区
    中国互联网协会会员  联系我们:huangweiwei@itpub.net
    感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

    清除 Cookies - ChinaUnix - Archiver - WAP - TOP