Удалить файловую систему GPT на USB

534
cronos2

У меня старая флешка 8ГБ с файловой системой GPT. Я хотел бы переместить его в более знакомую fs, например NTFS или FAT32, но обычные mkfs, похоже, не работают, так как нет / dev / sdb1 (так как нет разделов). Я обнаружил в Google, что я должен использовать parted, но я так и не понял, как это сделать, поэтому прошу небольшой помощи.

Как вы, наверное, заметили, я тоже не очень привык к этим концепциям, поэтому было бы здорово, если бы вы могли предоставить объяснение или ссылку на эту тему.

Заранее спасибо и попросим всю необходимую информацию.

1
На какой ОС вы работаете? Vikas Swami 9 лет назад 0
элементарная ОС, основанная на Ubuntu 12.04 cronos2 9 лет назад 0

2 ответа на вопрос

0
grawity

GPT is not a filesystem; it's a partition table format, like the older MBR (MS-DOS). It can hold partitions with all the usual filesystems inside – just mkpart them in Parted, and you'll get /dev/sdb1 and such.

Use mktable msdos in Parted if you need a MS-DOS (MBR) partition table for compatibility with older Windows. This will discard all existing partitions and create a blank table.

Это был действительно хороший ответ. Спасибо за ваше объяснение! cronos2 9 лет назад 0
0
Vikas Swami

A GUI complement for @grawity's answer.

One lined answer : You need to create partitions.


Some Information (optional) :

MBR (Master Boot Record) and GPT (GUID Partition Table) are two different ways of storing the partitioning information on a drive. This information includes where partitions start and begin, so your operating system knows which sectors belong to each partition and which partition is bootable. This is why you have to choose MBR or GPT before creating partitions on a drive.

GPT is a new standard that is replacing the old MBR.


One Solution (If you need this device to be used with new UEFI based systems):

1) Use GParted. Download it from here.

2) Create a partition first. Select Partition -> New.

3) In the popup box input New size (MiB), select File system from the drop down list and click Add.

4) Now select Edit -> Apply All Operations.

Now you've created the selected File system on the GPT drive.


Another Solution (If you need this device to be used with systems with traditional BIOS) :

1) Use GParted. Download it from here.

2) After the installation is complete, open the application and press Ctrl + R to refresh devices list.

3) Goto Gparted -> Devices -> Select your device in menu.

4) Goto Device -> Create Partition Table...

If you get any error then you need to get the device unmounted. Select Partition -> Unmount

5) Now, Select new partition table type : msdos and click Apply.

You've successfully created MBR partition table on the device.

Now you can create partitions with whichever file system you like the same way (First Solution).

Похожие вопросы