gpartedを使用したUSBフラッシュドライブのパーティション分割

gpartedを使用したUSBフラッシュドライブのパーティション分割

しなければならない分ける私のものUSBメモリースティック2つの部分に分けられます。

特に私の目標は、2番目のパーティションにWindows-to-goをインストールし、最初のパーティションをLinuxディストリビューションのマルチブートデバイスとして使用することです。現在のパーティションを削除しないでください可能であれば、ファイルに影響を与えずにサイズを変更したいと思います。

これが私が今まで試したことです。

USBスティックを接続するとファイルを開いて閲覧でき、ファイルをコピーして貼り付けてフォルダを作成するなどの作業もできるので問題ないようです。私は走るゴポットカリでLinuxデバイスを選択すると表示できますが、感嘆符右クリックしようとすると表示されます。サイズ変更現在のパーティションできないします。感嘆符をクリックすると、次の結果が表示されます。間違い(中央の灰色のウィンドウのメッセージを参照してください。これはデバイスがインストールされていないことを意味します。):

画面

メッセージの終わりには2つのパッケージを見逃したかもしれないという内容も示されていました(Dosifのツールそしてツールボックス)それから走っていったが、すでにインストールされているapt-get installようだった。


また、端末で実行するparted -lfdisk -l、次の出力が表示されます。

1)parted -l与えられた - >

    Model: ATA ST1000LM024 HN-M (scsi)
Disk /dev/sda: 1000GB
Sector size (logical/physical): 512B/4096B
Partition Table: msdos

Number  Start   End     Size    Type      File system     Flags
 1      1049kB  968GB   968GB   primary   ntfs            boot
 2      968GB   1000GB  32,2GB  extended
 5      968GB   999GB   30,9GB  logical   ext4
 6      999GB   1000GB  1356MB  logical   linux-swap(v1)


Model: ATA INTEL SSDSC2CW06 (scsi)
Disk /dev/sdb: 60,0GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End     Size    Type     File system  Flags
 1      1049kB  105MB   104MB   primary  ntfs         boot
 2      106MB   60,0GB  59,9GB  primary  ntfs


Model: KINGSTON DataTraveler 3.0 (scsi)
Disk /dev/sdc: 15,6GB
Sector size (logical/physical): 512B/512B
Partition Table: loop

Number  Start  End     Size    File system  Flags
 1      0,00B  15,6GB  15,6GB  fat32

2)fdisk -l与えられた - >

    Disk /dev/sdb: 60.0 GB, 60022480896 bytes
255 heads, 63 sectors/track, 7297 cylinders, total 117231408 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x26443af5

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1   *        2048      204799      101376    7  HPFS/NTFS/exFAT
/dev/sdb2          206848   117227519    58510336    7  HPFS/NTFS/exFAT

Disk /dev/sda: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders, total 1953525168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0xfe2335fe

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048  1890607103   945302528    7  HPFS/NTFS/exFAT
/dev/sda2      1890609150  1953523711    31457281    5  Extended
Partition 2 does not start on physical sector boundary.
/dev/sda5      1890609152  1950873599    30132224   83  Linux
/dev/sda6      1950875648  1953523711     1324032   82  Linux swap / Solaris

Disk /dev/sdc: 15.6 GB, 15552479232 bytes
64 heads, 32 sectors/track, 14832 cylinders, total 30375936 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x20ac7dda

This doesn't look like a partition table
Probably you selected the wrong device.

   Device Boot      Start         End      Blocks   Id  System
/dev/sdc1   ?  3224498923  3657370039   216435558+   7  HPFS/NTFS/exFAT
/dev/sdc2   ?  3272020941  5225480974   976730017   16  Hidden FAT16
/dev/sdc3   ?           0           0           0   6f  Unknown
/dev/sdc4        50200576   974536369   462167897    0  Empty

Partition table entries are not in disk order

ベストアンサー1

上記の出力(以下の繰り返し)では、USBデバイスにパーティションテーブルは含まれていません。代わりに、デバイスは0から始まるfat32ファイルシステムを使用して完全にフォーマットされています。これは、デバイスの起動時にパーティションテーブルのスペースが残らないことを意味します。

Model: KINGSTON DataTraveler 3.0 (scsi)
Disk /dev/sdc: 15,6GB
Sector size (logical/physical): 512B/512B
Partition Table: loop

Number  Start  End     Size    File system  Flags
 1      0,00B  15,6GB  15,6GB  fat32

パーティションテーブルなしでデバイスを使用するには、少なくともGParted v0.22.0を使用してください。 GPartedの最新バージョンは現在0.25.0です。

おすすめ記事