I just finished a new install of Ubuntu Server 18.04.1LTS. I already had a 3-drive BTRFS setup with 15GB of test data. After the install I checked the UUID of the BTRFS drives and it's the same UUID so that makes it easy. Of course the boot drive (64GB Flash Drive) has a new UUID.
I modified the fstab:
Now on boot up, /nas does not mount and puts the server into emergency mode where I have a root prompt #. I can successfully mount /nas by entering this command: sudo mount -o recovery /dev/sda /nas
Any ideas would be appreciated.
I modified the fstab:
Code:
# Customized fstab # This line mounts the Samsung 64GB Flash drive to the root directory / UUID=7d92d528-da4b-11e8-b61c-f46d040f477d / ext4 defaults 0 0 # # This line mounts the NAS to /nas using the BTRFS UUID=7d92d528-da4b-11e8-b61c-f46d040f477d /nas btrfs defaults 0 0 # # This line mounts the zram virtual drives instead of a swap file /dev/zram0 none swap sw 0 0 /dev/zram1 none swap sw 0 0
Any ideas would be appreciated.
Comment