web-dev-qa-db-ja.com

fdiskで新しいパーティションを作成します

Ubuntu 14.04.2 LTS(32ビット)をVMware Workstation 10.0.3 build-1895310で実行しています。仮想マシンの設定を変更し、ハードディスクを20 GBから30 GB。だから、これらの余分な10 GBで新しいパーティションを作成したいと思います。

fdisk /dev/sdanをコマンドとして使用して新しいパーティションを作成しようとすると、この新しいパーティションのサイズを指定する必要があります。そして、私は次の値を試しました:

Last cylinder, +cylinders or +size{K,M,G} (2612-3916, default 3916): `10G`
Value out of range.
Last cylinder, +cylinders or +size{K,M,G} (2612-3916, default 3916): `9G`
Value out of range.
Last cylinder, +cylinders or +size{K,M,G} (2612-3916, default 3916): `1M`
Value out of range.

作成するパーティションのタイプを尋ねられたら、e(拡張)とp(プライマリ)の両方のオプションを試しましたが、運はありませんでした。 1M値でさえ動作しないため、行方不明または間違った動作が発生しているはずです。動作させるには何をする必要がありますか?

fdisk/dev/sdaはこれを返します:

WARNING: DOS-compatible mode is deprecated. It's strongly recommended to
         switch off the mode (command 'c') and change display units to
         sectors (command 'u').

Command (m for help): **p**

Disk /dev/sda: 32.2 GB, 32212254720 bytes
255 heads, 63 sectors/track, 3916 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: 0x0000fba6

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1          64      512000   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2              64        2611    20458496   8e  Linux LVM

また、df -hは以下を返します。

Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/vg_box0-lv_root
                       18G  4.4G   12G  27% /
tmpfs                 503M   76K  503M   1% /dev/shm
/dev/sda1             477M   65M  387M  15% /boot
3
Tanatos Daniel

サイズを指定するときは、+記号を使用する必要があります。

10 Gbの場合

    +10G
4
Panther