/
bear
/
cheatsheets
Обзор
Документация
Войти
/
bear
/
cheatsheets
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
other_scripts/format_usb_flash
35 строк
1 KB
Nikita Kalitin
Create format_usb_flash
13 авг 2019, 05:12
Не верифицирован
13 авг 2019, 05:12
20ebb0f
Код
Авторство
О чём код?
Deleting all partitions on a USB drive using fdisk First we need to delete the old partitions that remain on the USB key. Open a terminal and type sudo su Type fdisk -l and note your USB drive letter. Type fdisk /dev/sdx (replacing x with your drive letter) Type d to proceed to delete a partition Type 1 to select the 1st partition and press enter Type d to proceed to delete another partition (fdisk should automatically select the second partition) Next we need to create the new partition. Type n to make a new partition Type p to make this partition primary and press enter Type 1 to make this the first partition and then press enter Press enter to accept the default first cylinder Press enter again to accept the default last cylinder Type w to write the new partition information to the USB key Type umount /dev/sdx (replacing x with your drive letter) The last step is to create the fat filesystem. Type mkfs.vfat -F 32 /dev/sdx1 (replacing x with your USB key drive letter) That’s it, you should now have a restored USB key with a single fat 32 partition that can be read from any computer. or Format with vFat File System $ sudo mkfs.vfat /dev/sdxx #xx - for example c1, in complete - /dev/sdc1 Format with NTFS File System $ sudo mkfs.ntfs /dev/sdxx Format with EXT4 File System $ sudo mkfs.ext4 /dev/sdxx