Page 1 of 2
[Solved] additional hard drive doesn't boot
Posted: Thu Mar 05, 2020 4:54 am
by vandykmarsu
Hi folks, i switch from Apple to MX Linux.
On my new PC i add a additional hard drive to storage all my Mac Data.
I look on the web to add it into /etc/fstab etc, but doesn't boot on startup.
Have MX 19.1
Have anyone an idea to solve my isue please?
Great regards.
Re: additional hard drive doesn't boot
Posted: Thu Mar 05, 2020 4:57 am
by JayM
Welcome to the forum. Do you mean boot or mount? Those are two different things.
Re: additional hard drive doesn't boot
Posted: Thu Mar 05, 2020 10:36 am
by vandykmarsu
@JayM
I mean at startup sorry :P
Have a folder where the drive are mount, but not visible in Thunar side bar.
How i can do that permanent?
Re: additional hard drive doesn't boot
Posted: Thu Mar 05, 2020 11:22 am
by fehlix
vandykmarsu wrote: Thu Mar 05, 2020 10:36 am
Have a folder where the drive are mount, but not visible in Thunar side bar.
Perhaps show the entry in fstab you are using.
You might want to add some mount options so it will show up in Thunar like those:
Code: Select all
x-gvfs-show,x-gvfs-name=USB-Harddisk,x-gvfs-icon=drive-harddisk-usb-symbolic,x-gvfs-symbolic-icon=drive-harddisk-usb-symbolic

Re: additional hard drive doesn't boot
Posted: Thu Mar 05, 2020 12:00 pm
by m_frank
You may want to take a look at
disk manager:
- Type in diskm on the whisker menu, and select Disk Manager
- Right-Click the desktop, select Application -> System -> Disk Manager from the popup menu
- In a Terminal window from the command line:
Should get a nice overview of the partitions, and ability to manage which are mounted on which mount points with which options.
Re: additional hard drive doesn't boot
Posted: Thu Mar 05, 2020 1:35 pm
by vandykmarsu
Thanks for your reply's :D
Here my folder where my disk3 are mount:
And here the location i want for my disk3:
How i can do that my drive mounting in the peripherals section?
Re: additional hard drive doesn't boot
Posted: Thu Mar 05, 2020 3:06 pm
by fehlix
vandykmarsu wrote: Thu Mar 05, 2020 1:35 pm
Here my folder where my disk3 are mount:
As already requested, do post the content of /etc/fstab,
e.g. by running this from command line and copy'n'paste the text output here:
or open in featherpad:
and do post the text content of /etc/fstab between those code - tags like thos [
code]code brackets[/code]
Re: additional hard drive doesn't boot
Posted: Thu Mar 05, 2020 3:12 pm
by vandykmarsu
Here what are i my fstab:
Code: Select all
#Entry for /dev/sda2 :
UUID=ad8fab1b-b68e-4074-94f9-1d6641de9c9c / ext4 defaults 1 1
#Entry for /dev/sda1 :
UUID=65F7-0856 /boot/efi vfat defaults,noatime,dmask=0002,fmask=0113 0 0
#Entry for /dev/sdc1 :
UUID=bfd5b9cc-e7aa-47ef-9fa1-ddd02b6ee2a1 /disk3 ext4 defaults,relatime 0 0
#Entry for /dev/sda3 :
UUID=0ed9e5ad-3519-405a-9dc4-a7491583a2a3 swap swap defaults 0 0
dev/sdc1 /disk3 ext4 defaults 1 2
Re: additional hard drive doesn't boot
Posted: Thu Mar 05, 2020 3:19 pm
by fehlix
vandykmarsu wrote: Thu Mar 05, 2020 3:12 pm
Code: Select all
#Entry for /dev/sda2 :
#Entry for /dev/sdc1 :
UUID=bfd5b9cc-e7aa-47ef-9fa1-ddd02b6ee2a1 /disk3 ext4 defaults,relatime 0 0
How is the external hd connected ? USB2, USB3 , eSATA etc ppp?
Re: additional hard drive doesn't boot
Posted: Thu Mar 05, 2020 3:33 pm
by fehlix
vandykmarsu wrote: Thu Mar 05, 2020 3:12 pm
Here what are i my fstab:
Code: Select all
#Entry for /dev/sda2 :
UUID=ad8fab1b-b68e-4074-94f9-1d6641de9c9c / ext4 defaults 1 1
#Entry for /dev/sda1 :
UUID=65F7-0856 /boot/efi vfat defaults,noatime,dmask=0002,fmask=0113 0 0
#Entry for /dev/sdc1 :
UUID=bfd5b9cc-e7aa-47ef-9fa1-ddd02b6ee2a1 /disk3 ext4 defaults,relatime 0 0
#Entry for /dev/sda3 :
UUID=0ed9e5ad-3519-405a-9dc4-a7491583a2a3 swap swap defaults 0 0
dev/sdc1 /disk3 ext4 defaults 1 2
The last line in the /etc/fstab you posted is probaly wrong, so check again
This line for /disk3
Code: Select all
#Entry for /dev/sdc1 :
UUID=bfd5b9cc-e7aa-47ef-9fa1-ddd02b6ee2a1 /disk3 ext4 defaults,relatime 0 0
here with some changes to show up under devices as "disk3":
Code: Select all
#Entry for /dev/sdc1 :
UUID=bfd5b9cc-e7aa-47ef-9fa1-ddd02b6ee2a1 /disk3 ext4 defaults,relatime,nofail,x-gvfs-show,x-gvfs-name=disk3 0 2
In addtition I added "nofail" to avoid a boot-hanger in case you removed the hdd-device,
and also added the files-system check flag "2" to have reguarly file system checks when mounting.
You can add other icons for the external hdd as mentioned in the post above e.g.
Code: Select all
#Entry for /dev/sdc1 :
UUID=bfd5b9cc-e7aa-47ef-9fa1-ddd02b6ee2a1 /disk3 ext4 defaults,relatime,nofail,x-gvfs-show,x-gvfs-name=disk3,x-gvfs-icon=drive-harddisk-usb-symbolic,x-gvfs-symbolic-icon=drive-harddisk-usb-symbolic 0 2
