リカバリーポイントからmount.v2iユーティリティを使用してファイル、フォルダのリカバリーを行います
1 2 3 4 5 6 7 8 9 10 11 |
[root@co65 ~]# mount.v2i --help Usage: mount -t v2i <RecoveryPoint> <MountPoint> -o <option> umount <RecoveryPoint> umount <MountPoint> Mount or unmount a recovery point to restore files and folders. Option: password=<arg> The password for the recovery point (if assigned). |
- リカバリポイントの確認
- マウント
- アンマウント
1 2 3 4 5 6 |
[root@co65 ~]# ls -l /backup/bk_test/ total 2973617 -rw-r--r-- 1 root root 72503559 Mar 21 12:00 boot_000.v2i -rw-r--r-- 1 root root 52024622 Mar 21 12:07 co65_sda1.v2i -rw-r--r-- 1 root root 567657124 Mar 21 12:34 home_000.v2i -rw-r--r-- 1 root root 2445467003 Mar 21 12:21 system_000.v2i |
/のリカバリーポイントであるsystem_000.v2iをマウントします
マウントできればあとは必要なファイルを取り出すだけです
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
[root@co65 ~]# mount -t v2i /backup/bk_test/system_000.v2i /mnt [root@co65 ~]# ls -la /mnt/ total 148 dr-xr-xr-x. 28 root root 4096 Mar 21 12:17 . dr-xr-xr-x. 27 root root 4096 Mar 21 12:22 .. -rw-r--r-- 1 root root 0 Mar 21 10:07 .autofsck -rw-r--r-- 1 root root 0 Mar 21 10:07 .autorelabel drwx------. 3 root root 4096 Mar 20 13:28 .dbus drw-r--r-- 2 root root 4096 Mar 21 12:17 .symantec drwxr-xr-x 2 root root 4096 Mar 21 11:28 backup dr-xr-xr-x. 2 root root 4096 Mar 20 14:35 bin drwxr-xr-x. 2 root root 4096 Mar 20 12:30 boot drwxr-xr-x. 2 root root 4096 Nov 23 09:56 cgroup drwxr-xr-x. 2 root root 4096 Mar 20 12:30 dev drwxr-xr-x. 120 root root 12288 Mar 21 11:28 etc drwxr-xr-x. 2 root root 4096 Mar 20 12:30 home dr-xr-xr-x. 11 root root 4096 Mar 20 13:03 lib dr-xr-xr-x. 9 root root 12288 Mar 21 11:16 lib64 drwx------. 2 root root 16384 Mar 20 12:29 lost+found drwxr-xr-x. 3 root root 4096 Mar 21 11:19 media drwxr-xr-x. 2 root root 4096 Nov 23 23:07 misc drwxr-xr-x. 2 root root 4096 Sep 23 2011 mnt drwxr-xr-x. 2 root root 4096 Nov 23 23:07 net drwxr-xr-x. 3 root root 4096 Mar 20 13:16 opt drwxr-xr-x. 2 root root 4096 Mar 20 12:30 proc dr-xr-x---. 24 root root 4096 Mar 21 10:09 root dr-xr-xr-x. 2 root root 12288 Mar 20 16:52 sbin drwxr-xr-x. 2 root root 4096 Mar 20 12:35 selinux drwxr-xr-x. 2 root root 4096 Sep 23 2011 srv drwxr-xr-x. 2 root root 4096 Mar 20 12:30 sys drwxrwxrwt. 12 root root 4096 Mar 21 11:20 tmp drwxr-xr-x. 13 root root 4096 Mar 20 12:39 usr drwxr-xr-x. 22 root root 4096 Mar 20 13:14 var |
リカバリーが終わったらアンマウントします
1 2 3 4 5 |
[root@co65 ~]# umount /mnt [root@co65 ~]# ls -la /mnt/ total 8 drwxr-xr-x. 2 root root 4096 Sep 23 2011 . dr-xr-xr-x. 27 root root 4096 Mar 21 12:22 .. |
このコマンドを使うには、FUSEドライバとFUSE共有ライブラリ(libfuse.so.2)をインストールしておく必要があります