"The disk drive is not ready yet" during boot

Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
Drisc0

"The disk drive is not ready yet" during boot

Post by Drisc0 »

Hi guys,

So I've got 3 hds in my system. There's the OS on my SSD, and then two other drives for storage. I've tried setting them up to mount on boot and get presented with an error message saying:

Code: Select all

The disk drive for /mnt/[drive name] is not ready yet or not present. 
Continue to wait, or Press S to skip mounting or M for manual recovery
It does this for both storage drives. They mount fine once I am into the system. How can I get these to properly automount on boot? The results of sudo blkid gives me:

Code: Select all

/dev/sda1: LABEL="Storage Drive" UUID="4e0aa3c2-cc00-46f3-a649-357c543cdaaf" TYPE="ext4" 
/dev/sdb1: LABEL="SSD" UUID="537d678b-5c87-4569-b60d-c28996a00fe4" TYPE="ext4" 
/dev/sdb5: UUID="5b69dbb3-6c8c-4ab2-a21b-63fecb28b11b" TYPE="swap" 
/dev/sdc1: LABEL="Data Drive" UUID="d92e23f5-9ce6-41d2-9da3-33c9dd0b7d85" TYPE="ext4" 
My fstab file is setup like this:

Code: Select all

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda1 during installation
UUID=537d678b-5c87-4569-b60d-c28996a00fe4 /               ext4    errors=remount-ro 0       1
# swap was on /dev/sda5 during installation
UUID=5b69dbb3-6c8c-4ab2-a21b-63fecb28b11b none            swap    sw              0       0
LABEL=Data\040Drive /mnt/Data\040Drive auto nosuid,nodev,nofail,x-gvfs-show 0 0
LABEL=Storage\040Drive /mnt/Storage\040Drive auto nosuid,nodev,nofail,x-gvfs-show 0 0
Is there something I should change in my fstab file to get this working properly?
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
Mute Ant

Re: "The disk drive is not ready yet" during boot

Post by Mute Ant »

Nothing wrong with Linux+GNU, apparently, since the drives mount after boot. Linux on its own can handle ext3 file systems. It might be a bit provocative having spaces in the drive labels and using them as mount identifiers with escaped characters...

LABEL=Storage\040Drive

...may be the part Linux is choking on. Try...

LABEL="Data Drive"

or, better...

UUID=d92e23f5-9ce6-41d2-9da3-33c9dd0b7d85

You know what you want. I see what you want, Linux has a problem. It smells a bit...buggy Baldrick.
bigal
Level 5
Level 5
Posts: 512
Joined: Mon Aug 03, 2009 3:26 am
Location: Pembrokeshire, South West Wales

Re: "The disk drive is not ready yet" during boot

Post by bigal »

Just a couple of thoughts.
Have you tried altering the labels so there are no spaces, use an underscore?
How about changing the backslashes to forward slashes in fstab
Is there a password issue?
Lots of Minty machines but there again I like lamb and I do live in Wales!
Locked

Return to “Storage”