How To Fomat and Delete Partition Flash Disk using ubuntu
Hello everyone, today is Sunday, 13 December 2020.
i want to talking about format flash disk using linux.
Before user create bootable media user need to format flashdisk ( this is optional ) or user want to make bootable media become normal flashdisk. Basically formating flash disk it's very important technique
* i have test this method in debian based linux ( ubuntu, kali, pop os, and any distro based on debian )
*follow this method step by step
Step To Remove Partition
1. Open Terminal and type " sudo su "2. Type "fdisk -l" ( to show all Partition )3. Type " fdisk /dev/sdx" ( Change Variabel 'x' to your usb )4. Type 'd' to remove5. Type '1' to chose your patition6. Type 'd' to remove partition
Step To Create New Partition
1. Type 'n' to Create New Partition2. Type 'p' To Make It Primary3. Tekan '1' To Make It Become Partition Number one4. Click 'enter' to continue using first cylinder5. click 'enter' to continue using default cylinder6. type 'w' to write all changes7. $ sudo umount /dev/sdx1 ( change variabel to your usb place)
To Make it become fat32
$ mkfs.fat -n <your-name> /dev/sdx1 ( change variabel x to your usb place)
<-- Good Luck -->
Comments
Post a Comment