StudyBSD

Episode 001 - Installing FreeBSDbuilding a full desktop environment


In this episode, Allan walks you through installing FreeBSD and setting up a full KDE desktop environment with a graphical log on screen. Learn about how FreeBSD lays out your disk differently, and how quickly you can install the OS.

Full Linux Action Show Episode

Show Notes:

Configuring X and KDE

Once you have finished the installation and login as your root user, you can now configure X and KDE.

  1. Edit the file /etc/rc.conf (this file is the central configuration file for all of FreeBSD) hald_enable="YES"
    dbus_enable="YES"
    These two services that you are enabling and required for KDE to function properly. Without them, your mouse and keyboard will likely not work.
  2. Generate an Xorg config file. Although X can work without one, we will generate some sane defaults that you will be able to change later. Execute the following commands: Xorg -configure
    cp /root/xorg.conf.new /etc/X11/xorg.conf
  3. Finally, we need to enable the KDE Display Manager (Graphical Login Screen).
    Now we need to edit the file /etc/ttys (this file configures your virtual consoles)
    Replace the line: ttyv8 "/usr/local/bin/xdm -nodaemon" xterm off secure
    With this line: ttyv8 "/usr/local/kde4/bin/kdm -nodaemon" xterm on secure

By:
blog comments powered by Disqus

Page Generated in 347ms