You are digging too deep, even digging holes into empty space.
the nofail option in fstab tells the system to ignore any errors on mounting and to continue booting even if the device cannot be mounted properly at the time.
Timeshift has zero relevance to or effect on the Linux boot process.
That adding this to your mount options indicates that there is a problem with the drive, or the fstab entry is incorrect/invalid for the partition.
I bet/guess/postulate/predict that the problem is that there is no device assigned by the kernel as /dev/sdg, and that the nofail option added for /dev/sdg1 allows the boot process to continue.
Having a proper fstab entry using a unique ID for this partition will fix this, as I described earlier.
With all the relevant drives attacvhed, post the results of these two commands:
then
And we can give you the exact line you can use for both of your manually added mounts.
the nofail option in fstab tells the system to ignore any errors on mounting and to continue booting even if the device cannot be mounted properly at the time.
Timeshift has zero relevance to or effect on the Linux boot process.
That adding this to your mount options indicates that there is a problem with the drive, or the fstab entry is incorrect/invalid for the partition.
I bet/guess/postulate/predict that the problem is that there is no device assigned by the kernel as /dev/sdg, and that the nofail option added for /dev/sdg1 allows the boot process to continue.
Having a proper fstab entry using a unique ID for this partition will fix this, as I described earlier.
With all the relevant drives attacvhed, post the results of these two commands:
Code:
sudo blkid
Code:
lsblk
Comment