Wednesday, May 1, 2024
 Popular · Latest · Hot · Upcoming
8
rated 0 times [  8] [ 0]  / answers: 1 / hits: 25490  / 1 Year ago, thu, february 2, 2023, 3:04:55

I have created a liveUSB-stick with Xubuntu 12.04 on it. I installed Xubuntu from it on a MacBook Air. If I now plug in the usb stick, it is not recognized anymore. How can I make it recognized and format it in order to use it again as a normal storage USB stick?


More From » 12.04

 Answers
3

here's some simple instructions just for your reference.



A. 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)


B. 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/sdx1 (replacing x with your drive letter)


C. 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.


[#38250] Saturday, February 4, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
inglehare

Total Points: 330
Total Questions: 111
Total Answers: 95

Location: Sint Maarten
Member since Tue, Mar 29, 2022
2 Years ago
;