Advertisement
v1ral_ITS

mkdosfs ( terminal )

Feb 7th, 2018
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.32 KB | None | 0 0
  1.  
  2.  
  3. Run the below commands to format the usb to fat32 filesystem from terminal,
  4.  
  5. sudo su
  6. fdisk -l
  7.  
  8. (this helps to discover your pendrive /dev/sdxx)
  9.  
  10. umount /dev/sdxx
  11.  
  12. then format your device to FAT32
  13.  
  14. mkdosfs -F 32 -I /dev/sdxx
  15.  
  16. Where "xx" is from the command fdisk -l which denotes your usb drive's last letters.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement