まずは、Mac OS X で、GPT でパーティションをきったディスクを、USB で接続しました。fdisk は、GPT をサポートしていないので、初めて、GNU parted を使ってみました。
# fdisk /dev/sde WARNING: GPT (GUID Partition Table) detected on '/dev/sde'! \ The util fdisk doesn't support GPT. Use GNU Parted. Command (m for help): p Disk /dev/sde: 500.1 GB, 500107862016 bytes 255 heads, 63 sectors/track, 60801 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Disk identifier: 0x00000000 Device Boot Start End Blocks Id System /dev/sde1 1 60802 488386583+ ee EFI GPT Command (m for help): q # parted /dev/sde GNU Parted 1.8.6 Using /dev/sde Welcome to GNU Parted! Type 'help' to view a list of commands. (parted) print Model: MAXTOR S TM3500630A (scsi) Disk /dev/sde: 500GB Sector size (logical/physical): 512B/512B Partition Table: gpt Number Start End Size File system Name Flags 1 20.5kB 210MB 210MB fat32 EFI System Partition boot 2 210MB 500GB 500GB hfs+ Untitled (parted) quit # mount -t hfsplus /dev/sde2 /a # ls -l /a -r--r--r-- 1 nobody nobody 8056209408 2008-09-02 22:52 leopard.iso # umount /a # mkfs -t ext3 /dev/sde3 # parted /dev/sde (parted) p Number Start End Size File system Name Flags 1 20.5kB 210MB 210MB fat32 EFI System Partition boot 2 210MB 500GB 500GB ext3 Untitled (parted) q # mount /dev/sde2 /a # |
Linux でも、HFS+ のパーティションをそのままマウントできます。今回は、GPT パーティションの構成はそのままにして、ext3 でファイルシステムを作成しました。
その後、LVM のボリュームから、ファイルをすべてコピーした後に、ディスクを入れ換えました。この
Tags: computer_technology