現状の確認をしておこう まず ”fdisk -l”
# fdisk -l Disk /dev/hda: 255 heads, 63 sectors, 524 cylinders Units = cylinders of 16065 * 512 bytes Device Boot Start End Blocks Id System /dev/hda1 * 1 53 425691 c Win95 FAT32 (LBA) Disk /dev/hdb: 255 heads, 63 sectors, 1216 cylinders Units = cylinders of 16065 * 512 bytes Device Boot Start End Blocks Id System /dev/hdb1 1 111 891576 c Win95 FAT32 (LBA) /dev/hdb2 112 237 1012095 82 Linux swap /dev/hdb3 238 1216 7863817+ 83 Linux
次に ”fdisk -lu”です。
# fdisk -lu Disk /dev/hda: 255 heads, 63 sectors, 524 cylinders Units = sectors of 1 * 512 bytes Device Boot Start End Blocks Id System /dev/hda1 * 63 851444 425691 c Win95 FAT32 (LBA) Disk /dev/hdb: 255 heads, 63 sectors, 1216 cylinders Units = sectors of 1 * 512 bytes Device Boot Start End Blocks Id System /dev/hdb1 63 1783214 891576 c Win95 FAT32 (LBA) /dev/hdb2 1783215 3807404 1012095 82 Linux swap /dev/hdb3 3807405 19535039 7863817+ 83 Linux
今回の 計算機の構成は 購入したものに IDE ? 内蔵 ハードディスクを 1 個 追加した物である。windows98 が /dev/hda1 に 移動して そこからの 起動 は 確認できた状態です。今回は /dev/hda2 に windows2000 を インストールを 行うのですが、最初の領域を 少し 広げておきます。また 暫定として /dev/hdb1 の 領域を dos 関連とは関係の 無いように 他の 物に 変えておきます。今回は 83 ですこれは ”83 Linux”にしておきましょうということです。では 取り掛 かります。
最初 /dev/hda1 は 全てクリヤーにして 新しく領域を確保して行きます。
# fdisk /dev/hda Command (m for help): d Partition number (1-4): 1 Command (m for help): n Command action e extended p primary partition (1-4) p Partition number (1-4): 1 First cylinder (1-524, default 1): 1 Last cylinder or +size or +sizeM or +sizeK (1-524, default 524): 123 Command (m for help): n Command action e extended p primary partition (1-4) p Partition number (1-4): 2 First cylinder (124-524, default 124): 124 Last cylinder or +size or +sizeM or +sizeK (124-524, default 524): 524 Command (m for help): w The partition table has been altered! Calling ioctl() to re-read partition table. WARNING: If you have created or modified any DOS 6.x partitions, please see the fdisk manual page for additional information. Syncing disks.
確認しておきましょうまず fdisk -l /dev/hda
# fdisk -l /dev/hda Disk /dev/hda: 255 heads, 63 sectors, 524 cylinders Units = cylinders of 16065 * 512 bytes Device Boot Start End Blocks Id System /dev/hda1 1 123 987966 83 Linux /dev/hda2 124 524 3221032+ 83 Linux
つぎは fdisk -lu /dev/hda
# fdisk -lu /dev/hda Disk /dev/hda: 255 heads, 63 sectors, 524 cylinders Units = sectors of 1 * 512 bytes Device Boot Start End Blocks Id System /dev/hda1 63 1975994 987966 83 Linux /dev/hda2 1975995 8418059 3221032+ 83 Linux
にゃんたろう 拝!
2007年 7月 1日 (日) 21:03:21 JST 作成