Find the answer to your Linux question:
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 13
I'm verry new to linux and have installed debian lenny. but I have met some problems. The biggerst one is that I cant start debian. To be more exactly, debian ...
  1. #1
    Just Joined!
    Join Date
    Jan 2010
    Posts
    6

    Debian freeze error

    I'm verry new to linux and have installed debian lenny.
    but I have met some problems. The biggerst one is that I cant start debian.
    To be more exactly, debian freeze after i come to the loggin scean, I cant move the mouse and i cant wright.

    You may say that this is hardwear error but its not, cus i can run grubs singel-user-mode and do whatever i want in the shell.

    so my question is, how do i fix this from shell. I think maby I shld change something in xorg.conf but not sure what, and how.

    Thx!
    P.S sorry for my bad english.

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Hi and Welcome !

    Its a Graphics Card problem only. Which Graphics Card do you have?
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Just Joined!
    Join Date
    Jan 2010
    Posts
    6
    pretty old one, nvidia nforce4 I think, but there is no problm with it when i run other OS.

  4. #4
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Follow instructions from here to install Nvidia Driver.
    If you don't want to install Proprietary driver, post the output of this
    Code:
    su -
    lspci | grep -i vga
    Post the contents of /etc/X11/xorg.conf file here.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  5. #5
    Just Joined!
    Join Date
    Jan 2010
    Posts
    6
    I used you command and I was abele to start the depian and log in but after 3 min it frose agien, så i can't install the nivida drivers cus i can't download them. dont know how to show you the xorg.conf file, i can only read it with th cat command and then i cant see the hole thing i will wright down what I can see:

    identifier "generic Keyboard"
    driver "kbd"
    option "XkbRules" "xorg"
    option "CkbModel" "pc105"
    option "XkbLayout" "se"
    EndSection

    Section "InputDevce"
    Identifier "Configured mouse"
    Driver "mouse"
    EndSection

    Section "Device"
    Identifier "configured Video Device"
    EndSection

    Section "monitor"
    Identifier "Configured Monitor"
    EndSection

    Section "screen"
    Identifier "Default Screen"
    Monitor "Configured Monitor"
    EndSection

  6. #6
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Edit xorg.conf file.
    Code:
    su -
    nano /etc/X11/xorg.conf
    Set Driver "nv" in Video Card section.
    Code:
    Section "Device"
    Identifier "configured Video Device"
    Driver "nv"
    EndSection
    Press Ctrl+X, Y and hit Enter key to save file. Reboot machine.
    In case "nv" driver doesn't work, replace it with "vesa".

    You can switch to command line mode by pressing Alt+Ctrl+F3. Press Alt+Ctrl+F7 to switch back to GUI.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  7. #7
    Just Joined!
    Join Date
    Jan 2010
    Posts
    6
    Sorrybut didn't work

  8. #8
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Execute this
    Code:
    cat /var/log/Xorg.0.log | grep EE
    Post output here.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  9. #9
    Just Joined!
    Join Date
    Nov 2007
    Posts
    44
    DC, my Debian xorg.conf says nothing but works fine. Pls see below:
    Code:
    Section "InputDevice"
            Identifier      "Generic Keyboard"
            Driver          "kbd"
            Option          "XkbRules"      "xorg"
            Option          "XkbModel"      "pc105"
            Option          "XkbLayout"     "us"
    EndSection
    
    Section "InputDevice"
            Identifier      "Configured Mouse"
            Driver          "mouse"
    EndSection
    
    Section "Device"
            Identifier      "Configured Video Device"
    EndSection
    
    Section "Monitor"
            Identifier      "Configured Monitor"
    EndSection
    
    Section "Screen"
            Identifier      "Default Screen"
            Monitor         "Configured Monitor"
    EndSection
    I did
    Code:
    Xorg -configure
    and then copied /root/xorg.conf.new to /etc/X11/xorg.conf

  10. #10
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Quote Originally Posted by svinoba
    DC, my Debian xorg.conf says nothing but works fine
    Debian works fine if you have Graphics Card other than Nvidia and ATI. Only Nvidia and ATI cards create problems.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

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
  •