You are not logged in.

#1 2018-08-10 15:58:04

oeht
Member
Registered: 2017-11-04
Posts: 20

randomly unable to mount /new_root

Hello there,

I'm having issues about booting/mounting my root partition. Most of the times, I can boot without a problem, but about one out of ten times, I receive the following error:

starting version 239
[    1.885486] nouveau 0000:02:00.0: bus: MMIO write of 0000807f FAULT at 100c18
[    1.968553] nouveau 0000:02:00.0: bus: MMIO write of 0000807e FAULT at 100c1c
[    3.558184] module: overflow in relocation type 11 val 67c07e72c8
[    3.558207] module: `libata' likely not compiled with -mcmodel=kernel
[    3.574588] module: overflow in relocation type 11 val 67c08412c8
[    3.574602] module: `libata' likely not compiled with -mcmodel=kernel
ERROR: device 605d234f-4577-4db1-b859-b81ad5a70a8a' not found. Skipping fsck.
mount: /new_root: can't find UUID=605d234f-4577-4db1-b859-b81ad5a70a8a.
You are now being dropped into an emergency shell.
sh: can't access tty; job control turned off
[rootfs ]#

$ lsblk -o +uuid

NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT UUID
sda      8:0    0   113G  0 disk
├─sda1   8:1    0   512M  0 part            A4C6-D72F
├─sda3   8:3    0   4,1G  0 part [SWAP]     d4ac27a9-b10f-48f0-906b-a2e1b05deb27
└─sda5   8:5    0 108,4G  0 part /          605d234f-4577-4db1-b859-b81ad5a70a8a

Here is my /etc/fstab:

# /dev/sda5 UUID=605d234f-4577-4db1-b859-b81ad5a70a8a
LABEL=p_arch        	/         	ext4      	rw,relatime,data=ordered	0 1

# /dev/sda3 UUID=lsblk -no UUID /dev/sda3
UUID=d4ac27a9-b10f-48f0-906b-a2e1b05deb27 none      	swap      	defaults  	0 0

Here is my /default/grub:

# GRUB boot loader configuration

GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="Arch"
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
GRUB_CMDLINE_LINUX=""

# Preload both GPT and MBR modules so that they are not missed
GRUB_PRELOAD_MODULES="part_gpt part_msdos"

# Uncomment to enable booting from LUKS encrypted devices
#GRUB_ENABLE_CRYPTODISK=y

# Uncomment to enable Hidden Menu, and optionally hide the timeout count
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true

# Uncomment to use basic console
GRUB_TERMINAL_INPUT=console

# Uncomment to disable graphical terminal
#GRUB_TERMINAL_OUTPUT=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
GRUB_GFXMODE=auto

# Uncomment to allow the kernel use the same resolution used by grub
GRUB_GFXPAYLOAD_LINUX=keep

# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
GRUB_DISABLE_RECOVERY=true

# Uncomment and set to the desired menu colors.  Used by normal and wallpaper
# modes only.  Entries specified as foreground/background.
#GRUB_COLOR_NORMAL="light-blue/black"
#GRUB_COLOR_HIGHLIGHT="light-cyan/blue"

# Uncomment one of them for the gfx desired, a image background or a gfxtheme
#GRUB_BACKGROUND="/path/to/wallpaper"
#GRUB_THEME="/path/to/gfxtheme"

# Uncomment to get a beep at GRUB start
#GRUB_INIT_TUNE="480 440 1"

# Uncomment to make GRUB remember the last selection. This requires to
# set 'GRUB_DEFAULT=saved' above.
#GRUB_SAVEDEFAULT="true"

/etc/mkinitcpio.conf

# vim:set ft=sh
# MODULES
# The following modules are loaded before any boot hooks are
# run.  Advanced users may wish to specify all system modules
# in this array.  For instance:
#     MODULES=(piix ide_disk reiserfs)
#MODULES=()
# MODULES=(nvidia_bl nouveau)
MODULES=(nouveau)


# BINARIES
# This setting includes any additional binaries a given user may
# wish into the CPIO image.  This is run last, so it may be used to
# override the actual binaries included by a given hook
# BINARIES are dependency parsed, so you may safely ignore libraries
BINARIES=()

# FILES
# This setting is similar to BINARIES above, however, files are added
# as-is and are not parsed in any way.  This is useful for config files.
FILES=()

# HOOKS
# This is the most important setting in this file.  The HOOKS control the
# modules and scripts added to the image, and what happens at boot time.
# Order is important, and it is recommended that you do not change the
# order in which HOOKS are added.  Run 'mkinitcpio -H <hook name>' for
# help on a given hook.
# 'base' is _required_ unless you know precisely what you are doing.
# 'udev' is _required_ in order to automatically load modules
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
# Examples:
##   This setup specifies all modules in the MODULES setting above.
##   No raid, lvm2, or encrypted root is needed.
#    HOOKS=(base)
#
##   This setup will autodetect all modules for your system and should
##   work as a sane default
#    HOOKS=(base udev autodetect block filesystems)
#
##   This setup will generate a 'full' image which supports most systems.
##   No autodetection is done.
#    HOOKS=(base udev block filesystems)
#
##   This setup assembles a pata mdadm array with an encrypted root FS.
##   Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
#    HOOKS=(base udev block mdadm encrypt filesystems)
#
##   This setup loads an lvm2 volume group on a usb device.
#    HOOKS=(base udev block lvm2 filesystems)
#
##   NOTE: If you have /usr on a separate partition, you MUST include the
#    usr, fsck and shutdown hooks.
HOOKS=(base udev autodetect modconf block filesystems keyboard fsck)

# COMPRESSION
# Use this to compress the initramfs image. By default, gzip compression
# is used. Use 'cat' to create an uncompressed image.
#COMPRESSION="gzip"
#COMPRESSION="bzip2"
#COMPRESSION="lzma"
#COMPRESSION="xz"
#COMPRESSION="lzop"
#COMPRESSION="lz4"

# COMPRESSION_OPTIONS
# Additional options for the compressor
#COMPRESSION_OPTIONS=()

What can I do that this error doesn't appear?

If you need more informations or ouptuts, just tell me!

Thank you very much for your help.

Offline

Board footer

Powered by FluxBB