You want to install Gnome as your desktop window manager on OpenBSD?
Simply install gnome-session package using pkg_add tool.
In my previous article, I showed you how to set PKG_PATH to an ftp server nearest to you. It must be set first to install any packages on the fly (directly from an ftp server).
OK lets go ahead install gnome-session using pkg_add:
$ sudo pkg_add gnome-sessionIt will check the dependencies and install them first. Wait for some minutes to all the packages installed successfully.
After gnome-session package installation completed, you have to create/edit .xinitrc file in your home directory and contain only one line ‘exec gnome-session’.
$ echo "exec gnome-session" > ~yourhomedir/.xinitrc
It will make gnome-session as your default window manager.
Run ’startx’ and you will see gnome-session starting.
To run gdm at boot, write these codes below into /etc/rc.local file:
if [ -x /usr/local/sbin/gdm ]; then echo -n ' gdm'; /usr/local/sbin/gdm fi
Incoming search terms for this post:
- openbsd gnome (26)
- openbsd install gnome (13)
- gnome openbsd (8)
- openbsd changing desktop manager boot directly into X (8)
- gnome install openbsd (7)
- openbsd gnome-session (6)
- openbsd gnome install (5)
- install gnome openbsd (5)
- how to install gnome on openbsd (4)
- openbsd window manager (4)
- install gnome on openbsd (4)
- openbsd gnome desktop (4)
- gnome on openbsd (3)
- installing GNOME on OpenBSD (3)
- install window manager openbsd (2)
- install window manager (2)
- GNOME en OpenBSD (2)
- gnome in openbsd (2)
- gnome sur openbsd (2)
- openbsd gnome howto (2)


