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

One page Stock

Alright.. That was a long absence. The whole last week I dint blog. I dint go away. I was "occupied". I was learning stock trading. Its very fascinating. I have a good weeeked blog for you all. Here is my experience. I can literally hyper-link every word from the following paragraphs, but I am writing it as simple as I can so you can look up the italicised words in wikipedia . I got a paper trading account from a brokerage firm . You need one brokerage account first. Then it can be an Equity account where all your money is yours or a Margin account , where some of the money is lent by the brokerage firm. Then I get Buying power , which is the dollor value of how much stocks you can buy. I can make profit by simple rules. Buy when Price is low. Sell when price is high. There is another more intersting way of earning money. Selling short . Thats when price is not high, per say, but when are confident that the price WILL go down. then buy back when its lowest. This is what

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