0

enter image description here

Have a USB drive that used to be bootable Ubuntu install. I want to repurpose it now but can't delete any of the partitions.

user240891
  • 739
  • 4
  • 10
  • 26

1 Answers1

0

use the command line to format this partition using the following steps (of course by root user):

root user):

$ fdisk /dev/sdb

This will log in to the a disk management in console. type m for help (manual). Continue deleting the partitions using d and write it to the table using w. All the required information are available here.

Krishna Chalise
  • 170
  • 2
  • 4
  • 17