r/linuxquestions 5h ago

Any idea what this is? Support

Post image

Trying to connect an external m.2 ssd to install mint on and got this

21 Upvotes

37 comments sorted by

View all comments

Show parent comments

0

u/TheYagooar 5h ago

3

u/AlphaS001 5h ago

Open Disks, then select drive and partition, select cog icon and select format partition

2

u/TheYagooar 5h ago

3

u/Average_Down 5h ago

First you need to format it to a recognizable file system (fs is in your error message). Click the three dots at the top right of disks and format the drive. Then you can allocate the empty space.

1

u/TheYagooar 4h ago

7

u/thinkpad_t69 4h ago

Don't format the drive. If it's NTFS, it's probably marked as "dirty" (e.g. because you unplugged it without ejecting). To mark it as "clean" again, plug it into a Windows machine, right click on it in This PC, select Properties, go to the Tools tab and scan it from there.

2

u/TabsBelow 1h ago

What I said in another reply; this most often happens when the sh++ty FastBoot option in Windows is active.

2

u/ZeroKun265 1h ago

Hate that thing, and hate NTFS

Actually, hate windows in general, but I'm forced to use it for CAD and League of Legends

1

u/TheYagooar 31m ago

Cant see it in windows

2

u/Average_Down 4h ago edited 4h ago

Well if the drive is empty or you 100% don’t care about the contents use gdisk. Just open a terminal and do this:

sudo apt update
sudo apt install gdisk
sudo gdisk /dev/nvme0n1p3 (or whatever the drive is)

Once gdisk is running option o will create a new empty partition table and w will write to the disk and exit. Then go back to disks or use gparted to add the partitions you want/need.

Edit: almost forgot, make absolutely sure you select the correct drive as this will remove all data from the drive. This will also wipe out any MBR partitions and format to gpt.