blob: 1f25be4d0034bdd181e0458eb79b027512fd173f (
plain)
1 Installing KDE 4.6 in Debian
2 ============================
3 :author: Aaron Ball
4 :email: nullspoon@iohq.net
5
6
7
8 Installing KDE on Debian is a pretty simple task. Getting the latest and
9 greatest of KDE (or anything), is another matter especially if you want it from
10 a repository.
11
12 I searched around the interwebs for some time before stumbling upon the
13 http://qt-kde.debian.net/[Debian QT/KDE team site]. As it turns out,
14 there is actually a repo for the latest of KDE, saving all of us quite a
15 bit of time compiling the .deb files for an entire GUI. Thankfully,
16 setup and installation is a breeze (thanks apt-get). First you need to
17 add the repo to your sources.list file. To do this, crack open your
18 favorite editor (mine is vi) and edit the following file
19
20 ----
21 /etc/apt/source.list
22 ----
23
24 Once you're in the file, add the following lines:
25
26 ----
27 deb http://qt-kde.debian.net/debian experimental-snapshots main
28 deb-src http://qt-kde.debian.net/debian experimental-snapshots main
29 ----
30
31 Save your sources.list file and run the following commands:
32
33 ----
34 aptitude install pkg-kde-archive-keyring apt-get update
35 ----
36
37 Finally, we install the latest version of KDE
38
39 ----
40 apt-get install kde
41 ----
42
43 And that's it. Add the repo to your sources.list file, get the repo key,
44 update, and install. Beats the pants off of compiling it yourself, huh
45 (especially when you're doing it on a machine like mine)?
46
47
48 Category:KDE
49 Category:Debian
50 Category:Linux
51
52
53 // vim: set syntax=asciidoc:
|