natural born minority
ややこしいことになりまして…。現在も進行中。
すぐ気づいて止めたためどこかが無事なら…と、「HD壊れた」系の情報を中心に模索中。 領域情報が書き換えられているとあたりをつけ、インデックスが変になった場合対応を探す。
LVNも絡んでるんだよな…
以下、スクラップ
すこし救いがあったのは、1年まえにHDDを移行する際に元のHDDを消さずの越していたこと。
台所事情から、これをいかしつつ、このデータを逃がしつつがんばってみよう。
※メモ、後で解説
fsck.ext -f /dev/VolGroup00/LogVol00
resize2fs -p /dev/VolGroup00/LogVol00 14336M (場合によってはすごい時間がかかる)
lvreduce -L -50G /dev/VolGroup00/LogVol00
WARNING: Reducing active logical volume to 21.94 GB
THIS MAY DESTROY YOUR DATA (filesystem etc.)
Do you really want to reduce LogVol00? [y/n]: y
Reducing logical volume LogVol00 to 18.94 GB
Logical volume LogVol00 successfully resized
lvscan
ACTIVE '/dev/VolGroup00/LogVol00' [18.94 GB] inherit
ACTIVE '/dev/VolGroup00/LogVol01' [1.94 GB] inherit
コピー元の構成を真似てパーティションを割ります。
fdisk /dev/hdd
このディスクのシリンダ数は 39560 に設定されています。
間違いではないのですが、1024 を超えているため、以下の場合
に問題を生じうる事を確認しましょう:
1) ブート時に実行するソフトウェア (例. バージョンが古い LILO)
2) 別の OS のブートやパーティション作成ソフト
(例. DOS FDISK, OS/2 FDISK)
コマンド (m でヘルプ): p
Disk /dev/hdd: 20.4 GB, 20416757760 bytes
16 heads, 63 sectors/track, 39560 cylinders
Units = シリンダ数 of 1008 * 512 = 516096 bytes
デバイス Boot Start End Blocks Id System
コマンド (m でヘルプ): n
コマンドアクション
e 拡張
p 基本領域 (1-4)
p
領域番号 (1-4): 1
最初 シリンダ (1-39560, default 1): 1
終点 シリンダ または +サイズ または +サイズM または +サイズK (1-39560, default 39560): 208
コマンド (m でヘルプ): n
コマンドアクション
e 拡張
p 基本領域 (1-4)
p
領域番号 (1-4): 2
最初 シリンダ (209-39560, default 209):
Using default value 209
終点 シリンダ または +サイズ または +サイズM または +サイズK (209-39560, default 39560):
Using default value 39560
コマンド (m でヘルプ): p
Disk /dev/hdd: 20.4 GB, 20416757760 bytes
16 heads, 63 sectors/track, 39560 cylinders
Units = シリンダ数 of 1008 * 512 = 516096 bytes
デバイス Boot Start End Blocks Id System
/dev/hdd1 1 208 104800+ 83 Linux
/dev/hdd2 209 39560 19833408 83 Linux
コマンド (m でヘルプ): w
領域テーブルは交換されました!
pvcreate /dev/hdd2
Physical volume "/dev/hdd2" successfully created
vgcreate -s 32m NewVG /dev/hdd2
Volume group "NewVG" successfully created
解説に、「以前のエクステント数をlvdisplayで参照して、-lを指定します」とあるが、
-Lで容量指定ができるともあるので、それでやってみる。
lvcreate -L 1.94G -n LogVol01 NewVG
Rounding up size to full physical extent 1.97 GB
Logical volume "LogVol01" created
lvcreate -L 17.03G -n LogVol00 NewVG
Rounding up size to full physical extent 17.03 GB
Insufficient free extents (542) in volume group NewVG: 545 required
lvcreate -l 542 -n LogVol00 NewVG
Logical volume "LogVol00" created
mkfs -t ext3 /dev/hdd1
mke2fs 1.40-WIP (14-Nov-2006)
Filesystem label=
OS type: Linux
Block size=1024 (log=0)
Fragment size=1024 (log=0)
26208 inodes, 104800 blocks
5240 blocks (5.00%) reserved for the super user
First data block=1
Maximum filesystem blocks=67371008
13 block groups
8192 blocks per group, 8192 fragments per group
2016 inodes per group
Superblock backups stored on blocks:
8193, 24577, 40961, 57345, 73729
Writing inode tables: done
Creating journal (4096 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 37 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
mkfs -t ext3 /dev/NewVG/LogVol00
mke2fs 1.40-WIP (14-Nov-2006)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
2223872 inodes, 4440064 blocks
222003 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=0
136 block groups
32768 blocks per group, 32768 fragments per group
16352 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
4096000
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 32 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
mkswap /dev/NewVG/LogVol01
Setting up swapspace version 1, size = 2113925 kB
no label, UUID=37ea65ae-1996-41c0-b061-fc409f9e9527
ちょっと解説が要りそうですが…自分のためにもまたの機会に♪
blog comments powered by Disqus