Marcel Kaiser

Results 66 comments of Marcel Kaiser

What does `tail -20 /var/log/dsbmd.log` say?

This is interesting: *mount_fusefs: failed to exec fuse daemon: No such file or directory* Does `/usr/local/bin/fuse-ext2` exist?

What does `grep ^ext /usr/local/etc/dsbmd.conf` say?

What happens when you execute the command manually as root?: ``` /sbin/mount_fusefs auto /mnt fuse-ext2 -o 'rw+' /dev/da0s1 ```

Sorry, I forgot the second mount point: ``` /sbin/mount_fusefs auto /mnt fuse-ext2 -o 'rw+' /dev/da0s1 /mnt ```

> I've tried but nothing happens. If the command succeeds, there is no message printed on the screen. Have you checked if the device is mounted on `/mnt ` after...

What if you mount it read-only? ``` /sbin/mount_fusefs auto /mnt fuse-ext2 -o 'ro' /dev/da0s1 /mnt ```

> should i enable it manually? This is enabled by default. Make sure `vfs.usermount` is set to `1`. In order to make sure, there is no problem with your storage...

Hi Neel, thank you for the pull request. The packages in *quarterly* still seem to have the *.txz suffix. Could you change the patch so that it works with both,...

Try to install the Nvidia Gl libraries under the chroot (replace `VERSION` (390, 418, 430, 435, 440) accordingly): ``` # chroot /compat/ubuntu /bin/bash -c "apt install -y libnvidia-gl-VERSION" ``` Unfortunately,...