LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 08-10-2006, 08:33 PM   #1
jmw080
LQ Newbie
 
Registered: Aug 2006
Posts: 16

Rep: Reputation: 0
Slackware KDE/GUI?


Im new to linux, so my impression of KDE is that it is a GUI. Now that I finally have slack up and running I was shocked to see that it was complety text based. I have viewed screenshots of Slackware with a GUI and I was wondering how to get one, since it would make it easier then learning hundrends of commands right off the bat.
(I am running a fully installed version of 10.2 so the KDE was installed.)
 
Old 08-10-2006, 08:37 PM   #2
marnold
Member
 
Registered: Dec 2005
Distribution: Slackware64 15.0 Multilib
Posts: 313

Rep: Reputation: 52
Once you log in, type "startx" (without the quotes) and you should have KDE running.

Last edited by marnold; 08-10-2006 at 08:38 PM.
 
Old 08-10-2006, 08:41 PM   #3
jmw080
LQ Newbie
 
Registered: Aug 2006
Posts: 16

Original Poster
Rep: Reputation: 0
Thank You Very Much
 
Old 08-10-2006, 08:44 PM   #4
marnold
Member
 
Registered: Dec 2005
Distribution: Slackware64 15.0 Multilib
Posts: 313

Rep: Reputation: 52
No problem. You may need to edit your xorg.conf file or run xorgsetup if you have problems when X and KDE start running.
 
Old 08-10-2006, 09:04 PM   #5
jmw080
LQ Newbie
 
Registered: Aug 2006
Posts: 16

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by marnold
No problem. You may need to edit your xorg.conf file or run xorgsetup if you have problems when X and KDE start running.
Ok I found that out because I dont have a mouse installed so it gave me acouple errors. One was Cannot initiate core devices, and the other was XIO: Fatal IO error 104... so i kinda figured that I have to do something else. I see there is stuff on how to set the mouse so i will have to read some other posts. then ill try that xorgsetup stuff.
 
Old 08-10-2006, 09:39 PM   #6
Ruhar
Member
 
Registered: Mar 2006
Distribution: Slackware 12.1
Posts: 95

Rep: Reputation: 15
Welcome to Slackware!!
I would use this howto...
http://www.bitbenderforums.com/vb22/...?postid=311808

It is a great intro on how to set things up initially in Slack.

Happy Slacking....
 
Old 08-11-2006, 01:03 AM   #7
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
You did create a normal user account before trying startx, yes? Running as root all the time is a very bad idea.
 
Old 08-11-2006, 09:27 AM   #8
hitest
Guru
 
Registered: Mar 2004
Location: Canada
Distribution: Void, Debian, Slackware
Posts: 7,342

Rep: Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746
Yes, further to what Nylex said, type adduser at the root prompt and set-up a user account. You shouldn't run your unit as root all of the time.

Last edited by hitest; 08-11-2006 at 09:30 AM.
 
Old 08-11-2006, 04:16 PM   #9
jmw080
LQ Newbie
 
Registered: Aug 2006
Posts: 16

Original Poster
Rep: Reputation: 0
I added a user account and I tryed to run startx, but my darn mouse still fails. I tried all kids of protocols, because like i said in my other posts I have a microsoft mouse that can be usb or ps/2. So im still having trouble with it running. I have it plugged into my ps/2 port and the protocol set up as "IMPS/2", but it does not recgonize it. I dont know the protocol for usb though I havent tried it in the usb port yet.
 
Old 08-11-2006, 04:18 PM   #10
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
Does just leaving the protocol setting on "Auto" not work either?
 
Old 08-11-2006, 04:20 PM   #11
jmw080
LQ Newbie
 
Registered: Aug 2006
Posts: 16

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Nylex
Does just leaving the protocol setting on "Auto" not work either?
That was the begining protocol. So I will have to try that again.
 
Old 08-11-2006, 04:35 PM   #12
raska
Member
 
Registered: Aug 2004
Location: Aguascalientes, AGS. Mexico.
Distribution: Slackware 13.0 kernel 2.6.29.6
Posts: 816

Rep: Reputation: 31
Hello jmw080, welcome to Slackware, where the most efficient configuration tool is yourself (the "keyboard - chair interface")
It's really weird about your mouse....

Try this:
-- connect it to the USB port
-- in the /etc/X11/xorg.conf file, in the InputDevice section for the mouse tell it that your mouse device is /dev/input/mice
-- leave the protocol as IMPS/2
-- If you have a wheelbutton and you want it to work, add in the same section
Code:
    Option "ZAxisMapping" "4 5"
That should work
Let us know what happens later

Last edited by raska; 08-11-2006 at 06:05 PM.
 
Old 08-11-2006, 04:46 PM   #13
PingFloyd
Member
 
Registered: Jun 2006
Posts: 94

Rep: Reputation: 16
I remember when I first set up X that I couldn't get the mouse wheel to work. Actually it worked when first configured automatically from Debian's Install. What was kind of messed up is that I ended having to run dpkg-reconfigure xserver-xfree86 to fix my monitor settings. This runs an script that is for configuring your X. One would think it would use to same facility as the main install, but no. So I had messed around with the XF86Config-4 using all sorts of settings for the mouse. None of them would work except for one. The only way my mouse wheel would work is if I used "auto" in the XF86Config-4. Pretty strange since you would think that "auto" is the first one to not work if something isn't going to work.

The nice thing about the Install is that it worked for setting up the mouse automatically. All I had to do was wiggle around the mouse while it probed it. I never could find a way to get it to do that again post-install.
 
Old 08-11-2006, 04:56 PM   #14
ringwraith
Senior Member
 
Registered: Sep 2003
Location: Indiana
Distribution: Slackware 15.0
Posts: 1,272

Rep: Reputation: 65
Did you ever try running xorgsetup, that usually takes care of most people. If it doesn't you might tell us what kind of mouse you have. Don't try the methods in pingfloyd's post.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
KDE gui vs. Gnome GUI Curt6000 Linux - Newbie 11 11-10-2004 01:37 PM
GUI for Slackware btexpress Slackware 10 05-16-2004 11:30 PM
slackware GUI ggrzech Linux - Newbie 1 03-14-2004 12:57 AM
Slackware 9.0 GUI? Gerardoj Linux - Software 11 07-02-2003 01:36 AM
slackware gui? emory7825 Linux - Newbie 3 11-26-2001 03:16 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 09:46 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration