web-dev-qa-db-ja.com

正しいファイルシステムでドライブをマウントするには?

CentOSシステムにデバイス/ dev/xvdcをマウントしようとしています。 fdiskコマンドを実行すると、次のようになります。

Device Boot      Start         End      Blocks   Id  System
/dev/xvda1   *           1          33      262144   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/xvda2                  33       13055   104594432   83  Linux 
Disk /dev/xvdc: 1073.7 GB, 1073741824000 bytes 255 heads, 63
sectors/track, 130541 cylinders Units = cylinders of 16065 * 512 =
8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier:
0x00000000

そして、mount -t ext2 /dev/xvdc /bkp aを実行すると、次のようになります。

mount: wrong fs type, bad option, bad superblock on /dev/xvdc,
     missing codepage or helper program, or other error
     In some cases useful info is found in syslog - try
     dmesg | tail  or so

/dev/xvdcを50%/bkp、25%/fsys、25%/home2としてマウントする必要がありますか?

3
Chris

初心者の場合、gpartedは上記の両方のオプションで非常に使いやすいので、おそらくあなたの友達です。これを使用して、パーティショニング方式に必要なサイズの/dev/xvdcに3つのパーティションを作成します。

インストールしたら、ルートとして実行します。

gparted /dev/xvdc

ファイルシステムとパーティションを作成してください。

パーティションファイルシステムにはext4を使用します-ext2は古いです。他のファイルシステムも利用できます(例:xfsまたはbtrfs)。ただし、現時点ではext4を使用してください。


@terdonが言及しているように、コマンドラインを使用してパーティション/ファイルシステムを追加する必要がある場合があります。

注:#は私のコメントです。入力しないでください。

fdisk /dev/xvdc
o # letter o for oscar to create a new partition table
n # to create a new partition
p # to make this new partition a primary one
1 # to number the partition (it will be /dev/xvdc1)
[Enter] # Press enter to accept the default start position of this new parition
+500G to make it approx 50% of the size of your 1TB disk

2番目と3番目のパーティションのoから上記のコマンドを繰り返します。パーティション番号には23を使用し、パーティション3のサイズには+ 250Gを使用し、デフォルトのままにします。 3番目のパーティション(残りのディスク領域を使用します)。

これで、3つの空のパーティションができました。使用する:

mkfs.ext4 /dev/xvdc1
mkfs.ext4 /dev/xvdc2
mkfs.ext4 /dev/xvdc3

パーティションが作成されたら、それらをマウントできます。

上記のmount構文は正しくありません。マウントするパーティションをmountコマンドに通知する必要があります(ディスク全体を使用するように指定しました)。

mount -t ext2 /dev/xvdc1 /bkp

これは、/dev/xvdc1オプションを使用したように、ext2のパーティションが-t ext2パーティションである場合にのみ機能します。このオプションは省略して、mountがファイルシステムタイプを自動検出できるようにするのが最善です。

mount /dev/xvdc1 /bkp

等々...

3
garethTheRed