LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-29-2005, 09:54 PM   #1
CommReteris
LQ Newbie
 
Registered: Sep 2005
Distribution: Debian, Fedora, Slackware, Red hat, DSL, Knoppix, Gnoppix, Phlak, Mepis, Ubuntu
Posts: 8

Rep: Reputation: 0
Problem with X on Debian 3.1 Sarge on a Dell Inspiron 3700


I just installed Debian on a Dell Inspiron 3700 with a celeron 466 and a ATI rage mobility 8M and 64M RAM.

I did not install KDE because i don't believe the laptop is fast enough to handle it. Instead i installed X and Gnome.

My problem is that X wont load - I don't Have Kernal 2.6... i'm guessing thats because i probably deselected it when i was choosing packets... i don;t think i ment to though.

It tells me it's likely it's not set up correctly. I view the X server output and it gives me this:

fatal server error: failed to initialize core devices.

before that it says that it can not open input device and PreInit failed for input device "configured mouse"
no core pointer.

i assume that this has something to do with my mouse setup?

you tell me, i'm the noob...
 
Old 09-29-2005, 10:28 PM   #2
microsoft/linux
Senior Member
 
Registered: May 2004
Location: Sebec, ME, USA
Distribution: Debian Etch, Windows XP Home, FreeBSD
Posts: 1,445
Blog Entries: 9

Rep: Reputation: 48
look in /etc/X11/XFree86-4(or something similar). Look for the section that starts w/
Code:
InputDevice     "configured mouse"
Somewhere in there before you hit
Code:
EndSection
put in
Code:
Option     CorePointer
That shoud fix it. NOTE: You want to do the above as root

Last edited by microsoft/linux; 09-29-2005 at 10:29 PM.
 
Old 09-30-2005, 11:02 PM   #3
CommReteris
LQ Newbie
 
Registered: Sep 2005
Distribution: Debian, Fedora, Slackware, Red hat, DSL, Knoppix, Gnoppix, Phlak, Mepis, Ubuntu
Posts: 8

Original Poster
Rep: Reputation: 0
And just how would i go about doing that?

i'm sorry, i just don't know which commands/proceedures to go about finding and editing the directory (or file) which you named below,

i can find something similar to /etc/X11/XF86Config-4 or /etc/X11/X, but i can't get it to display the code or contents of either.

you might want to just explain as if you were explaining to a toddler, i'm really that incompetent. At least with Linux.

i really am a noob, i know. Not saying anything different.
 
Old 09-30-2005, 11:12 PM   #4
microsoft/linux
Senior Member
 
Registered: May 2004
Location: Sebec, ME, USA
Distribution: Debian Etch, Windows XP Home, FreeBSD
Posts: 1,445
Blog Entries: 9

Rep: Reputation: 48
first of all, you need a text editor. Most people use either vi(m) or emacs. I think debian installs vi as it's primary editor(don't quote me on that)
as root, do 'apt-get install vim'. the type 'cd /etc/X11'. The run vi XFree86-4. This will open up the text file XFree-4, which is used for the configuration of the Xfree86 server(don't worry about that right now). Once you see the text, then try the stuff I mentioned above. Also have a look at http://www.linuxquestions.org/questi...hreadid=224547
it will give you some other information that I found very useful. Hope This helps!
 
Old 09-30-2005, 11:37 PM   #5
CommReteris
LQ Newbie
 
Registered: Sep 2005
Distribution: Debian, Fedora, Slackware, Red hat, DSL, Knoppix, Gnoppix, Phlak, Mepis, Ubuntu
Posts: 8

Original Poster
Rep: Reputation: 0
seems like the code

Option CorePointer

is already there.
 
Old 09-30-2005, 11:43 PM   #6
microsoft/linux
Senior Member
 
Registered: May 2004
Location: Sebec, ME, USA
Distribution: Debian Etch, Windows XP Home, FreeBSD
Posts: 1,445
Blog Entries: 9

Rep: Reputation: 48
Option CorePointer is already under "configured mouse"? uuummmm.......check to see that the section before "configured mouse" has EndSection at the end. Posting your Xfree86-4 would also be helpful.
 
Old 09-30-2005, 11:54 PM   #7
CommReteris
LQ Newbie
 
Registered: Sep 2005
Distribution: Debian, Fedora, Slackware, Red hat, DSL, Knoppix, Gnoppix, Phlak, Mepis, Ubuntu
Posts: 8

Original Poster
Rep: Reputation: 0
okay it's got an Endsection. And btw, the file is called XF86Config-4 i believe. also, the computer i have running debian is not networked so it would be a bit difficult to post the file. i can type up some parts however

Section "InputDevice"
Identifyer "Generic Keyboard"
Driver "keyboard"
Option "CoreKeyboard"
Option "XkbRules" "xfree86"
Option "XkbModel" "pc104"
Option "XkbLayout" "us"
EndSection

Section "Input Device"
Identifyer "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection
 
Old 10-01-2005, 12:01 AM   #8
microsoft/linux
Senior Member
 
Registered: May 2004
Location: Sebec, ME, USA
Distribution: Debian Etch, Windows XP Home, FreeBSD
Posts: 1,445
Blog Entries: 9

Rep: Reputation: 48
near the bottom, there is a section called ServerLayout, is configured mouse listed under there?
 
Old 10-01-2005, 12:04 AM   #9
CommReteris
LQ Newbie
 
Registered: Sep 2005
Distribution: Debian, Fedora, Slackware, Red hat, DSL, Knoppix, Gnoppix, Phlak, Mepis, Ubuntu
Posts: 8

Original Poster
Rep: Reputation: 0
yes


it's listed as

InputDevice "Configured Mouse"
EndSection
 
Old 10-01-2005, 12:15 AM   #10
microsoft/linux
Senior Member
 
Registered: May 2004
Location: Sebec, ME, USA
Distribution: Debian Etch, Windows XP Home, FreeBSD
Posts: 1,445
Blog Entries: 9

Rep: Reputation: 48
can you post the exact error?
 
Old 10-01-2005, 12:35 AM   #11
CommReteris
LQ Newbie
 
Registered: Sep 2005
Distribution: Debian, Fedora, Slackware, Red hat, DSL, Knoppix, Gnoppix, Phlak, Mepis, Ubuntu
Posts: 8

Original Poster
Rep: Reputation: 0
yeah

well it starts out by displaying an obviously messed up atempt at graphics, and then jumps back to text, and tries again. Then it gives me this error scree:

<I cannot start the X server (your graphical interface). It is likely that it is not seyt up correctly. Would you like to view the X server output to diagnose the problem>

<<yes>>

"XFree Version 4.3.0.1 "

Module Loader Present
OS kernal: Linux version 2.4.27-2-386
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command lin, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI), Not implemented, (??) Unknown.
(==) log file: "/var/log/XFree86.0.log", Time Sat OCt 1 01:21:36 2005
(==) using config file" '/etc/X11/XFConfig-4"
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a.m_debug_cli[.o":
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a.m_debug_norm.o"
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a.m_debug_xform.o"
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a.m_debug_vertex.o
Skipping "/usr/X11R6/lib/modules/fonts/libspeedo.a:spencode.o": No symb
(EE) xf86OpenSerial: Cannot open device /dev/input.mice
No such Device
(EE) Configured Mouse: connot open input device
(EE) PreInit failed for input device "Configured Mouse"
No core pointer

Fatal server error:
failed to initialize core devices
 
Old 10-02-2005, 11:22 AM   #12
CommReteris
LQ Newbie
 
Registered: Sep 2005
Distribution: Debian, Fedora, Slackware, Red hat, DSL, Knoppix, Gnoppix, Phlak, Mepis, Ubuntu
Posts: 8

Original Poster
Rep: Reputation: 0
bump
 
Old 10-02-2005, 01:41 PM   #13
microsoft/linux
Senior Member
 
Registered: May 2004
Location: Sebec, ME, USA
Distribution: Debian Etch, Windows XP Home, FreeBSD
Posts: 1,445
Blog Entries: 9

Rep: Reputation: 48
check to make sure that /dev/input/mice is actually there. Then check the permissions of it. Other than that... I don't know.
 
Old 10-02-2005, 07:10 PM   #14
CommReteris
LQ Newbie
 
Registered: Sep 2005
Distribution: Debian, Fedora, Slackware, Red hat, DSL, Knoppix, Gnoppix, Phlak, Mepis, Ubuntu
Posts: 8

Original Poster
Rep: Reputation: 0
no i don't believe it's there, and if it is it is a blank file. What should i put in it/do?
 
Old 10-02-2005, 08:25 PM   #15
microsoft/linux
Senior Member
 
Registered: May 2004
Location: Sebec, ME, USA
Distribution: Debian Etch, Windows XP Home, FreeBSD
Posts: 1,445
Blog Entries: 9

Rep: Reputation: 48
everything in /dev is a device file. There will be nothing in it. However, if it's not there that's your problem. check, and then get back to me.
 
  


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
Dell Inspiron 9300 + Debian indiglopulse Linux - Hardware 8 03-25-2006 07:51 AM
debian into dell inspiron 8000 kermit Linux - Laptop and Netbook 5 11-26-2004 09:29 AM
Debian with gforce 2 in dell inspiron 2650 Torrasket Linux - Laptop and Netbook 1 10-19-2004 10:07 PM
debian/xserver problems/dell inspiron 5100 tristin Linux - Laptop and Netbook 7 04-25-2004 07:32 PM
Debian (Sarge), X Server and the DELL Inspiron 1100 polyspaston Linux - Laptop and Netbook 1 01-13-2004 06:41 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 07:15 AM.

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