Find the answer to your Linux question:
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 19
I just built a new computer and intented to install debian on it. I have installed it using the minimal installation cd and have used apt get to install kde ...
  1. #1
    Just Joined!
    Join Date
    Oct 2005
    Posts
    18

    problem installing debian distro-GUI?

    I just built a new computer and intented to install debian on it.
    I have installed it using the minimal installation cd and have used apt get to install kde (apt-get install kde) and the x window system(apt-get install x-window-system). My problem is I can't get a gui to show up. If anyone knows how to start the GUI, I would gladly appreciate it.

  2. #2
    Linux Guru techieMoe's Avatar
    Join Date
    Aug 2004
    Location
    Texas
    Posts
    9,496
    Do you get errors when you type startx at the command prompt? If so, what errors?
    Registered Linux user #270181
    TechieMoe's Tech Rants

  3. #3
    Linux Guru budman7's Avatar
    Join Date
    Oct 2004
    Location
    Knee deep in Grand Rapids, Michigan
    Posts
    3,242
    Have you tried "startx"?
    If so, do you get any errors?

    It is possible you may have to create a .xinitrc file.

    su into root
    nano .xinitrc
    put one line in to this file

    exec startkde

    Hit Ctrl + x to quit and save.
    Type "exit" to get back to your normal user, and then try "startx" again.
    How to know if you are a geek.
    when you respond to "get a life!" with "what's the URL?"
    - Birger

    New users read The FAQ

  4. #4
    Just Joined!
    Join Date
    Oct 2005
    Posts
    18
    Yeah, I tried startx
    result:
    XI0: fatal IO error 104 (Connection reset by peer) on X server ":0.0"
    after 0 requests (0 known processed) with 0 events remaining.

  5. #5
    Linux Guru bryansmith's Avatar
    Join Date
    Nov 2004
    Location
    /Ontario/Canada
    Posts
    2,621
    Are you trying to run it as root? Have you configured X with xorgconfig?

    Bryan
    Looking for a distro? Look here.
    "There can be no doubt that all our knowledge begins with experience." - Immanuel Kant (Critique of Pure Reason)
    Queen's University - Arts and Science 2008 (Sociology)
    Registered Linux User #386147.

  6. #6
    Just Joined!
    Join Date
    Oct 2005
    Posts
    18
    budman: after trying your suggestion, it gives me the same error screen

    brayansmith: yes I am using root, but I dont know what xorgconfig is

    thanks all for your replies

  7. #7
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    Debian Sarge does not use "xorg", it uses xfree86

    If there is a problem, just type (as root):
    Code:
    dpkg-reconfigure xserver-xfree86
    And configure it correctly...

    The file that is important here is /etc/X11/XF86Config-4
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

  8. #8
    Just Joined!
    Join Date
    Oct 2005
    Posts
    18
    while going through the configuration, It tells me I need to specify the BusID of the video card. my card is an nvidia GeForce 6200 on an 8x agp slot. I'm not quite sure what it is looking for in terms of format, which has examples, but none are agp.

  9. #9
    Linux Guru bryansmith's Avatar
    Join Date
    Nov 2004
    Location
    /Ontario/Canada
    Posts
    2,621
    Quote Originally Posted by antidrugue
    Debian Sarge does not use "xorg", it uses xfree86
    I forgot about that, thanks for pointing that out.

    Also, don't be root when attempting to start X.

    Bryan
    Looking for a distro? Look here.
    "There can be no doubt that all our knowledge begins with experience." - Immanuel Kant (Critique of Pure Reason)
    Queen's University - Arts and Science 2008 (Sociology)
    Registered Linux User #386147.

  10. #10
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    Anyway in normal circonstance you shouldn't have to specify the BusID, nor the video card identifier.

    For the driver, just choose "nv". You're /etc/X11/XF86Config-4 file should look something like that in the end:

    Code:
    Section "Files"
            FontPath        "unix/:7100"
            FontPath        "/usr/lib/X11/fonts/misc"
            FontPath        "/usr/lib/X11/fonts/cyrillic"
            FontPath        "/usr/lib/X11/fonts/100dpi/:unscaled"
            FontPath        "/usr/lib/X11/fonts/75dpi/:unscaled"
            FontPath        "/usr/lib/X11/fonts/Type1"
            FontPath        "/usr/lib/X11/fonts/CID"
            FontPath        "/usr/lib/X11/fonts/Speedo"
            FontPath        "/usr/lib/X11/fonts/100dpi"
            FontPath        "/usr/lib/X11/fonts/75dpi"
    EndSection
    
    Section "Module"
            Load    "GLcore"
            Load    "bitmap"
            Load    "dbe"
            Load    "ddc"
            Load    "dri"
            Load    "extmod"
            Load    "freetype"
            Load    "glx"
            Load    "int10"
            Load    "record"
            Load    "speedo"
            Load    "type1"
            Load    "vbe"
    EndSection
    
    Section "InputDevice"
            Identifier      "Generic Keyboard"
            Driver          "keyboard"
            Option          "CoreKeyboard"
            Option          "XkbRules"      "xfree86"
            Option          "XkbModel"      "pc104"
            Option          "XkbLayout"     "us"
    EndSection
    
    Section "InputDevice"
            Identifier      "Configured Mouse"
            Driver          "mouse"
            Option          "CorePointer"
            Option          "Device"                "/dev/input/mice"
            Option          "Protocol"              "ImPS/2"
            Option          "Emulate3Buttons"       "true"
            Option          "ZAxisMapping"          "4 5"
    EndSection
    
    Section "Device"
            Identifier "NVIDIA"
            Driver     "nv" # this is the important bit
    EndSection
    
    Section "Monitor"
            Identifier      "Generic Monitor"
            Option          "DPMS"
    EndSection
    
    Section "Screen"
            Identifier      "Default Screen"
            Device          "NVIDIA"
            Monitor         "Generic Monitor"
            DefaultDepth    24
            SubSection "Display"
                    Depth           24
                    Modes           "1024x768"
            EndSubSection
    EndSection
    
    Section "ServerLayout"
            Identifier      "Default Layout"
            Screen          "Default Screen"
            InputDevice     "Generic Keyboard"
            InputDevice     "Configured Mouse"
    EndSection
    
    Section "DRI"
            Mode    0666
    EndSection
    This minimal. When doing...
    Code:
    dpkg-reconfigure xserver-xfree86
    ...if you don't know the answer for a question, leave it blank.
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

Page 1 of 2 1 2 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •