I have a pc with 3 disks:
- HDD1: /dev/sdb2 <-> mnt/disk1- HDD2: /dev/sda2 <-> mnt/disk2- SSD2: /dev/nvme0n1p2 <-> mnt/ssd2
The ssd is the one containing the homes.
On boot I get the You are in emergency mode. After logging in, type "journalctl -xb..."
If I run that and check the output, I can see:
systemd[1]: Failed to mount /mnt/disk1
there are other failures, such as:
nvme1n1: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/nvme1n1' failed with exit code 1nvme0n1: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/nvme0n1' failed with exit code 1sda: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/sda' failed with exit code 1sdb: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/sdb' failed with exit code 1nvme1n1p2: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/nvme1n1p2' failed with exit code 1nvme0n1p1: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/nvme0n1p1' failed with exit code 1
Any ideas?
My /etc/fstab
looks like this:
UUID=... / ext4 errors=remount-ro 0 1UUID=... /boot/efi vfat umask=0077 0 1/swapfile none swap sw 0 0/dev/sdb2 mnt/disk1 ext4 defaults 0 0
should I comment out the last line, reboot and hope for the best?