Sorry for the late reply. I have been away from my computer for a few days. Today, I tried a fresh install and the problem still persists. The exact error that I get is:
mount: /media/nvme: fsconfig system call failed: No such file or directory. dmesg(1) may have more information after failed mount system call.
I also get this same error for my SSD drive.
Here is the output of lsblk -f
:
NAME FSTYPE FSVER LABEL UUID FSAVAIL FSUSE% MOUNTPOINTS
sda
└─sda1 btrfs SSD e2e56c0a-cbb7-485e-852a-decc537b4d9a
sdb
├─sdb1 vfat FAT32 E48A-A118 1.8G 12% /boot
└─sdb2 btrfs 0d64e824-cdfd-4a10-93b4-d8207f42aa6e 215.5G 6% /var/tmp
/var/log
/var/cache
/home
/root
/srv
/
sdc
├─sdc1
└─sdc2 exfat 1.0 External 66CE-59E6
zram0 [SWAP]
nvme0n1
└─nvme0n1p1 btrfs NVME 59f39742-95a0-4e77-9e05-67d5c15e9746
Here is my fstab:
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a device; this may
# be used with UUID= as a more robust way to name devices that works even if
# disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=E48A-A118 /boot vfat defaults 0 2
UUID=0d64e824-cdfd-4a10-93b4-d8207f42aa6e / btrfs subvol=/@,defaults,noatime,compress=zstd,space_cache=v2,commit=120 0 0
UUID=0d64e824-cdfd-4a10-93b4-d8207f42aa6e /home btrfs subvol=/@home,defaults,noatime,compress=zstd,space_cache=v2,commit=120 0 0
UUID=0d64e824-cdfd-4a10-93b4-d8207f42aa6e /root btrfs subvol=/@root,defaults,noatime,compress=zstd,space_cache=v2,commit=120 0 0
UUID=0d64e824-cdfd-4a10-93b4-d8207f42aa6e /srv btrfs subvol=/@srv,defaults,noatime,compress=zstd,space_cache=v2,commit=120 0 0
UUID=0d64e824-cdfd-4a10-93b4-d8207f42aa6e /var/cache btrfs subvol=/@cache,defaults,noatime,compress=zstd,space_cache=v2,commit=120 0 0
UUID=0d64e824-cdfd-4a10-93b4-d8207f42aa6e /var/tmp btrfs subvol=/@tmp,defaults,noatime,compress=zstd,space_cache=v2,commit=120 0 0
UUID=0d64e824-cdfd-4a10-93b4-d8207f42aa6e /var/log btrfs subvol=/@log,defaults,noatime,compress=zstd,space_cache=v2,commit=120 0 0
tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0
# Additional Drives
UUID=59f39742-95a0-4e77-9e05-67d5c15e9746 /media/nvme btrfs subvol=/@nvme,defaults,noatime,compress=zstd,space_cache=v2,commit=120 0 0
UUID=e2e56c0a-cbb7-485e-852a-decc537b4d9a /media/ssd btrfs subvol=/@ssd,defaults,noatime,compress=zstd,space_cache=v2,commit=120 0 0
Before I made the fstab edits, I created the /media/nvme
and /media/ssd
directories, and made sure that my user was set as the owner of those directories.