Skip to main content

Slow Login Intrepid Ibex - X is the problem?.

I have upgraded my laptop to the latest Ubuntu (Intrepid Ibex). I was happy to notice My Audio is now working fine. Headphones too :) My flash issue is still open (I think it is in Adobe's Court - and they dont seem to bother) Everything else *looked* fine.

However, on a deeper examination. There is a small issue (not a deal breaker, though). The user login takes a little longer. I looked at the syslog.

There are some noticiably interesting things (All I think it boils down to X11, I may be wrong)
  1. X (crashes? and) is restarted RIGHT before gdm login screen appears. There a log of compiz real segfault-ing
    WARNING: gdm_slave_xioerror_handler: Fatal X error - Restarting :0
    Nov 2 13:02:27 sar-akshaya kernel: [ 6185.471607] compiz.real[5767]: segfault at 2b0021 ip 08055c8c sp bf9ad770 error 4 in compiz.real[8048000+34000]
    Nov 2 13:02:28 sar-akshaya gdm[5326]: Sigfile not found
  2. . After a couple quick screen flickers, login screen appears and after login credentials are entered, for the WHOLE desktop to loadup, it takes around 20-30 secs. A correspoding log shows gdm, pulse audio timeouts and errors
    Nov 2 03:30:26 sar-akshaya gdm[4993]: Error adding passphrase key token to user session keyring; rc = [-5]
    Nov 2 03:30:26 sar-akshaya gdm[4946]: Sigfile not found
    Nov 2 03:30:27 sar-akshaya pulseaudio[5162]: ltdl-bind-now.c: Failed to find original dlopen loader.
    Nov 2 03:30:27 sar-akshaya pulseaudio[5169]: main.c: setrlimit(RLIMIT_NICE, (31, 31)) failed: Operation not permitted
    Nov 2 03:30:27 sar-akshaya pulseaudio[5169]: main.c: setrlimit(RLIMIT_RTPRIO, (9, 9)) failed: Operation not permitted
    Nov 2 03:30:27 sar-akshaya x-session-manager[5070]: WARNING: Unable to find provider 'gnome-wm' of required component 'windowmanager'
    Nov 2 03:30:37 sar-akshaya x-session-manager[5070]: WARNING: Application 'gnome-wm.desktop' failed to register before timeout
    Nov 2 03:30:47 sar-akshaya x-session-manager[5070]: WARNING: Application 'libcanberra-login-sound.desktop' failed to register before timeout
    Nov 2 03:30:48 sar-akshaya pulseaudio[5169]: module-x11-xsmp.c: X11 session manager not running.
    Nov 2 03:30:48 sar-akshaya pulseaudio[5169]: module.c: Failed to load module "module-x11-xsmp" (argument: ""): initialization failed.
    Nov 2 03:30:49 sar-akshaya anacron[5413]: Anacron 2.3 started on 2008-11-02
    Nov 2 03:30:49 sar-akshaya anacron[5413]: Normal exit (0 jobs run)
  3. The xorg.conf file is extremely small compared to my old one. There seems to be a lot of AUTO setup happening now..
    Section "Device"
     Identifier "Configured Video Device"
     Option "UseFBDev" "true"
    EndSection
    
    Section "Monitor"
     Identifier "Configured Monitor"
    EndSection
    
    Section "Screen"
     Identifier "Default Screen"
     Monitor "Configured Monitor"
     Device "Configured Video Device"
    EndSection
  4. gedit takes a quite some time to start up (around 3-5 secs, no errors in console though)
  5. There is a small line that appears on my transparent panel, appearing as if glx engine is not enabled
    This is much clearly visible while doing a cube effect

There is a launch pad defect raised, if you have the same issue, please contribute. Also a discussion that started it all.

Popular posts from this blog

Powered By

As it goes, We ought to give thanks to people who power us. This page will be updated, like the version page , to show all the tools, and people this site is Powered By! Ubuntu GIMP Firebug Blogger Google [AppEngine, Ajax and other Apis] AddtoAny Project Fondue jQuery

Decorator for Memcache Get/Set in python

I have suggested some time back that you could modularize and stitch together fragments of js and css to spit out in one HTTP connection. That makes the page load faster. I also indicated that there ways to tune them by adding cache-control headers. On the server-side however, you could have a memcache layer on the stitching operation. This saves a lot of Resources (CPU) on your server. I will demonstrate this using a python script I use currently on my site to generate the combined js and css fragments. So My stitching method is like this @memize(region="jscss") def joinAndPut(files, ext): res = files.split("/") o = StringIO.StringIO() for f in res: writeFileTo(o, ext + "/" + f + "." + ext) #writes file out ret = o.getvalue() o.close() return ret; The method joinAndPut is * decorated * by memize. What this means is, all calls to joinAndPut are now wrapped (at runtime) with the logic in memize. All you wa...

Faster webpages with fewer CSS and JS

Its easy, have lesser images, css and js files. I will cover reducing number of images in another post. But If you are like me, You always write js and css in a modular fashion. Grouping functions and classes into smaller files (and Following the DRY rule, Strictly!). But what happens is, when you start writing a page to have these css and js files, you are putting them in muliple link rel=style-sheet or script tags. Your server is being hit by (same) number of HTTP Requests for each page call. At this point, its not the size of files but the number server roundtrips on a page that slows your page down. Yslow shows how many server roundtrips happen for css and js. If you have more than one css call and one js call, You are not using your server well. How do you achieve this? By concatinating them and spitting out the content as one stream. So Lets say I have util.js, blog.js and so.js. If I have a blog template that depends on these three, I would call them in three script tags. Wh...