clearlinux / distribution

Placeholder repository to allow filing of general bugs/issues/etc against the Clear Linux OS for Intel Architecture linux distribution
522 stars 29 forks source link

Enable FUSE by default #273

Open probonopd opened 5 years ago

probonopd commented 5 years ago

Is your feature request related to a problem? Please describe. I'm always frustrated when FUSE does not work out of the box, at least in a full desktop installation.

Describe the solution you'd like A clear and concise description of what you want to happen.

Describe alternatives you've considered A manual workaround:

sudo su
mkdir -p /etc/modules-load.d/
echo "fuse" > /etc/modules-load.d/fuse.conf
reboot

Additional context Besides other use cases, this would allow third-party applications packaged in AppImage format to run out of the box on Clear Linux OS.

Reference: https://github.com/AppImage/appimaged/issues/25

ahkok commented 5 years ago

fuse is loaded by default. This happens because of the debuginfo mounts clearlinux has. Therefore, you do not need to do the above module loading - it happens already.

probonopd commented 5 years ago

fuse is loaded by default. This happens because of the debuginfo mounts clearlinux has. Therefore, you do not need to do the above module loading - it happens already.

Is this a very recent change? I am asking because I am pretty sure it did not work for me straight out of the box. By deleting /etc and /var I should be able to reset the system to a pristine state and retry?

probonopd commented 5 years ago

Just did:

user@host ~ $ sudo rm /etc/modules-load.d/fuse.conf 
user@host ~ $ reboot

The result:

user@host ~ $ cat /etc/os-release 
NAME="Clear Linux OS"
VERSION=1
ID=clear-linux-os
ID_LIKE=clear-linux-os
VERSION_ID=26220
PRETTY_NAME="Clear Linux OS"
ANSI_COLOR="1;35"
HOME_URL="https://clearlinux.org"
SUPPORT_URL="https://clearlinux.org"
BUG_REPORT_URL="mailto:dev@lists.clearlinux.org"
PRIVACY_POLICY_URL="http://www.intel.com/privacy"

user@host ~ $ sudo swupd bundle-list
bootloader
cryptography
darktable
desktop
desktop-apps
desktop-assets
desktop-autostart
desktop-gnomelibs
desktop-locales
editors
emacs
ethtool
iproute2
joe
kernel-native
libX11client
network-basic
openssh-server
openssl
os-core
os-core-update
os-utils-gui
p11-kit
perl-basic
python3-basic
sudo
sysadmin-basic
thunderbird
vim
which
wpa_supplicant
x11-server
xemacs
xfce4-desktop
zinabtanha commented 6 months ago