Celeb Glow
updates | April 02, 2026

pc wont boot with sd card reader plugged in

when i installed 12.04 on new hdd i didnt have the card reader plugged in before partitioning, now that my gateway zx4000 is all set up i realized the card reader hadnt been plugged in so now when i try to plug it in while my pc is on the system will power off and when i reboot it gives me some kind of error message and wont reboot until i unplug the card reader, any help is appreciated. (card reader is where you insert video/photo sd card correct?)

1

1 Answer

It would help a lot if you could tell the exact error message you received. This issue could have multiple causes:

  • the BIOS might be set to boot from USB before trying the hard disk, so check the BIOS settings
  • your /etc/fstab might list the partitions to be mounted with /dev/sdx syntax - unfortunately, those are not fixed, what is /dev/sda on one boot might be /dev/sdb on the next. Therefore Ubuntu usually uses block ids instead of absolute device paths, with "UUID=..." syntax. If your fstab has absolute paths, you could replace them with the block ids. To find out which block id belongs to e.g. sda1 type:

    user@host:~$ blkid -s UUID /dev/sda1
    /dev/sda1: UUID="0123456789ABCDEF"

and then replace /dev/sda1 in your fstab with UUID=0123456789ABCDEF (without quotes).

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy