You are not logged in.

#1 2013-08-28 21:14:53

Berenger
Member
Registered: 2013-08-28
Posts: 4

Boot message error about fstab

Hello everyone

(This is my first time on the forum as a writter but I've been using Arch since about a year now.)

My problem is the following: I've just intalled archlinux in my new laptop (Asus UX32VD). When preventing arch from erasing boot messages, I find a bunch of error messages like the ones below (not completely exact since I cannot copy-paste)

[2.885659]systemd-fstab-generator[111]: failed to create mount unit file /r
xists. Duplicate entry in /etc/fstab?

[3.678503] [drm: intel-dp-i2c-aux-ch] *ERROR* too many retries, giving up

[6.757586] nouveau E [PBUS] MMIO read of 0x00000000 FAULT
[6.757586] nouveau E [DRM] Pointer to TMDS table invalid

... a bunch of errors concerning package laptop-mode-tools

Note that the funny line break after first line is exactly what is displayed.
Now my fstab seems quite standard to me:


#
# /etc/fstab: static file system information
#
# <file system> <dir>   <type>  <options>       <dump>  <pass>
# /dev/sdb3
UUID=438e6152-489d-4578-9485-92e7fed5a8df       /               ext4            defaults,noatime,discard        0 1

# /dev/sdb2
UUID=85860766-365d-4c15-9f68-1a8fb91cb1a7       /boot           ext4            defaults,noatime,discard        0 2

# /dev/sdb1
UUID=82A3-91D2          /boot           vfat            defaults,noatime,discard,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro       0 2

# /dev/sda1
UUID=ecc0347c-6908-411f-b545-5d7bcf90ad23       /var            ext4            defaults,noatime        0 2

# /dev/sda3
UUID=08ed1ae9-ea78-4578-9786-26a277fb2846       /home           ext4            defaults,noatime        0 2

# /dev/sda2
UUID=d98522b4-513b-4d00-a564-bd60340c54ac       none            swap            defaults        0 0

The line for  /dev/sdb1 is quite ugly but it is my EFI boot sector so I do not know what to change safely.
Have you any idea of what is wrong ?

Some other information :

I've -S, but then -Rs the nouveau package, so I don't know if the lines with "nouveau E" are refering to that. There is a GPU Nvidia card on the laptop but I have currently only installed the Intel chipset drivers.

sdb is a SSD, sda is a HDD. I chose to partition my system this way for speed, but I don't know if it is the right way, or even if it is OK. When I bought my laptop, the EFI boot sector was on the HDD.

Despite the error message, the system seems to work well.

Offline

#2 2013-08-28 21:24:49

WorMzy
Forum Moderator
From: Scotland
Registered: 2010-06-16
Posts: 11,892
Website

Re: Boot message error about fstab

You have two devices mounted at /boot

I'm guessing that either the ext4 one is no longer required, or the vfat one should be mounted at /boot/efi.


Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD

Making lemonade from lemons since 2015.

Offline

#3 2013-08-28 22:02:59

Berenger
Member
Registered: 2013-08-28
Posts: 4

Re: Boot message error about fstab

Ok thanks WorMzy, changing to /boot/efi solved that error.
I still have the other errors though.

Offline

#4 2013-08-28 22:12:54

WorMzy
Forum Moderator
From: Scotland
Registered: 2010-06-16
Posts: 11,892
Website

Re: Boot message error about fstab

No problem, welcome to Arch by the way. I don't know about the other messages, but at a guess, your laptop is one of those hybrid whatsits with both Intel and nVidia graphics, which would explain why you're getting intel and nouveau drm messages. You might want to read up on the bumblebee page on the Arch wiki, it's not something that I have any experience with.


Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD

Making lemonade from lemons since 2015.

Offline

#5 2013-09-01 10:10:24

Berenger
Member
Registered: 2013-08-28
Posts: 4

Re: Boot message error about fstab

Thanks
This is indeed a intel/nvidia hybrid.

Just one more question:
I wasn't able to boot this morning because of a kernel update. I was forced to downgrade with the liveUSB + chroot. As I understand it, it was because of the fact that now I have two initramfs-linux.img : one in /boot, one in /boot/efi. Now, when upgrading, only one of them is replaced by the new one. But when booting, the other one is read, so I had a "filesystem vfat not recognized".

So my question is: does it makes any sense to have two separate partitions /boot and /boot/efi? Wouldn't it be simpler to have just one /boot EFI partition in vfat?

Last edited by Berenger (2013-09-01 10:11:26)

Offline

#6 2013-09-01 10:52:13

WorMzy
Forum Moderator
From: Scotland
Registered: 2010-06-16
Posts: 11,892
Website

Re: Boot message error about fstab

That's right, pacman only knows about /boot/vmlinuz-linux, so it's up to you to find some way to sync this to the EFI partition: https://wiki.archlinux.org/index.php/UE … TUB_Kernel

Personally, I use a solution similar to the one you propose. I mount my EFI partition at /mnt/efi, then I bind /mnt/efi/EFI/arch to /boot. That way, when I upgrade my kernel, pacman automatically installs it into the right directory on my EFI partition.


Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD

Making lemonade from lemons since 2015.

Offline

Board footer

Powered by FluxBB