You are not logged in.
Pages: 1
Ive installed arch linux before couple of days.
Ive installed xorg and gnome (kde although but its a different problem)
i can enter the xorg and to the xterm in it but when i trying to start gnome(gnome-session)
i get this error
gnome-session
dbus-update-activation-environment: error: unable to connect to D-Bus: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.** (process:1095): WARNING **: Could not make bus activated clients aware of XDG_CURRENT_DESKTOP=GNOME environment variable: The connection is closed
Terminated
what can I do?
another things to post here?
Last edited by sdfanm (2016-08-22 14:08:15)
Offline
You can't start gnome from within X. Instead, you need to use .xinitrc or some other desktop manager. See https://wiki.archlinux.org/index.php/GN … ting_GNOME for more information.
Offline
You can't start gnome from within X. Instead, you need to use .xinitrc or some other desktop manager. See https://wiki.archlinux.org/index.php/GN … ting_GNOME for more information.
I've tried it before I tried to start it from within the X.
I've added
exec gnome-session
to the xinitrc file
Offline
Why not use a greeter (lxdm or gdm)?
Did you read: https://wiki.archlinux.org/index.php/GN … ting_GNOME
CPU-optimized Linux-ck packages @ Repo-ck • AUR packages • Zsh and other configs
Offline
Why not use a greeter (lxdm or gdm)?
Did you read: https://wiki.archlinux.org/index.php/GN … ting_GNOME
after adding this
export XDG_CURRENT_DESKTOP=GNOME-Classic:GNOME
export GNOME_SHELL_SESSION_MODE=classic
exec gnome-session --session=gnome-classic
i get this informational message
aiglx suspending aiglx clients for vt switch
this is all my xinitrc file
#!/bin/sh
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap# merge in defaults and keymaps
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fiif [ -f "$userresources" ]; then
xrdb -merge "$userresources"
fi
if [ -f "$usermodmap" ]; then
xmodmap "$usermodmap"
fi# start some nice programs
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi#xclock -geometry 50x50-1+1 &
#xterm -geometry 80x50+494+51 &
#xterm -geometry 80x20+494-0 &
exec twm
export XDG_CURRENT_DESKTOP=GNOME-Classic:GNOME
export GNOME_SHELL_SESSION_MODE=classic
exec gnome-session --session=gnome-classic
Offline
Read the xinitrc page: yours is wrong https://wiki.archlinux.org/index.php/Xinitrc
And please use code, not quote, tags when pasting to the boards.
Offline
Read the xinitrc page: yours is wrong https://wiki.archlinux.org/index.php/Xinitrc
And please use code, not quote, tags when pasting to the boards.
you're right the problem was with the
exec twm
Offline
Pages: 1