You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We've found that user aniconda installations can negatively affect the way desktops start up.
The issue is aniconda setting the PATH in a users ~/.bashrc such that xfce-session (or similar desktop libraries) use it's dbus-session instead of the system installed version. When this happens, there must be some compatibility issue because the session fails to start, but only gives a generic message like Failed to connect to socket /tmp/dbus-abc123.
So I think an easy enough solution is to modify this line
to PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$PATH xfce-session
to ensure that a system installed binary will be the first to be found.
The text was updated successfully, but these errors were encountered:
We've found that user aniconda installations can negatively affect the way desktops start up.
The issue is aniconda setting the
PATH
in a users~/.bashrc
such that xfce-session (or similar desktop libraries) use it's dbus-session instead of the system installed version. When this happens, there must be some compatibility issue because the session fails to start, but only gives a generic message likeFailed to connect to socket /tmp/dbus-abc123
.So I think an easy enough solution is to modify this line
ondemand/apps/bc_desktop/template/desktops/xfce.sh
Line 40 in 583a955
to
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$PATH xfce-session
to ensure that a system installed binary will be the first to be found.
The text was updated successfully, but these errors were encountered: