Skip to content

Techonia.com

News, Tutorials, and How tos about Technology

Archive

Category: OpenBSD

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-session

It 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:

You want to run XWindow (Xorg) rather than command line on OpenBSD. Here are the trick.
It should be also applicable for every system running Xorg as the X server like Linux, FreeBSD, Opensolaris, etc.
continue reading…

Incoming search terms for this post:

You want to install OpenBSD additional packages such as bash, pico, mozilla-firefox and others directly from an ftp server meaning that you do not need to download the packages first and save to your hard disk. In other word, installing the packages on the fly.

It is very easy to do this. We will do this using ‘pkg_add’ tool. One thing you need to know is ‘pkg_add’ will try to search the packages name in the working directory where you type the pkg_add command and also search the dependency of packages that you want to install. If it could not be found, error messages will be prompted. continue reading…

Incoming search terms for this post:

OpenBSD is a famous operating system for security purposes because of its secure by default. It is specially the most secure operating system available on the planet and  “Only two remote holes in the default install, in a heck of a long time!”.

Mainly it is used for firewalls, secure servers and other tasks of securing your networks. However, we can use it as workstation OS like Windows and Linux to do daily tasks in your office or home installed in PC or laptop. continue reading…

Incoming search terms for this post: