Witaj na Forum Linuxiarzy
Zanim zalogujesz się, by pisać na naszym forum, zapoznaj się z kilkoma zasadami savoir-vivre'u w dziale Administracja.
Wiadomości z problemami zamieszczone w wątku "Przywitaj się" oraz wszelkie reklamy na naszym forum będą usuwane.
Cytat: Accura w Lipiec 24, 2025, 10:27:05 PMCo da mi czysty Arch, czego nie da mi CachyOS (notabene też Arch)?
Cytat: linux4ever w Lipiec 24, 2025, 07:27:04 PMTu kilka rozwiązań: https://www.linuxquestions.org/questions/slackware-14/thunar-preferences-advanced-it-looks-like-gvfs-is-not-available-4175709791/ https://superuser.com/questions/228261/how-to-properly-start-gvfs-without-gnome i https://bbs.archlinux.org/viewtopic.php?id=138066Dzięki za odpowiedź. Ten link, który podałeś:
Spróbuj tych rozwiązań.
No i AI podaje:CytatIn Slackware Linux, Xfce's behavior regarding storage device access and permissions is largely managed through user groups. Specifically, the plugdev and power groups are crucial for handling external devices and power management within the Xfce desktop environment. To ensure full functionality, users should be added to these groups.
Here's a breakdown:
plugdev Group:
This group is typically associated with allowing users to mount removable media (like USB drives) and access other external devices.
power Group:
This group is essential for power management features, enabling users to control power settings, suspend/hibernate the system, and manage battery levels (if applicable).
Managing Users and Groups:
To add a user to these groups, use the usermod command. For example, to add user myuser to the plugdev group:
sudo usermod -a -G plugdev myuser
And to add them to the power group:
sudo usermod -a -G power myuser
The -a flag adds the user to the group, while -G specifies the group name. After making these changes, the user needs to log out and log back in (or restart) for the group membership to take effect.
Cytat#!/bin/sha tutaj "wyciąg" z mojego config'u i3. Naprawdę już nie wiem czy coś nie zchrzaniłem w ferworze walki :)
# Start i3
if [ -z "$DESKTOP_SESSION" -a -x /usr/bin/ck-launch-session ]; then
exec ck-launch-session dbus-launch --exit-with-session /usr/bin/i3
else
exec i3
fi
if [ -z "$DBUS_SESSION_BUS_ADDRESS" ] && [ -x /usr/bin/dbus-run-session ]; then
exec dbus-run-session -- $0 "$@"
fi
. /etc/X11/xdm/Xsession
Cytatexec --no-startup-id ibus-autostartDo tych grup jestem przypisany:
exec --no-startup-id /usr/libexec/at-spi-bus-launcher --launch-immediately
exec --no-startup-id /usr/lib64/xfce4/notifyd/xfce4-notifyd
exec --no-startup-id /usr/libexec/gvfsd
exec --no-startup-id /usr/share/dbus-1/services/org.gtk.vfs.Daemon.service
exec --no-startup-id /usr/libexec/pam_kwallet_init
exec --no-startup-id /usr/lib/polkit-1/polkit-agent-helper-1
exec --no-startup-id /usr/libexec/polkit-gnome-authentication-agent-1
#exec --no-startup-id sleep 10 && /usr/bin/lxpolkit &
#exec --no-startup-id sleep 10 & /usr/lib/polkit-1/polkitd
exec --no-startup-id /usr/bin/gnome-keyring-daemon --start --components=secrets
exec --no-startup-id /usr/bin/gnome-keyring-daemon --start --components=ssh
Cytatusers lp wheel audio video cdrom plugdev power netdev
Cytat: CDeB w Lipiec 24, 2025, 07:23:46 PMNie używam slackware, ale wygląda na to że gvfs jest dostępne w repo.Tak, to wiem i mam zainstalowane. Skoro w sesji xcfe thunar działa poprawnie...
Może doinstalowanie rozwiąże problem.
CytatIn Slackware Linux, Xfce's behavior regarding storage device access and permissions is largely managed through user groups. Specifically, the plugdev and power groups are crucial for handling external devices and power management within the Xfce desktop environment. To ensure full functionality, users should be added to these groups.
Here's a breakdown:
plugdev Group:
This group is typically associated with allowing users to mount removable media (like USB drives) and access other external devices.
power Group:
This group is essential for power management features, enabling users to control power settings, suspend/hibernate the system, and manage battery levels (if applicable).
Managing Users and Groups:
To add a user to these groups, use the usermod command. For example, to add user myuser to the plugdev group:
sudo usermod -a -G plugdev myuser
And to add them to the power group:
sudo usermod -a -G power myuser
The -a flag adds the user to the group, while -G specifies the group name. After making these changes, the user needs to log out and log back in (or restart) for the group membership to take effect.