Debian 11 上的 FSTAB 以只读模式挂载驱动器

Debian 11 上的 FSTAB 以只读模式挂载驱动器

我在 Debian 机器上安装了 MergerFS,一切似乎都正常。但是,驱动器最终处于只读模式。我怎样才能解决这个问题?

/etc/fstab


/dev/disk/by-id/ata-ST1000LM014-1EJ164_W770QH4A-part1 /mnt/disk1   ext4 errors=remount-ro 0 0
/dev/disk/by-id/ata-ST4000LM024-2AN17V_WCK4CN7A-part1 /mnt/disk2   ext4 errors=remount-ro 0 0
/mnt/disk* /mnt/storage fuse.mergerfs defaults,nonempty,allow_other,use_ino,cache.files=off,moveonenospc=true,dropcacheonclose=true,minfreespace=200G,fsname=mergerfs 0 0

当我运行以下命令时,只读模式将消失,直到下次重新启动

sudo mount -o remount,rw /dev/sda1 /

相关信息

user@user:~$ ls -lha /mnt/
total 24K
drwxr-xr-x  6 root       root       4.0K Apr  4 08:36 .
drwxr-xr-x 18 root       root       4.0K Apr  4 08:59 ..
drwxr-xr-x 18 root       root       4.0K Apr  4 08:59 disk1
drwxr-xr-x  3 user       user       4.0K Apr  4 08:59 disk2
drwxr-xr-x  2 root       root       4.0K Apr  4 08:33 manualdiskmounttest
drwxr-xr-x 18 root       root       4.0K Apr  4 08:59 storage

相关内容