0

My old laptop(Aspire 4720Z), does detect other USB flash drives, but it doesn’t detect this new one.
I’ve tried creating bootable Windows and Lubuntu drives on Lubuntu 22 using several tools like WoeUSB, Etcher, and Startup Disk Creator. I also tried different formats, but it still doesn’t recognize the new USB drive.

I’ve tested both MBR and GPT partition schemes, and neither works.

enter image description here

enter image description here

enter image description here

I've also tried FAT, NTFS, and exFAT formats.

Here is the USB drive I’m referring to:
https://www.patriotmemory.com/products/tab200-usb-2-0-flash-drive

Ramhound
  • 44,080
msd
  • 1

2 Answers2

0

After creating the usb in linux do you run lsblk -fmap to verify it's exfat etc.?

There might also be strange partitioning on it, always worth completely blatting before creating.

lsblk -fmap  # find usbs corresponding /dev/sd*
sudo dd status=progress if=/dev/zero of=/dev/sdb bs=4k && sync  # replace sdb with usbs letter

Most tools handle formatting (creating filesystem and partitioning) for you, so a clean slate is a good state. USB sticks come preformatted, which might not be the right formatting for you.

Also, reading about woeusb it seems people find it finicky. Ventoy seems to be more popular nowadays, also has a GUI if you prefer.

Remember to choose gpt for the partition scheme if on UEFI or mbr if on Legacy Boot (can be seen in BIOS).

Also remember that Secure Boot can intefere with things. If you got the ISO from a trusted source you can disable Secure Boot to rule that out as an issue. Ventoy has instructions for getting Secure Boot happy with your USB if you're willing to fight that battle.

If it's still no good. You can plug in your good USB alongside the bad one and inspect them with fdisk -x \dev\xxx. If you see differences in either the Disklabel type or the partition tables, that's probably the issue.

-1

There are a few setting that you can check.

There can also be setting in the bios that would be preventing usb boot, it is named differently based on bios vendor so you will need to check that( this is less likely cause you mentioned that other drives are working ).

Also when creating the bootable check what is the partition scheme for the drive, is it MBR or GPT, GPT is the newer one.