You are not logged in.

#1 2009-04-20 02:48:01

mojo1865
Member
Registered: 2009-04-20
Posts: 3

Total Newbie...help! start KDE?

Maybe I shouldn't be messing with Arch/KDE/etc., but I'm just trying to learn here!  I installed Arch, and used pacman to install KDE 4.2.  All I know how to do is log into root.....how do I start KDE?!?  I tried startkde, to no avail.  I really don't know much of anything about the Unix command line....ugh!

Thanks!

Offline

#2 2009-04-20 02:52:32

Inxsible
Forum Fellow
From: Chicago
Registered: 2008-06-09
Posts: 9,183

Re: Total Newbie...help! start KDE?

mojo1865 wrote:

Maybe I shouldn't be messing with Arch/KDE/etc., but I'm just trying to learn here!  I installed Arch, and used pacman to install KDE 4.2.  All I know how to do is log into root.....how do I start KDE?!?  I tried startkde, to no avail.  I really don't know much of anything about the Unix command line....ugh!

Thanks!

you need to tell us where exactly you are in the installation process. Have you installed Xorg yet ? KDE or any other WM/DE for that matter will not start without X.

Also, how are you trying to start KDE - using KDM ? you said startkde - which indicates via .xinitrc.


Forum Rules

There's no such thing as a stupid question, but there sure are a lot of inquisitive idiots !

Offline

#3 2009-04-20 02:55:55

mojo1865
Member
Registered: 2009-04-20
Posts: 3

Re: Total Newbie...help! start KDE?

Wow....see, I knew I'm pretty lost here!  I haven't installed anything except KDE, and I got the "startkde" idea from the KDE help files on their web site.

Offline

#4 2009-04-20 03:12:04

mojo1865
Member
Registered: 2009-04-20
Posts: 3

Re: Total Newbie...help! start KDE?

Thanks Inxsible!  ....got KDE to start at least....now I'll start working on getting it working right!

Offline

#5 2009-04-20 03:17:02

Inxsible
Forum Fellow
From: Chicago
Registered: 2008-06-09
Posts: 9,183

Re: Total Newbie...help! start KDE?

mojo1865 wrote:

Thanks Inxsible!  ....got KDE to start at least....now I'll start working on getting it working right!

Good Luck !!

Oh and welcome to Arch and the forums !! smile


Forum Rules

There's no such thing as a stupid question, but there sure are a lot of inquisitive idiots !

Offline

#6 2009-04-20 03:43:29

sand_man
Member
From: Australia
Registered: 2008-06-10
Posts: 2,164

Re: Total Newbie...help! start KDE?

I hope you didn't figure out how to run it as root... :s


neutral

Offline

#7 2009-04-20 05:22:57

decaren
Member
Registered: 2009-04-17
Posts: 24

Re: Total Newbie...help! start KDE?

Use the beginner's guide in the wiki.  It's very well written and explains pretty much everything.

Offline

#8 2009-04-20 07:02:45

Llama
Banned
From: St.-Petersburg, Russia
Registered: 2008-03-03
Posts: 1,379

Re: Total Newbie...help! start KDE?

decaren wrote:

Use the beginner's guide in the wiki.  It's very well written and explains pretty much everything.

You'd better big_smile ... Here, in case you missed it.

Welcome aboard!

Last edited by Llama (2009-04-20 07:03:08)

Offline

#9 2009-04-20 07:51:01

rzodkiewka
Member
Registered: 2009-04-19
Posts: 41

Re: Total Newbie...help! start KDE?

Begginer's Guide is nice and useful but with new xorg some parts should be rewritten.
E.g. you have only

Xorg -configure

tool to make xorg.conf file and it does not always work (for me it didn't). However, if you first add hal to your daemons in /etc/rc.conf, xserver should start with no xorg.conf at all.
I do not know if you need special keyboard layout (gb, pl, se or whatever).
Adding it without xorg.conf is possible but I didn't find any howto.
What worked on my laptop (thanks to rusty99):
Created /etc/hal/fdi/policy/10-keymap.fdi file:

<?xml version="1.0" encoding="ISO-8859-1"?> 
<deviceinfo version="0.2">
  <device>
    <match key="info.capabilities" contains="input.keymap">
      <append key="info.callouts.add" type="strlist">hal-setup-keymap</append>
    </match>

    <match key="info.capabilities" contains="input.keys">
      <merge key="input.xkb.rules" type="string">base</merge>

    
      <merge key="input.xkb.model" type="string">keyboard</merge>
      <match key="/org/freedesktop/Hal/devices/computer:system.kernel.name" string="Linux">
        <merge key="input.xkb.model" type="string">evdev</merge>
      </match>

      <merge key="input.xkb.layout" type="string">pl</merge>
      <merge key="input.xkb.variant" type="string">qwerty</merge>

    </match>
  </device>
</deviceinfo>

added

setxkbmap pl

to my ~/.xinitrc file before starting window manager, in your case before

exec startkde

If you uncomment exec startkde in this file, you should start kde with command

startx

or

xinit

Offline

Board footer

Powered by FluxBB