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
次のようになります。
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
私が何を間違っているのでしょうか?
答え1
gparted
上記の両方のオプションは非常にユーザーフレンドリーなので、初心者ならこの友達になることもできます。これを使用して、/dev/xvdc
パーティションスキームに必要なサイズの3つのパーティションを作成します。
インストール後にrootとして実行します。
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
パーティション3のサイズに+ 250Gを使用し、3番目のパーティションの場合はデフォルト値のままにします(残りのディスク容量が使用されます)。2
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
など...