Bazzite Instalation

I can’t install Mudsifh in Bazzite at all

It says that those two files are read-only and don’t complete the installation

This is probably a disk mounting issue and your disk is mounted in read-only.

Assuming you aren’t running boot from usb with no persistent partition…

mount | grep ' / ' can show if root is mounted as read only, depending on your config /usr may be a separate mount to confirm findmnt /usr should return nothing if it’s on the same mount as root.

Usually caused by corruption or a failing disk, you can search dsmeg | grep -i error to find out, you can boot from USB and attempt disc repair fsck -f /dev/sdX# if this is the case.

But may be mounted read only on purpose, check /etc/fstab

If there are no disk errors you can try to force a rw remount sudo mount -o remount,rw / if this immediately fails or still falls back to ro then disk errors are likely.

edit

Done a little reading on Bazzite, /usr is mounted ReadOnly by default.
The rest of the install actions in mudfish script completed ok.
you only failed to create:

A desktop shortcut which you can make yourself in your user share applications directory install -m 644 /opt/mudfish/6.3.3/share/mudrun.desktop \ ~/.local/share/applications/ if ~/.local/share/applications doesn’t exit you can just create it mkdir -p ~/.local/share/applications

you may need to correct the Exec path once the desktop file is created
nano ~/.local/share/applications/mudrun.desktop
Make sure Exec=pkexec /opt/mudfish/6.3.3/bin/mudrun
this will ensure it throws an elevation popup when launched and run privileged

If it doesn’t appear immediately refresh the desktop database update-desktop-database ~/.local/share/applications

And a polkit acation which you can add in etc instead
sudo install -m 644 /opt/mudfish/6.3.3/share/net.mudfish.mudrun.policy /etc/polkit-1/actions/

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.