Announcement

Collapse
No announcement yet.

[Solved] KDE not starting

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    [Solved] KDE not starting

    Hello, coming for help/advice again ...

    I did a mistake (running a GUIapp with sudo or sth like this), had this classical problem (can't write to /home/user/.ICEauthority), tried to solve it, but it still didn't work, and after login, KDE starts to load but even before the 1st icon appears, black screen and back to login screen.

    More detailed : I was running out of diskspace (100% full on home partition - ok, now I'm aware it builds up), I cleaned some old packages (apt-get autoremove/autoclean/clean as well as .thumbnails/large &/normal folder), but I did this with sudo dolphin. On next boot, "can't write access to */.ICEauthority".
    I found out I could login in console and do startx with sudo (how bad is it to do this ?), then I thought stuff would come back to normal. I also did a $sudo aptitude update, and may have upgraded some packages, but I don't remember (I was unaware I was logged as root!).
    Next boot, same problem. In console login, I tried several times (having stopped kdm first) to remove or chown to user .ICEauthority and .Xauthority. It then shows the right owner (user), but still no login possible (I tried stopping kdm and doing startx from the Konsole, and also rebooting and login from the login screen -- in order to have only one active login session as two maybe be impossible - is it the case ?).

    NB: in /home, the folder /user is owned by user.

    In this post http://kubuntuforums.net/forums/inde...pic=3113764.15, there is sth about var/tmp/kdecache-user. I deleted it, but it doesn't solve the problem.

    Here is the /xsession-errors file, after unsuccessful login into KDE (I then made a copy of the file in console login).
    Code:
    Xsession: X session started for user at Wed Dec 15 01:53:32 CST 2010
    QMetaObject::invokeMethod: No such method Konsole::Application::loadCommandLineOptionsForNewInstance()
    x-terminal-emulator: Fatal IO error: client killed
    konsole(1744) Konsole::SessionManager::~SessionManager: Konsole SessionManager destroyed with sessions still alive
    Side question : is every file/folder visited when running as root turned to being owned by root ?
    Still so much to learn, it seems ...

    NB II: there are four security packages available to update. is it better to wait the problem to be solved rather than upgrading when logged as root ?

    Thanks
    kln
    Maverick Meerkat 2.6.35.24-generic
    Single boot Kubuntu12.04 on Zepto NoxA14 Intel Dual Core 2GHz (64-bit), RAM 4Go, Nvidia GeForce 9600M GT

    #2
    Re: KDE not starting

    Originally posted by kln

    I found out I could login in console and do startx with sudo (how bad is it to do this ?)
    Yep, that's another bad one. :P

    You are obviously the same personality type as me -- I always find the path through the woods by bouncing my head off every tree in the forest!

    So, first you figured out that "sudo" can do anything he wants with the Kubuntu system, and you launched him to arrange things just as you wanted, eh? And now it's messed up.

    Assuming you have fixed the "running low on space" problem, so you've got no more than about 90% of the OS filesystem full, and given the apparent state of desktop customization (not a lot, since you can't log in), I would say the quickest fix is to log in to Recovery Console, change directory "cd" to /home/kln, and then carefully remove the entire .kde setup with

    Code:
    rm -rf .kde
    also remove the two hidden files that you already know about:

    Code:
    rm .ICEauthority .Xauthority
    If you get a "permission denied" error on either of the above "rm"s, then that's the proof that there's root permissions on a file. Go ahead and use a "sudo" prefix to do the command, in that case.

    then
    Code:
    sudo shutdown now -r
    and let's see if you can get a KDM login that works. If you're still locked out, then the next step would be to remove all the hidden "." files in your /user/klm folder, which will nuke every setting you ever had. But it might let you initiate a new X login.

    Good luck -- you're definitely going to master that system in the near future!

    Comment


      #3
      Re: KDE not starting

      Yes, trying to figure out things as I go ... before asking for help also ...
      but it can do more damage in Linux than in Windows !

      Ok, so I log in to the console from the login splashscreen (that's not the recovery console, right ? getting to GRUB menu, I could only start in recovery mode, then DOS-like menu, but nothing was looking like a recovery console).
      From this console login, I tried
      Code:
      $rm -rf .kde
      but some stuff in it were still root-owned and I couldn't log in to KDE. So I had to
      Code:
      $sudo rm -rf .kde
      and it worked. .ICE/Xauthority weren't a problem.
      Reboot, but then I wasn't able to login to KDE.

      Though BIG change now : if I do a console login, $startx works (without sudo). My KDE settings are gone, but that's not much of a problem. I tried to reboot again, but same pattern : I can only startx from the console login.

      It's already a serious improvement !
      Single boot Kubuntu12.04 on Zepto NoxA14 Intel Dual Core 2GHz (64-bit), RAM 4Go, Nvidia GeForce 9600M GT

      Comment


        #4
        Re: KDE not starting

        Originally posted by kln

        getting to GRUB menu, I could only start in recovery mode, then DOS-like menu
        OK, I suspect we're still struggling with some fundamentals here.

        When you choose "Recovery Mode" from the Grub menu, you are logging in as root. On the "DOS-like" menu, if you choose "Drop to root prompt" you will get a command line prompt that looks like "#". Is that what you see? If so, you are root, and when you deleted the .kde folder, you only deleted it from root's home directory.

        But, you said you had to use "sudo" to remove .kde, so perhaps you figured out how to log in and get the "$" prompt, which is your user's prompt.

        Upon logging in, Kubuntu attempts to run the K Display Manager (KDM) service, which provides your X login screen. Try logging in to the command line, and instead of running startx, run
        Code:
        sudo service kdm start
        and let's see what the error message says, or perhaps it will run and let you log in.

        If it says KDM is already running, then try

        Code:
        sudo service kdm stop
        Code:
        sudo service kdm start

        Comment


          #5
          Re: KDE not starting

          I didn't choose the "Drop to root prompt" (you're completely right, I just noticed yesterday the '$' vs '#' command line prompt).

          Instead of, I went to the login screen, clicked on the red 'shutdown' icon > console login, logged in, and deleted .kde & .ICE/Xauthority in /home/kalshyre (part of the .kde folder was owned by root).
          I checked, .kde & .ICE/Xauthority are now all user-owned.

          Now what you told me to try :
          After having logged to the command line, I tried to stop KDM, but it was already running (the login screen). I stopped KDM, then started it again and it took me back to the login screen, but I still can't login (I enter password, hit enter, there's a flicker and then black screen and back to login screen).

          Originally posted by dibl
          Upon logging in, Kubuntu attempts to run the K Display Manager (KDM) service, which provides your X login screen.
          Well, when I turn on my laptop, it goes as far as the login screen. So X is running, right ? And after logging into the console, I can only stop KDM -- so KDM was running too (and that was before logging in).

          From the console, startx works, so the problem must lies with the login process when X and KDM are both running.
          Single boot Kubuntu12.04 on Zepto NoxA14 Intel Dual Core 2GHz (64-bit), RAM 4Go, Nvidia GeForce 9600M GT

          Comment


            #6
            Re: KDE not starting

            OK, boot your computer, attempt to log in on the KDM greeter, and then (without starting X) if you can navigate to /var/log/ there's a file there named Xorg.0.log. It would be good to see that, if you can manage to copy it out and paste it here. For example, you could shut it down with
            Code:
            sudo shutdown now -h
            and then boot a Live CD, and copy that /var/log/Xorg.0.log file off the installed system on the hard drive (not the running Live CD session) and paste it from the Live CD session.

            Comment


              #7
              Re: KDE not starting

              I rebooted, tried to login from screen, then logged into the console and copied the file onto my desktop using
              Code:
              $cp Xorg.0.log /home/user/Desktop
              Tell me if it is enough.

              Code:
              [  23.785] 
              X.Org X Server 1.9.0
              Release Date: 2010-08-20
              [  23.785] X Protocol Version 11, Revision 0
              [  23.785] Build Operating System: Linux 2.6.24-28-server x86_64 Ubuntu
              [  23.785] Current Operating System: Linux kalshyre-laptop 2.6.35-24-generic #42-Ubuntu SMP Thu Dec 2 02:41:37 UTC 2010 x86_64
              [  23.785] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-24-generic root=UUID=1100346d-9b7c-4751-bbbc-96f0c6746d6f ro quiet splash
              [  23.785] Build Date: 23 November 2010 11:54:56PM
              [  23.785] xorg-server 2:1.9.0-0ubuntu7.1 (For technical support please see [url]http://www.ubuntu.com/support[/url]) 
              [  23.785] Current version of pixman: 0.18.4
              [  23.785] 	Before reporting problems, check [url]http://wiki.x.org[/url]
              	to make sure that you have the latest version.
              [  23.785] Markers: (--) probed, (**) from config file, (==) default setting,
              	(++) from command line, (!!) notice, (II) informational,
              	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
              [  23.785] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Dec 16 00:28:40 2010
              [  23.785] (==) Using config file: "/etc/X11/xorg.conf"
              [  23.785] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
              [  23.786] (==) No Layout section. Using the first Screen section.
              [  23.786] (**) |-->Screen "Default Screen" (0)
              [  23.786] (**) |  |-->Monitor "<default monitor>"
              [  23.786] (==) No device specified for screen "Default Screen".
              	Using the first device section listed.
              [  23.786] (**) |  |-->Device "Default Device"
              [  23.786] (==) No monitor specified for screen "Default Screen".
              	Using a default monitor configuration.
              [  23.786] (==) Automatically adding devices
              [  23.786] (==) Automatically enabling devices
              [  23.786] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
              [  23.786] 	Entry deleted from font path.
              [  23.786] (==) FontPath set to:
              	/usr/share/fonts/X11/misc,
              	/usr/share/fonts/X11/100dpi/:unscaled,
              	/usr/share/fonts/X11/75dpi/:unscaled,
              	/usr/share/fonts/X11/Type1,
              	/usr/share/fonts/X11/100dpi,
              	/usr/share/fonts/X11/75dpi,
              	/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
              	built-ins
              [  23.786] (==) ModulePath set to "/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules"
              [  23.786] (II) The server relies on udev to provide the list of input devices.
              	If no devices become available, reconfigure udev or disable AutoAddDevices.
              [  23.786] (II) Loader magic: 0x7d17a0
              [  23.786] (II) Module ABI versions:
              [  23.786] 	X.Org ANSI C Emulation: 0.4
              [  23.786] 	X.Org Video Driver: 8.0
              [  23.786] 	X.Org XInput driver : 11.0
              [  23.786] 	X.Org Server Extension : 4.0
              [  23.787] (--) PCI:*(0:1:0:0) 10de:0649:1a46:1405 rev 161, Mem @ 0xd2000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x00006000/128
              [  23.787] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
              [  23.787] (II) "extmod" will be loaded by default.
              [  23.787] (II) "dbe" will be loaded by default.
              [  23.787] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
              [  23.787] (II) "record" will be loaded by default.
              [  23.787] (II) "dri" will be loaded by default.
              [  23.787] (II) "dri2" will be loaded by default.
              [  23.787] (II) LoadModule: "glx"
              [  23.787] (II) Loading /usr/lib/xorg/extra-modules/libglx.so
              [  23.798] (II) Module glx: vendor="NVIDIA Corporation"
              [  23.798] 	compiled for 4.0.2, module version = 1.0.0
              [  23.798] 	Module class: X.Org Server Extension
              [  23.798] (II) NVIDIA GLX Module 260.19.06 Mon Sep 13 04:54:41 PDT 2010
              [  23.798] (II) Loading extension GLX
              [  23.798] (II) LoadModule: "extmod"
              [  23.821] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
              [  23.822] (II) Module extmod: vendor="X.Org Foundation"
              [  23.822] 	compiled for 1.9.0, module version = 1.0.0
              [  23.822] 	Module class: X.Org Server Extension
              [  23.822] 	ABI class: X.Org Server Extension, version 4.0
              [  23.822] (II) Loading extension MIT-SCREEN-SAVER
              [  23.822] (II) Loading extension XFree86-VidModeExtension
              [  23.822] (II) Loading extension XFree86-DGA
              [  23.822] (II) Loading extension DPMS
              [  23.822] (II) Loading extension XVideo
              [  23.822] (II) Loading extension XVideo-MotionCompensation
              [  23.822] (II) Loading extension X-Resource
              [  23.822] (II) LoadModule: "dbe"
              [  23.822] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
              [  23.822] (II) Module dbe: vendor="X.Org Foundation"
              [  23.822] 	compiled for 1.9.0, module version = 1.0.0
              [  23.822] 	Module class: X.Org Server Extension
              [  23.822] 	ABI class: X.Org Server Extension, version 4.0
              [  23.822] (II) Loading extension DOUBLE-BUFFER
              [  23.822] (II) LoadModule: "record"
              [  23.823] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
              [  23.823] (II) Module record: vendor="X.Org Foundation"
              [  23.823] 	compiled for 1.9.0, module version = 1.13.0
              [  23.823] 	Module class: X.Org Server Extension
              [  23.823] 	ABI class: X.Org Server Extension, version 4.0
              [  23.823] (II) Loading extension RECORD
              [  23.823] (II) LoadModule: "dri"
              [  23.823] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
              [  23.823] (II) Module dri: vendor="X.Org Foundation"
              [  23.823] 	compiled for 1.9.0, module version = 1.0.0
              [  23.823] 	ABI class: X.Org Server Extension, version 4.0
              [  23.823] (II) Loading extension XFree86-DRI
              [  23.823] (II) LoadModule: "dri2"
              [  23.824] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
              [  23.824] (II) Module dri2: vendor="X.Org Foundation"
              [  23.824] 	compiled for 1.9.0, module version = 1.2.0
              [  23.824] 	ABI class: X.Org Server Extension, version 4.0
              [  23.824] (II) Loading extension DRI2
              [  23.824] (II) LoadModule: "nvidia"
              [  23.824] (II) Loading /usr/lib/xorg/extra-modules/nvidia_drv.so
              [  23.824] (II) Module nvidia: vendor="NVIDIA Corporation"
              [  23.824] 	compiled for 4.0.2, module version = 1.0.0
              [  23.824] 	Module class: X.Org Video Driver
              [  23.824] (II) NVIDIA dlloader X Driver 260.19.06 Mon Sep 13 04:31:43 PDT 2010
              [  23.824] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
              [  23.824] (++) using VT number 7
              
              [  23.830] (II) Loading sub module "fb"
              [  23.830] (II) LoadModule: "fb"
              [  23.830] (II) Loading /usr/lib/xorg/modules/libfb.so
              [  23.830] (II) Module fb: vendor="X.Org Foundation"
              [  23.830] 	compiled for 1.9.0, module version = 1.0.0
              [  23.830] 	ABI class: X.Org ANSI C Emulation, version 0.4
              [  23.830] (II) Loading sub module "wfb"
              [  23.830] (II) LoadModule: "wfb"
              [  23.831] (II) Loading /usr/lib/xorg/modules/libwfb.so
              [  23.831] (II) Module wfb: vendor="X.Org Foundation"
              [  23.831] 	compiled for 1.9.0, module version = 1.0.0
              [  23.831] 	ABI class: X.Org ANSI C Emulation, version 0.4
              [  23.831] (II) Loading sub module "ramdac"
              [  23.831] (II) LoadModule: "ramdac"
              [  23.831] (II) Module "ramdac" already built-in
              [  23.831] (II) NVIDIA(0): Creating default Display subsection in Screen section
              	"Default Screen" for depth/fbbpp 24/32
              [  23.831] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
              [  23.831] (==) NVIDIA(0): RGB weight 888
              [  23.831] (==) NVIDIA(0): Default visual is TrueColor
              [  23.831] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
              [  23.831] (**) NVIDIA(0): Option "NoLogo" "True"
              [  23.831] (**) NVIDIA(0): Enabling RENDER acceleration
              [  23.831] (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
              [  23.831] (II) NVIDIA(0):   enabled.
              [  26.753] (II) NVIDIA(0): NVIDIA GPU GeForce 9600M GT (G96) at PCI:1:0:0 (GPU-0)
              [  26.753] (--) NVIDIA(0): Memory: 524288 kBytes
              [  26.753] (--) NVIDIA(0): VideoBIOS: 62.94.19.00.33
              [  26.753] (II) NVIDIA(0): Detected PCI Express Link width: 16X
              [  26.753] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
              [  26.754] (--) NVIDIA(0): Connected display device(s) on GeForce 9600M GT at PCI:1:0:0
              [  26.754] (--) NVIDIA(0):   AUO (DFP-0)
              [  26.754] (--) NVIDIA(0): AUO (DFP-0): 330.0 MHz maximum pixel clock
              [  26.754] (--) NVIDIA(0): AUO (DFP-0): Internal Dual Link LVDS
              [  26.821] (II) NVIDIA(0): Assigned Display Device: DFP-0
              [  26.821] (==) NVIDIA(0): 
              [  26.821] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
              [  26.821] (==) NVIDIA(0):   will be used as the requested mode.
              [  26.821] (==) NVIDIA(0): 
              [  26.821] (II) NVIDIA(0): Validated modes:
              [  26.821] (II) NVIDIA(0):   "nvidia-auto-select"
              [  26.821] (II) NVIDIA(0): Virtual screen size determined to be 1440 x 900
              [  27.887] (--) NVIDIA(0): DPI set to (121, 120); computed from "UseEdidDpi" X config
              [  27.887] (--) NVIDIA(0):   option
              [  27.887] (==) NVIDIA(0): Enabling 32-bit ARGB GLX visuals.
              [  27.887] (--) Depth 24 pixmap format is 32 bpp
              [  27.887] (II) NVIDIA: Using 768.00 MB of virtual memory for indirect memory access.
              [  27.890] (II) NVIDIA(0): Initialized GPU GART.
              [  27.897] (II) NVIDIA(0): ACPI display change hotkey events enabled: the X server is new
              [  27.897] (II) NVIDIA(0):   enough to receive ACPI hotkey events.
              [  27.897] (II) NVIDIA(0): ACPI brightness change hotkey events enabled.
              [  27.901] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
              [  28.183] (II) Loading extension NV-GLX
              [  28.221] (II) NVIDIA(0): Initialized OpenGL Acceleration
              [  28.260] (==) NVIDIA(0): Disabling shared memory pixmaps
              [  28.260] (II) NVIDIA(0): Initialized X Rendering Acceleration
              [  28.260] (==) NVIDIA(0): Backing store disabled
              [  28.261] (==) NVIDIA(0): Silken mouse enabled
              [  28.275] (==) NVIDIA(0): DPMS enabled
              [  28.275] (II) Loading extension NV-CONTROL
              [  28.276] (II) Loading extension XINERAMA
              [  28.276] (II) Loading sub module "dri2"
              [  28.276] (II) LoadModule: "dri2"
              [  28.276] (II) Reloading /usr/lib/xorg/modules/extensions/libdri2.so
              [  28.276] (II) NVIDIA(0): [DRI2] Setup complete
              [  28.276] (==) RandR enabled
              [  28.276] (II) Initializing built-in extension Generic Event Extension
              [  28.276] (II) Initializing built-in extension SHAPE
              [  28.276] (II) Initializing built-in extension MIT-SHM
              [  28.276] (II) Initializing built-in extension XInputExtension
              [  28.276] (II) Initializing built-in extension XTEST
              [  28.276] (II) Initializing built-in extension BIG-REQUESTS
              [  28.276] (II) Initializing built-in extension SYNC
              [  28.276] (II) Initializing built-in extension XKEYBOARD
              [  28.276] (II) Initializing built-in extension XC-MISC
              [  28.276] (II) Initializing built-in extension SECURITY
              [  28.276] (II) Initializing built-in extension XINERAMA
              [  28.276] (II) Initializing built-in extension XFIXES
              [  28.276] (II) Initializing built-in extension RENDER
              [  28.276] (II) Initializing built-in extension RANDR
              [  28.276] (II) Initializing built-in extension COMPOSITE
              [  28.276] (II) Initializing built-in extension DAMAGE
              [  28.276] (II) Initializing built-in extension GESTURE
              [  28.276] (II) Initializing extension GLX
              [  28.307] (II) XKB: reuse xkmfile /var/lib/xkb/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm
              [  28.316] (II) config/udev: Adding input device Power Button (/dev/input/event2)
              [  28.316] (**) Power Button: Applying InputClass "evdev keyboard catchall"
              [  28.316] (II) LoadModule: "evdev"
              [  28.316] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
              [  28.316] (II) Module evdev: vendor="X.Org Foundation"
              [  28.316] 	compiled for 1.9.0, module version = 2.3.2
              [  28.316] 	Module class: X.Org XInput Driver
              [  28.316] 	ABI class: X.Org XInput driver, version 11.0
              [  28.316] (**) Power Button: always reports core events
              [  28.316] (**) Power Button: Device: "/dev/input/event2"
              [  28.350] (II) Power Button: Found keys
              [  28.350] (II) Power Button: Configuring as keyboard
              [  28.350] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
              [  28.350] (**) Option "xkb_rules" "evdev"
              [  28.350] (**) Option "xkb_model" "pc105"
              [  28.350] (**) Option "xkb_layout" "gb"
              [  28.352] (II) XKB: reuse xkmfile /var/lib/xkb/server-2B4266AA55228AE7D9557A18F1965DBA19850816.xkm
              [  28.353] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
              [  28.353] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
              [  28.353] (**) Video Bus: always reports core events
              [  28.353] (**) Video Bus: Device: "/dev/input/event4"
              [  28.400] (II) Video Bus: Found keys
              [  28.400] (II) Video Bus: Configuring as keyboard
              [  28.400] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
              [  28.400] (**) Option "xkb_rules" "evdev"
              [  28.400] (**) Option "xkb_model" "pc105"
              [  28.400] (**) Option "xkb_layout" "gb"
              [  28.400] (II) config/udev: Adding input device Power Button (/dev/input/event0)
              [  28.400] (**) Power Button: Applying InputClass "evdev keyboard catchall"
              [  28.400] (**) Power Button: always reports core events
              [  28.400] (**) Power Button: Device: "/dev/input/event0"
              [  28.440] (II) Power Button: Found keys
              [  28.440] (II) Power Button: Configuring as keyboard
              [  28.440] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
              [  28.440] (**) Option "xkb_rules" "evdev"
              [  28.440] (**) Option "xkb_model" "pc105"
              [  28.440] (**) Option "xkb_layout" "gb"
              [  28.440] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
              [  28.440] (II) No input driver/identifier specified (ignoring)
              [  28.441] (II) config/udev: Adding input device Sirius USB2.0 Camera (/dev/input/event5)
              [  28.441] (**) Sirius USB2.0 Camera: Applying InputClass "evdev keyboard catchall"
              [  28.441] (**) Sirius USB2.0 Camera: always reports core events
              [  28.441] (**) Sirius USB2.0 Camera: Device: "/dev/input/event5"
              [  28.480] (II) Sirius USB2.0 Camera: Found keys
              [  28.480] (II) Sirius USB2.0 Camera: Configuring as keyboard
              [  28.480] (II) XINPUT: Adding extended input device "Sirius USB2.0 Camera" (type: KEYBOARD)
              [  28.480] (**) Option "xkb_rules" "evdev"
              [  28.480] (**) Option "xkb_model" "pc105"
              [  28.480] (**) Option "xkb_layout" "gb"
              [  28.485] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
              [  28.485] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
              [  28.485] (**) AT Translated Set 2 keyboard: always reports core events
              [  28.485] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event3"
              [  28.520] (II) AT Translated Set 2 keyboard: Found keys
              [  28.520] (II) AT Translated Set 2 keyboard: Configuring as keyboard
              [  28.520] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
              [  28.520] (**) Option "xkb_rules" "evdev"
              [  28.520] (**) Option "xkb_model" "pc105"
              [  28.520] (**) Option "xkb_layout" "gb"
              [  28.520] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
              [  28.520] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
              [  28.520] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
              [  28.520] (II) LoadModule: "synaptics"
              [  28.520] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
              [  28.520] (II) Module synaptics: vendor="X.Org Foundation"
              [  28.521] 	compiled for 1.9.0, module version = 1.2.2
              [  28.521] 	Module class: X.Org XInput Driver
              [  28.521] 	ABI class: X.Org XInput driver, version 11.0
              [  28.521] (II) Synaptics touchpad driver version 1.2.2
              [  28.521] (**) Option "Device" "/dev/input/event6"
              [  28.590] (II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
              [  28.590] (II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
              [  28.590] (II) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
              [  28.590] (II) SynPS/2 Synaptics TouchPad: finger width range 0 - 0
              [  28.590] (II) SynPS/2 Synaptics TouchPad: buttons: left right
              [  28.670] (--) SynPS/2 Synaptics TouchPad: touchpad found
              [  28.670] (**) SynPS/2 Synaptics TouchPad: always reports core events
              [  28.710] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
              [  28.710] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
              [  28.710] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 0
              [  28.710] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
              [  28.710] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
              [  28.790] (--) SynPS/2 Synaptics TouchPad: touchpad found
              [  28.790] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
              [  28.790] (II) No input driver/identifier specified (ignoring)
              [  35.561] (II) Power Button: Close
              [  35.561] (II) UnloadModule: "evdev"
              [  35.620] (II) Video Bus: Close
              [  35.620] (II) UnloadModule: "evdev"
              [  35.661] (II) Power Button: Close
              [  35.661] (II) UnloadModule: "evdev"
              [  35.711] (II) Sirius USB2.0 Camera: Close
              [  35.711] (II) UnloadModule: "evdev"
              [  35.781] (II) AT Translated Set 2 keyboard: Close
              [  35.781] (II) UnloadModule: "evdev"
              [  35.901] (II) UnloadModule: "synaptics"
              [  37.789] 1 XSELINUXs still allocated at reset
              [  37.790] SCREEN: 0 objects of 248 bytes = 0 total bytes 0 private allocs
              [  37.790] COLORMAP: 0 objects of 8 bytes = 0 total bytes 0 private allocs
              [  37.790] DEVICE: 0 objects of 32 bytes = 0 total bytes 0 private allocs
              [  37.790] CLIENT: 0 objects of 136 bytes = 0 total bytes 0 private allocs
              [  37.790] WINDOW: 0 objects of 80 bytes = 0 total bytes 0 private allocs
              [  37.790] PIXMAP: 1 objects of 120 bytes = 120 total bytes 0 private allocs
              [  37.790] GC: 0 objects of 80 bytes = 0 total bytes 0 private allocs
              [  37.790] CURSOR: 0 objects of 8 bytes = 0 total bytes 0 private allocs
              [  37.790] CURSOR_BITS: 0 objects of 8 bytes = 0 total bytes 0 private allocs
              [  37.790] DBE_WINDOW: 0 objects of 24 bytes = 0 total bytes 0 private allocs
              [  37.790] GLYPH: 0 objects of 24 bytes = 0 total bytes 0 private allocs
              [  37.790] TOTAL: 1 objects, 120 bytes, 0 allocs
              [  37.790] 1 PIXMAPs still allocated at reset
              [  37.790] PIXMAP: 1 objects of 120 bytes = 120 total bytes 0 private allocs
              [  37.790] GC: 0 objects of 80 bytes = 0 total bytes 0 private allocs
              [  37.790] CURSOR: 0 objects of 8 bytes = 0 total bytes 0 private allocs
              [  37.790] CURSOR_BITS: 0 objects of 8 bytes = 0 total bytes 0 private allocs
              [  37.790] DBE_WINDOW: 0 objects of 24 bytes = 0 total bytes 0 private allocs
              [  37.790] GLYPH: 0 objects of 24 bytes = 0 total bytes 0 private allocs
              [  37.790] TOTAL: 1 objects, 120 bytes, 0 allocs
              [  37.790] (II) Open ACPI successful (/var/run/acpid.socket)
              [  37.790] (II) APM registered successfully
              [  37.792] (II) NVIDIA(0): Initialized GPU GART.
              [  37.800] (II) NVIDIA(0): ACPI display change hotkey events enabled: the X server is new
              [  37.800] (II) NVIDIA(0):   enough to receive ACPI hotkey events.
              [  37.800] (II) NVIDIA(0): ACPI brightness change hotkey events enabled.
              [  37.804] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
              [  39.170] (II) NVIDIA(0): Initialized OpenGL Acceleration
              [  39.209] (==) NVIDIA(0): Disabling shared memory pixmaps
              [  39.210] (II) NVIDIA(0): Initialized X Rendering Acceleration
              [  39.225] (==) NVIDIA(0): DPMS enabled
              [  39.225] (II) Loading sub module "dri2"
              [  39.225] (II) LoadModule: "dri2"
              [  39.226] (II) Reloading /usr/lib/xorg/modules/extensions/libdri2.so
              [  39.226] (II) NVIDIA(0): [DRI2] Setup complete
              [  39.226] (==) RandR enabled
              [  39.226] (II) Initializing extension GLX
              [  39.270] (II) XKB: reuse xkmfile /var/lib/xkb/server-02D8252E59564A234380F1E5417646A9DB3B7452.xkm
              [  39.293] (II) config/udev: Adding input device Power Button (/dev/input/event2)
              [  39.293] (**) Power Button: Applying InputClass "evdev keyboard catchall"
              [  39.293] (**) Power Button: always reports core events
              [  39.293] (**) Power Button: Device: "/dev/input/event2"
              [  39.320] (II) Power Button: Found keys
              [  39.320] (II) Power Button: Configuring as keyboard
              [  39.320] (**) Option "xkb_rules" "evdev"
              [  39.320] (**) Option "xkb_model" "pc105"
              [  39.320] (**) Option "xkb_layout" "gb"
              [  39.321] (II) XKB: reuse xkmfile /var/lib/xkb/server-2B4266AA55228AE7D9557A18F1965DBA19850816.xkm
              [  39.323] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
              [  39.323] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
              [  39.323] (**) Video Bus: always reports core events
              [  39.323] (**) Video Bus: Device: "/dev/input/event4"
              [  39.370] (II) Video Bus: Found keys
              [  39.370] (II) Video Bus: Configuring as keyboard
              [  39.370] (**) Option "xkb_rules" "evdev"
              [  39.370] (**) Option "xkb_model" "pc105"
              [  39.370] (**) Option "xkb_layout" "gb"
              [  39.370] (II) config/udev: Adding input device Power Button (/dev/input/event0)
              [  39.370] (**) Power Button: Applying InputClass "evdev keyboard catchall"
              [  39.370] (**) Power Button: always reports core events
              [  39.370] (**) Power Button: Device: "/dev/input/event0"
              [  39.410] (II) Power Button: Found keys
              [  39.410] (II) Power Button: Configuring as keyboard
              [  39.410] (**) Option "xkb_rules" "evdev"
              [  39.410] (**) Option "xkb_model" "pc105"
              [  39.410] (**) Option "xkb_layout" "gb"
              [  39.410] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
              [  39.410] (II) No input driver/identifier specified (ignoring)
              [  39.411] (II) config/udev: Adding input device Sirius USB2.0 Camera (/dev/input/event5)
              [  39.411] (**) Sirius USB2.0 Camera: Applying InputClass "evdev keyboard catchall"
              [  39.411] (**) Sirius USB2.0 Camera: always reports core events
              [  39.411] (**) Sirius USB2.0 Camera: Device: "/dev/input/event5"
              [  39.450] (II) Sirius USB2.0 Camera: Found keys
              [  39.450] (II) Sirius USB2.0 Camera: Configuring as keyboard
              [  39.450] (**) Option "xkb_rules" "evdev"
              [  39.450] (**) Option "xkb_model" "pc105"
              [  39.450] (**) Option "xkb_layout" "gb"
              [  39.455] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
              [  39.455] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
              [  39.455] (**) AT Translated Set 2 keyboard: always reports core events
              [  39.455] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event3"
              [  39.490] (II) AT Translated Set 2 keyboard: Found keys
              [  39.490] (II) AT Translated Set 2 keyboard: Configuring as keyboard
              [  39.490] (**) Option "xkb_rules" "evdev"
              [  39.490] (**) Option "xkb_model" "pc105"
              [  39.490] (**) Option "xkb_layout" "gb"
              [  39.490] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
              [  39.490] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
              [  39.490] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
              [  39.490] (II) Synaptics touchpad driver version 1.2.2
              [  39.490] (**) Option "Device" "/dev/input/event6"
              [  39.501] (II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
              [  39.501] (II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
              [  39.501] (II) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
              [  39.501] (II) SynPS/2 Synaptics TouchPad: finger width range 0 - 0
              [  39.501] (II) SynPS/2 Synaptics TouchPad: buttons: left right
              [  39.560] (--) SynPS/2 Synaptics TouchPad: touchpad found
              [  39.560] (**) SynPS/2 Synaptics TouchPad: always reports core events
              [  39.600] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
              [  39.600] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 0
              [  39.600] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
              [  39.600] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
              [  39.680] (--) SynPS/2 Synaptics TouchPad: touchpad found
              [  39.680] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
              [  39.680] (II) No input driver/identifier specified (ignoring)
              [  47.124] (II) Power Button: Close
              [  47.124] (II) UnloadModule: "evdev"
              [  47.180] (II) Video Bus: Close
              [  47.180] (II) UnloadModule: "evdev"
              [  47.240] (II) Power Button: Close
              [  47.240] (II) UnloadModule: "evdev"
              [  47.243] (II) Sirius USB2.0 Camera: Close
              [  47.243] (II) UnloadModule: "evdev"
              [  47.250] (II) AT Translated Set 2 keyboard: Close
              [  47.250] (II) UnloadModule: "evdev"
              [  47.260] (II) UnloadModule: "synaptics"
              [  49.125] ddxSigGiveUp: Closing log
              Single boot Kubuntu12.04 on Zepto NoxA14 Intel Dual Core 2GHz (64-bit), RAM 4Go, Nvidia GeForce 9600M GT

              Comment


                #8
                Re: KDE not starting

                Good job!

                Well, I don't see any problems, unfortunately. So you have an Nvidia GPU? What driver are you using?

                Comment


                  #9
                  Re: KDE not starting

                  I have a GeForce 9600M GT, and the driver version is 260.19.06. It seems to auto-update (or to be included within the Kubuntu upgrade), because the last one I installed manually was 185.XX.

                  There's a new 260.19.29 driver just released on Nvidia's website, I'll install it and run aptitude update as well.
                  Single boot Kubuntu12.04 on Zepto NoxA14 Intel Dual Core 2GHz (64-bit), RAM 4Go, Nvidia GeForce 9600M GT

                  Comment


                    #10
                    Re: KDE not starting

                    Updating the packages was ok (but it didn't solve the problem). Then installing the new Nvidia driver was a bad idea ...
                    Now I have the 'Ubuntu is going to run in low graphics mode' and KDE cannot start in either way (login or console>startx)
                    From the low graphics dialogue box, I have access to a menu>fix the graphics settings (back to default configuration), I can then access the login screen, log in to console and startx, and KDE graphics are all messed up. I don't have access to Xconfig settings in NVIDIA X Server Settings and in Xlog.0.log, I it says 'failed to initiate Nvidia Kernel module'.
                    In fact this module is still at the old version (260.19.06) and the driver is now 260.19.29, and it says they should match.

                    So I'll try to go back to the older version -- it will take me some time to find this.
                    [Edit] found this, I'm on it. http://kubuntuforums.net/forums/inde...opic=3109491.0

                    Dibl, on the main problem, I haven't try the last fix you said, i.e. to delete all the hidden files in /home/username/ folder. Could it be possible to only chown the whole lot ? or to perform an advanced search to which one are root-owned ? Could the problem come from still having some root-owned files/folders in it ?
                    Single boot Kubuntu12.04 on Zepto NoxA14 Intel Dual Core 2GHz (64-bit), RAM 4Go, Nvidia GeForce 9600M GT

                    Comment


                      #11
                      Re: KDE not starting

                      Graphics back to normal
                      [couldn't install EnvyNG - though my system is in English, it gets packages through the French repositories, and EnvyNG doesn't seem to be on it.
                      Through K>System>Additional Drivers, I removed - by accident - the current version of Nvidia driver, then re-activated it. It took some time to download, but driver version is back to the ubuntu-supported 260.19.06]

                      Screen login still doesn't work - I'll keep looking a few days for what could be wrong before trying to delete all the hidden files in /home/kalshyre.
                      Single boot Kubuntu12.04 on Zepto NoxA14 Intel Dual Core 2GHz (64-bit), RAM 4Go, Nvidia GeForce 9600M GT

                      Comment


                        #12
                        Re: KDE not starting

                        I looked in /home/username/ for all the files with root as owner or group
                        Code:
                        $find /home/username/ -user root
                        $find /home/username/ -group root
                        and dealt with them (either delete or chown).

                        Deleted again .X/ICEauthority and rebooted, but I still cannot login from the login screen ...

                        The folder /home/username is itself user-owned.
                        /home and /home/.directory are root-owned (the only ones) -- should they not ?
                        Also my whole data partition is root-owned, but that seems normal.

                        Any other idea ? Is it still worth to delete all hidden folders in /home/username/ ?
                        Single boot Kubuntu12.04 on Zepto NoxA14 Intel Dual Core 2GHz (64-bit), RAM 4Go, Nvidia GeForce 9600M GT

                        Comment


                          #13
                          Re: KDE not starting

                          Nothing - absolutely nothing - in your /home/username folder should be owned by root. So, open a console and ensure that your user is the one who owns everthing there. MAKE SURE THAT YOU ARE NOT OPERATING AS ROOT - VERIFY THAT YOU HAVE A NON-ROOT PROMPT ($) BEFORE ISSUING THE FOLLOWING:
                          Code:
                          sudo chown -R yourusername:yourusername ~
                          (replacing yourusername with you actual username)
                          Windows no longer obstructs my view.
                          Using Kubuntu Linux since March 23, 2007.
                          "It is a capital mistake to theorize before one has data." - Sherlock Holmes

                          Comment


                            #14
                            Re: KDE not starting

                            thank you Snowhog for help !
                            I did in this order (after console login - so not as root)
                            Code:
                            $sudo service kdm stop
                            $sudo chown -R username:username ~  (I was in /home/username/)
                            $rm .ICEauthority .Xauthority     (to be sure)
                            $sudo shutdown -r now
                            But I still cannot login from the login screen.

                            Outside of /home/username/ :
                            /home and /home/.directory are root-owned (the only ones) -- should they not ?
                            Single boot Kubuntu12.04 on Zepto NoxA14 Intel Dual Core 2GHz (64-bit), RAM 4Go, Nvidia GeForce 9600M GT

                            Comment


                              #15
                              Re: KDE not starting

                              Originally posted by kln
                              Outside of /home/username/ :
                              /home and /home/.directory are root-owned (the only ones) -- should they not ?
                              Yes. Those are properly owned by root.

                              Can you do a console login - boot into the recovery mode kernel option from the Grub menu? I'll assume you can. From the prompt type:
                              Code:
                              df -h
                              Look at the amount of available space on the / partition. You said you did some cleanup, but what is reported above as to how much space is available?
                              Windows no longer obstructs my view.
                              Using Kubuntu Linux since March 23, 2007.
                              "It is a capital mistake to theorize before one has data." - Sherlock Holmes

                              Comment

                              Working...
                              X