(no commit message)
[ikiwiki.git] / docs / how_to_get_to_the_desktop / index.mdwn
1 # How to get a desktop on DragonFly
2
3 **This topic is wildly out of date for example the command pkg_radd is no longer used, and the pkg install command is used instead. **
4  
5  It is also mostly redundant as it covers the same ground as the "installing and configuring X" topic [in the new handbook, which is located here](/docs/newhandbook/X).  
6
7 [[!toc levels=3 ]]
8
9 ## Prerequisites
10 To get to the desktop you need a working internet connection to download pkgsrc and the packages themselves.
11
12 ## Dealing with pkgsrc 
13
14 ### Installing pkgsrc
15 The basic pkgsrc tools are already provided with every DragonFly default installation, but you still have to download the pkgsrc tree to build and install packages.
16
17 First choose a mirror next to you which provides a git repo containing the pkgsrc tree, you can find them on the [DragonFly mirrors page](http://www.dragonflybsd.org/mirrors/). Next copy the mirrors adress into the Makefile contained in /usr.
18
19 Now execute as root
20
21     # cd /usr && make pkgsrc-create
22
23 to initally create the pkgsrc tree.
24
25 ### Searching a package
26 Since there are many different packages in the pkgsrc tree you can use a small tool to find the one you are looking for in a short time. For example if you are looking for the ruby package just do
27
28     # pkg_search ruby
29
30 and you will get a list of packages containing ruby in their name. If you want to install the ruby-1.9.2pl0 package now, just do
31
32     # pkg_search -v ruby-1.9.2pl0
33
34 and you will get the path leading to the package.
35
36 ### Installing a package
37 You got two possibilities to install a package. The first one is to install it from source and the second one is to install prebuild binaries. Depending on your cpu and the size of the package its faster installing binaries, but if you want to change some build options you have to install it by source.
38 If you want to install binaries you only have to use the pkg_radd application. For example to install the xfce4 package just do:
39
40     # pkg_radd xfce4
41
42 If you want to install something by source you have to change into the packages directory contained in the pkgsrc tree and execute bmake install clean:
43
44     # cd /usr/pkgsrc/security/openssh && bmake install clean
45
46 If you build a package by source you can also change some build options if supported by the package.
47
48     # cd /usr/pkgsrc/security/openssh && bmake show-options
49
50 You will get a list of supported options. To change them install the package by:
51
52     # bmake PKG_OPTIONS.<package_name>="-option1 option2" install clean
53
54
55 ### Removing a package
56 If you don't need a package anymore and you want to remove it just change into the packages directory and do:
57
58     # bmake deinstall
59
60
61 ### Updating packages
62 From time to time you should update your packages, since there will be newer versions with bugfixes or new functionality. There are several methods to update packages but the best one is to use pkg_rolling-replace. You can install it with pkgsrc. After you've done that you'll only have to:
63
64     # cd /usr && make pkgsrc-update
65     # pkg_rolling-replace -u
66
67 ## The X Window System
68 ### Installing the Server
69 The installation of the X Window System contains a few steps. We will start with the most basic one: Installing the X-Server.
70 To do so you have to execute as root
71
72     # cd /usr/pkgsrc/x11/modular-xorg-server && bmake install clean
73
74 or if you want to install it as a binary
75
76     # pkg_radd modular-xorg-server
77
78 ### Installing appropriate drivers
79 You now need some input drivers and a video driver for your video card.
80 If you want to install all input and video drivers so you can test them out install the modular-xorg-drivers package
81
82     # cd /usr/pkgsrc/meta-pkgs/modular-xorg-drivers && bmake install clean
83
84 or if you want to install them as binaries
85
86     # pkg_radd modular-xorg-drivers
87
88 If you know which drivers you need install them on your own needs. They can be found in /usr/pkgsrc/x11/ and are named xf86-<video or input>-<driver name>
89
90 ### Other importan X related packages
91 Now we will install other important packages for X. We will need some additional libraries
92
93     # cd /usr/pkgsrc/meta-pkgs/modular-xorg-libs && bmake install clean
94
95 or if you want to install them as binaries
96
97     # pkg_radd modular-xorg-libs
98
99 Next we'll need some fonts
100
101     # cd /usr/pkgsrc/meta-pkgs/modular-xorg-fonts && bmake install clean
102
103 or if you want to install them as binaries
104
105     # pkg_radd modular-xorg-fonts
106
107 Last package we need contains some useful applications like xterm and startx
108
109     # cd /usr/pkgsrc/meta-pkgs/modular-xorg-apps && bmake install clean
110
111 or if you want to install them as binaries
112
113     # pkg_radd modular-xorg-apps
114
115 ### Configuring X
116 Since we have installed all necessary packages now we have to configure X so it works like we want it. First execute as root
117
118     # Xorg -configure
119     # cp /root/xorg.conf.new /etc/X11/xorg.conf
120
121 Now we have a basic configuration file for X.
122 As normal user now create a file named ~/.xinitrc and write exec xterm in it. Now make it executable
123
124     # chmod +x ~/.xinitrc
125
126 Now you can try to start the X server by doing
127
128     # startx
129
130 as normal user.
131 If everything works well you should see a white terminal and should be able to mover your mouse. Click into the terminal and test you keyboard layout. Now type exit into the terminal and you will return to TTY. If everything worked well you can continue with installing a desktop environment, if not you have to manually edit /etc/X11/xorg.conf . Also check the X.org documentation and the DragonFly handbook, where you may find a solution to your problem.
132
133 ## Installing a Desktop Environment
134
135 This part will explain how to install the desktop environments Mate, KDE and Xfce, if you prefer GNOME or a standalone windowmanager you have to read other guides or documentation.
136
137 ### Mate
138 To install Mate simply install the mate meta-packages as root
139
140     # pkg install mate
141
142 Edit /etc/rc.conf
143
144     dbus_enable="YES"
145     hald_enable="YES"
146
147 Edit .xinitrc
148
149      exec mate-session
150
151 ### KDE
152 KDE stands for K Desktop Environment, its a modern desktop environment, based on Nokia's QT-Framework, with many nice applications. If your computer has less than 1Gb RAM you should better install Xfce4 described later in this guide.
153 Since the KDE and QT packages are pretty huge you can save much time when using binary packages.
154 There are 2 different KDE meta-packages available: KDE3 and KDE4 . KDE3 is the older, but more stable release while KDE4 has many new features but also new bugs. So it's on you to decide which one you want to install.
155 For KDE3 simply do as root
156
157     # pkg_radd kde3
158
159 For KDE4
160
161     # pkg_radd kde4
162
163 Now that you have installed KDE we still need to start it.
164 As user edit your ~/.xinitrc and comment the exec xterm part out and add exec startkde.
165 Now start it with executing startx as user. If everything works well you should see a standard KDE desktop, you now can explore ist or read documentation to see what you can do with it.
166
167 Some users may prefer a graphical log in, KDE provides it's own display manager for them: kdm. It looks better than the X display manager xdm and provides more options. To start it at boot time simply change your ttyv8 line in /etc/ttys to ttyv8 “/usr/pkg/bin/kdm -nodaemon” xterm on secure .
168
169 ### Xfce4
170 Xfce is a lightweight desktop environment using the GTK+ toolkit (like GNOME) it has less applications than KDE but if your computer isn't that good it's the better choice. 
171 To install Xfce4 simply install the xfce4 and xfce4- meta-packages as root
172
173     # pkg_radd xfce4 && pkg_radd xfce4-extras
174 or if you want to compile them yourself
175
176     # cd /usr/pkgsrc/meta-pkgs/xfce4 && bmake install clean
177     # cd /usr/pkgsrc/meta-pkgs/xfce4-extras && bmake install clean
178
179 To test if it works edit your ~/.xinitrc as user, comment the exec xterm part out and add exec startxfce4.
180 Since Xfce doesnt have its own display manager for a graphical login so you have to install one yourself. You could either install xdm, kdm or gdm. Gdm is the GNOME display manager and also uses the GTK+ toolkit so it's a good choice for Xfce, too.
181 Install gdm by executing
182
183     # pkg_radd gdm
184
185 or
186
187     # cd /usr/pkgsrc/x11/gdm && bmake install
188
189 To start it at boot time you can simply add gdm_enable=”YES” to your /etc/rc.conf 
190
191 # How to continue?
192 Now after you installed the basic desktop you may wish to add additional applications such as a browser like firefox:
193
194     # pkg_radd firefox
195
196 You are fully free what to do now and pkgsrc offers a lot of desktop packages you could install. Have fun with your desktop!