Arch gaming

I'm interested in the idea of maybe having a sticky thread in this forum for all the Linux gamers out there. Specifically older Loki games such as Myth2 and Alpha Centauri. One reason, being a avid Linux gamer. I find it difficult to Google for information regarding installation of many older native games. For instance
Myth 2: Soulblighter
Install the game with the option FULL.
Myth2 requires the the latest unified patch:
http://lokifiles.tuxgames.com/updates/m … ed-x86.run
Myth2 has a couple of bugs regarding video playback. The only fix I could find was to move or delete the cutscenes folder, which is in the game directory. ie /usr/local/games/myth2/
There is also a bug that stops OpenGL from working. The workaround is here:
http://tobias.rautenkranz.ch/myth_memfix.html
It would be good if all the last problem could be automated. Ie, add a script like this
echo 'LD_PRELOAD=/usr/lib/fopenr.so myth2' > GL_Myth2 ; chmod a+x GL_Myth2
into say the /usr/bin folder?
This would be an example of a wiki entry for arch linux to get the game working?
BTW: this is just an idea / quick example of something I would find useful. So we can have all the native games up on one big wiki page for arch.

Oh and the sticky thread would be like a FAQ with wiki links etc?
http://wiki.archlinux.org/index.php/Games
This is the only wiki info i could find.
Last edited by B15HOP (2008-02-07 08:34:35)

Similar Messages

  • Arch gaming repositories

    It seems that I'm getting errors with the two repositories listed in the stickied thread at the top of this subforum, as well as Twilight Lair. Anyone know what's going on with these servers?
    # clyde -Syy
    :: Synchronizing package databases...
    core 36.0K 160.1K/s 00:00:00 [----------------------] 100%
    extra 450.9K 601.9K/s 00:00:01 [----------------------] 100%
    community 364.7K 567.1K/s 00:00:01 [----------------------] 100%
    error: failed retrieving file 'arch-games.db.tar.gz' from arch.twilightlair.net : Connection refused
    arch-games 33.9K 68.4K/s 00:00:00 [----------------------] 100%
    xyne-any 5.7K 5.3K/s 00:00:01 [----------------------] 100%
    And as for the two listed in the sticky, they just time out.

    The main server is down at the moment, use a mirror.
    Edit: Back up
    Last edited by Daenyth (2010-04-06 04:27:15)

  • "Multiseat" gaming with multi-pointer X

    Hello Arch gaming community,
    recently I've discovered a decent way to play multiplayer games in multiseat (or pseudo split-screen) manner. It really works - I use it to play Myth II: Soulblighter (on Wine) with my brother
    Short explanation:
    In recent versions of Xorg (>= 1.7), there's a nice feature - it lets you plug another mouse and make it control a second pointer on the screen. Plug another keyboard, assign it to this pointer, and you can independently work with two windows at a time (each pointer getting it's own focus). Now, if you connect a second physical display and configure it to be a separate X screen belonging to the same X server, you can send your second pointer to that screen, virtually allowing both sets to be used independently. Now, run some game on first screen, then another instance on another, and you can play it multiplayer with your friend
    What makes this approach better than a "true" multiseat:
    Configuring a proper multiseat system (where each "seat" get's it's own login screen) is not easy, to start with. Often it won't let you use hardware acceleration on both displays unless they're connected to two separate video cards. Mutli-pointer approach lets you use both screens with hardware acceleration with just one dual-head graphics card (like most laptops have). Besides, it's much less painful to set up.
    The downsides:
    The multi-pointer feature of Xorg is still fairly new, and is not supported by any window manager that I know. Thankfully, it doesn't have to be explicitly supported by a WM in order to be used with it, but most WMs tend to get confused by it. Also, sometimes keyboard focus is not automatically assigned for the second pointer, and you have to explicitly assign it via command-line for the keyobard input to work.
    So, how to do it?
    The basic steps are:
    Prepare an alternative xorg configuration file for both displays (if you don't use both already)
    Start another X server with "xinit /usr/bin/xterm -- :1 vt8 -config [your dual screen xorg config file]" (so that when something goes bad, your main desktop won't suffer)
    Set up a secondary pointer with xinput utility
    Launch two instances of some game, one on each screen
    Use xinput with "set-cp" option to assign a second pointer to the window that will be operated by it
    Play!
    You'll have to repeat all steps (except the first one) each time you want to play in this configuration. As you can see, it requires some tedious typing each time, so right now I'm writing scripts that automate the setup.
    Here's one that lets you choose a mouse and keyobard and assign a second pointer to them (uses zenity, but can be adapted to use CLI only):
    #/bin/bash
    # vim: si ts=4 sw=4
    shopt -s extglob
    IFS=$'\n' DEVICE_LIST=( $(xinput list --short) )
    for (( I=0; I<${#DEVICE_LIST[@]}; I++ )); do
    IFS=$'\t' INFO=( ${DEVICE_LIST[$I]} )
    [ "${INFO[2]:1:1}" = "s" ] || continue
    NAME="${INFO[0]:6}"
    NAME="${NAME%%*([[:blank:]])}"
    ID="${INFO[1]#id=}"
    [[ "$NAME" != *XTEST* ]] || continue
    case "${INFO[2]:8:1}" in
    "p" )
    POINTERS+=( "$ID"$'\t'"$NAME" )
    "k" )
    KEYBOARDS+=( "$ID"$'\t'"$NAME" )
    esac
    done
    POINTER="$( IFS=$'\t' zenity --title="Select device" --list --text="Choose a pointer" --column="Id" --column="Name" ${POINTERS[@]} )"
    KEYBOARD="$( IFS=$'\t' zenity --title="Select device" --list --text="Choose a keyboard" --column="Id" --column="Name" ${KEYBOARDS[@]} )"
    [ -n "$POINTER" ] && [ -n "$KEYBOARD" ] || exit 1
    MASTER_NAME="second"
    xinput create-master "$MASTER_NAME"
    xinput reattach "$POINTER" "$MASTER_NAME pointer"
    xinput reattach "$KEYBOARD" "$MASTER_NAME keyboard"
    Don't ask me for more detailed instructions - I'll provide them when I have time.
    Now I'm looking for suggestions where I could place them. Maybe a wiki page would be a good idea? I think it would also be easier to join efforts there. What do you think?

    Yes, most of WMs get confused by multiple pointers, because they don't recognize mutliple focuses. That's one of the reasons why I run games in a dedicated X server with a bare-bones TWM setup. I launch it with:
    xinit ./xinitrc.dual -- :1 vt8 -config xorg.conf.dual
    xinitrc.dual:
    twm -f twmrc &
    DISPLAY=:1.1 xterm &
    xterm
    twmrc (compacted):
    NoDefaults
    NoIconManagers
    NoTitleFocus
    NoTitleHighlight
    NoHighlight
    RandomPlacement
    UsePPosition "on"
    OpaqueMove
    DontMoveOff
    NoTitle
    BorderWidth 0
    NoMenuShadows
    # Bindings
    Button1 = m4 : window|icon : f.move
    Button3 = m4 : window : f.resize
    Button1 = : icon : f.deiconify
    "1" = m4 : all : f.warptoscreen "0"
    "2" = m4 : all : f.warptoscreen "1"
    "f" = m4 : all : f.focus
    "Tab" = m4 : all : f.circleup
    "Tab" = m4|s : all : f.circledown
    "n" = m4 : window : f.iconify
    In this config there are no window decorations, and "Super" (the windows-logo key) is the general window-handling modifier.
    Bindings explained:
    Super+LMB - drag windows around
    Super+RMB - resize windows
    Super+1/2 - warp pointer to screen 0 or 1
    Super+f - lock/unlock focus
    Super[+Shift]+Tab - cycle between windows (more precisely, cycle their stacking order)
    Super+n - iconify (minimize) window; iconified windows are restored by clicking on icons.
    Why do I see two entries for the USB keyboard ? (ID8 / ID9)
    It seems that some devices report themselves that way. Maybe they have some functions that should be logically separated, or something like that. Then, I think it's best to keep them under the same master device to avoid confusion. I've updated my zenity script to allow selecting more than one device:
    #/bin/bash
    # vim: si ts=4 sw=4
    shopt -s extglob
    IFS=$'\n' DEVICE_LIST=( $(xinput list --short) )
    for (( I=0; I<${#DEVICE_LIST[@]}; I++ )); do
    IFS=$'\t' INFO=( ${DEVICE_LIST[$I]} )
    [ "${INFO[2]:1:1}" = "s" ] || continue
    NAME="${INFO[0]:6}"
    NAME="${NAME%%*([[:blank:]])}"
    ID="${INFO[1]#id=}"
    [[ "$NAME" != *XTEST* ]] || continue
    case "${INFO[2]:8:1}" in
    "p" )
    POINTERS+=( "$ID"$'\t'"$NAME" )
    "k" )
    KEYBOARDS+=( "$ID"$'\t'"$NAME" )
    esac
    done
    MASTER_NAME="$( zenity --title="Enter name" --entry --text="Enter name for new master" )"
    [ -n "$MASTER_NAME" ] || exit 1
    POINTER="$( IFS=$'\t' zenity --title="Select device" --list --multiple --text="Choose a pointer" --column="Id" --column="Name" ${POINTERS[@]} )"
    [ -n "$POINTER" ] || exit 1
    KEYBOARD="$( IFS=$'\t' zenity --title="Select device" --list --multiple --text="Choose a keyboard" --column="Id" --column="Name" ${KEYBOARDS[@]} )"
    [ -n "$KEYBOARD" ] || exit 1
    xinput create-master "$MASTER_NAME"
    IFS="|"
    for ID in $POINTER; do
    xinput reattach "$ID" "$MASTER_NAME pointer"
    done
    for ID in $KEYBOARD; do
    xinput reattach "$ID" "$MASTER_NAME keyboard"
    done
    @Darksoul71
    This should be all you need. You can adapt my xorg.conf.dual (it's in one of my previous posts), but the way of configuring multiple screens can differ between display drivers, so you'll have to find out how to do it in your case.
    EDIT: Forgot to mention:
    @Darksoul71
    As to you keyboard problem - do you set the client pointer for the second instance's window?
    Last edited by Rad3k (2010-09-29 22:06:08)

  • General questions concerning gaming in (arch)linux

    Hi,
    I've searched the forums, and I found a lot of howto's that sometimes worked, and sometimes didn't. I'm not a gamer, but have been a longtime linux-user.
    I have talked a lot of people into using linux, and almost all of them are happy with there new OS, but my brother (my latest convert) is a gamer 'pure sang'. He's not to happy with the switch to Ubuntu:
    * Enemy Territory works, but punkbuster keeps kicking him off the servers
    * WoW: he was used to getting rocksolid 80+ FPS in windows, now he gets 50FPS with drops to below 20FPS
    * Mumble: giving problems
    Yesterday I have found a link to a solution for punkbuster - maybe I can solve that one myself. Is it normal that you have a significant amount lower FPS in linux than in windows? I thought the nvidia-blob was about 'on par' with the windows-driver? I have set WoW to OpenGL and applied several tweaks that I have found around the interwebs...
    Should I give archlinux for him a try (I only chose Ubuntu to make it easier for him to update)? Since punkbuster is 32bit-only, should I install 32bit linux for him? Or should I advise him to buy a 'windows 7'-licence key?
    PS: Is the Archlinux gaming repo still alive? It looks as if no updates have made since early 2010 and only 1 of the 3 mirrors mentioned in the wiki is still up...
    THX!

    I am a pretty much a gamer, less so in recent years but...  I have found that Linux does not offer the same gaming possibilities as Windows.  To this day, I am still dual-booting because of gaming, and I doubt that will change in the near future.  I have ran things like Half-life2 and Stracraft 2 in Linux with statisfying results, but with generally fewer frame rates than Windows.  As for gaming performance, recent test ran by Phoronix suggest that BSD is faster than Linux, but that's not your question.  For myself, I doubt you would find a distro with a significant performance boost for gaming, as they all share the same drivers and all share Xorg to produce graphics.  The only reserve is that other test ran by Phoronix suggest that "compositing" as used in Ubuntu's Unity or Gnome 3 has some negative effect on 3D gaming performance, so if you switch to Arch, you might want to consider the "less cute" desktops, like XFCE or LXDE and the like, without compositing.  Also, I should mention that using 64 bit Linux to run 32 bit windows games tends to make things a little more difficult.  If gaming under Linux with Wine is a must, consider staying under a 32 bit version of the distro of your choice.
    As for Windows games, you might want to look at Crossover ( http://www.codeweavers.com/ ) which offers an interface to Wine and better support.  There is a "gaming edition" of crossover which might help.  Check their DB to see which games are supported, but there's a full-featured demo mode anyway, so try before you buy.  Also, you might try playonlinux ( http://www.playonlinux.com/ ) wich offers an interfaces that manages Wine installations for you with "recepies" in the background that are known to offer the best results.  If you want the "free" option, playonlinux is the way to go if you want the best chances at running your games, if supported.
    Lastly, I would suggest looking at http://www.penguspy.com/ to find Linux native games.  Of course, that might not satisfy your brother if he wants specific games.
    Last edited by jpsimard (2011-09-27 14:50:16)

  • Arch Linux based live gaming distro 'lg-live 0.9.5' released

    Hey all,
    first of all, sorry if this is the wrong subforum to post this in but this one seemed most appropriate.
    I would like to announce the release of live.linuX-gamers 0.9.5, an Arch Linux based live gaming distro. It was made using Archiso and of course a big investment of time. It is going to be officially released on LinuxTag 2009 in Berlin (in three days) but I thought I'd give it to you guys now.
    It is a very specialized distro: It contains lots of popular games, installs proprietary graphics card drivers out-of-the-box and provides you with a nice, clean interface for launching games and a few basic applications.
    I don't want to over-advertise this so I'll just say: Please go ahead and test it if you feel like it, maybe mirror it or seed the torrents a bit, post feedback or thoughts, insult me or threaten me, etc.
    If you want to give it a spin or see which games are on it, go over to http://live.linux-gamers.net and grab yourself an ISO/USB image.
    Thank you, Arch Linux, for making this possible.

    karol wrote:
    capoeira wrote:is there a way to install other games when using a USB-Device?
    This thread is rather old, but yeah, it's possible to remaster this "meta-distro" and add/remove games you like: http://github.com/svenstaro/lglive
    BTW, there's a new release http://live.linux-gamers.net/
    Ohh what a positive surprise to have a girl here,
    yea, i downloaded the DVD this week. I'm no gamer, I gamed in the 90ies on a Amiga 500 last time. But sometimes I get a wich to play a bit, so I found this DVD (I don't want to instal games to my production-distro and don't want to instal Catalyst either for my card)
    I want to play 3d first-person games but those ego-shooters i don't enjoy. Its running around shooting on everything and diying a hundred times. I want something more realistic, so I found penumbra and amnesia and would like to install it with this DVD. (if anyone has tips for realistic 3d-games, action-adventures, etc. I would apreciate tips)
    I will have a look at your link, thanks a lot

  • Arch Linux Gaming Setup - Advice?

    Okay so with the arrival of BL2 on Linux I want to setup Arch for gaming, but I need some advice towards this.
    How would you personally set it up? UEFI or BIOS, EXT4 or BTRFS. FOSS or Catalyst?
    What desktops would you also have? I am tempted via KDE5, I think it looks rather sweet, or maybe budgie.
    also should I use 3.17 or 3.16?
    Any other suggestions for this, I am not very good at setting up arch for gaming..
    Many thanks!

    Any of those options are fine and won't make a noticeable difference.
    The biggest choice is whether to use the open source "radeon" driver or Catalyst, but that's simple to decide: Start with the open source "radeon" driver (it's dead simple to setup). If it doesn't meet the needs of the video games you want to play, then try Catalyst.

  • A mission: Living Room Gaming PC with Arch

    Hey all!  I got the Wii for Christmas!  And boy, am I sick and tired of paying $5-$10 for ever single classic NES/SNES/Genesis game, since I've already bought them all ten years ago.
    So, I had a great idea:  using Arch for a living room gaming platform.  I've got an old 1.0ghz pentium three box that would be perfect for the task.  I also have an extra video card with s-out to use to give composite out to the TV.  I'll need to buy adapters for s-video to composite conversion and headphone jack to composite.
    I'm also going to buy a USB wifi card and a Bluetooth adapter.  The wifi card will be for updating arch and internet access, and the Bluetooth adapter will be for the Wiimote.  I'd like to use the wiimote for nes and genesis games.
    I'll let you know how my experience goes, and maybe post some code if I end up writing anything!

    If you get the desktop looking good on your tv, can you post your system and tv specs? I currently use my computer to play dvds on my tv because I am too cheap to buy a dvd player and my surround sound does not have digital decoding. So I use my computer to handle it. It looks okay while playing dvds (only the display looks slightly to the left on the tv screen), but the tv display looks like crap while on the desktop.
    Thanks in advance.
    P.S.
    I have only tried this in windows. I am going to try in linux when I get time.

  • [SOLVED] 'AGP is deactivated' - Wine, Gaming on Arch

    Hello,
    First off I would like to mention that I understand this may not be the proper forums to mention this, as it could just be wine related and should go to the wine forums, but then again everyone here has been so helpful and knowledge-full that I believe this issue might get resolved here as well.
    I am trying to run Lineage2 under wine on Arch (x86_64), but when I launch the game I get the error:
    "The game may not be consistant because AGP is deactivated. Please activate AGP for consistancy."
    I have installed d3dx9 & d3dx10 using winetricks, I do have proper VGA drivers, and I am running on the following:
    Linux 3.3.8-1-ARCH #1 SMP PREEMPT x86_64 GNU/Linux
    Intel(R) Core(TM) i7 CPU 920  @ 2.67GHz
    NVIDIA Corporation GF106 [GeForce GTS 450]
    Let me know if you require any additional information.
    Thanks in advance
    Last edited by CyberMaN (2012-06-29 22:46:43)

    Thanks for the fast reply. I just did a pacman -Syu yesterday, so I don't think much would change. However, after a reboot I noticed that whilst the message still appeared, the graphics weren't slow as they were before, so now it's just a message with no effect.
    Perhaps this should be closed as the issue itself has been resolved, however I still do not understand the nature of the message.

  • Arch Linux gaming setup, any ideas tricks and tips?

    Okay so I want to improve my current setup So what should I change? I use ext4 system open source drivers and lxqt for desktop I have no apps installed really apart from steam and chromium but I'd like more performance out of my a4 5000 apu
    So any ideas/tricks/tips etc you know that helps play stuff like hl2 tf2 and some indie titles, and maybe witcher 2 haha no not a chance on this processor lol
    Anyways thanks!

    You might want to take a look at linux-ck, brebs has some useful suggestions in one of his signature links and I bet you can find more in the forums. Try to optimize every component, one by one (gather information, test, upgrade firmware/drivers if useful, repeat), and concentrate on your systems bottleneck[s_]. Other than that, using ABS and AUR provide a possibility to compile packages for your specific hardware setup. Use with caution, could be detrimental. Should you also use wine for gaming, try wine-d3dstream[-git] package from AUR, remember to enable its benefits in registry.

  • New to Arch(64), with a few questions about Xorg and more

    Hello and Happy New Year everyone,
    I'm a user that has just recently decided to try and switch to Linux as the main OS for all things that don't concern gaming. I've been using the "server side" of Linux at work for a couple years now, but when it comes to its desktop part I consider myself not fully competent yet. Under recommendation of a friend I decided to give Arch a shot, and I can say that it really suits my philosophy on how an OS should be like.
    I have a few issues I'm currently struggling with that I couldn't seem to solve by looking on my own: as they are mostly minor and shortly described, I thought about packing them up in one single thread to avoid making too many. I've used i686 as testing grounds and am now using x86_64, but most of my problems apply to both.
    Here's my hardware, for reference:
    - Intel E8400 CPU (3GHz, dual core)
    - Asus P5Q-E motherboard
    - 2 GB DDR2 800 RAM.
    - nVidia 8800GT video card with 512MB memory
    - Samsung SyncMaster 713BM flat panel, connected via DVI cable
    - Creative SBLive! 5.1 OEM card (dug up for the occasion since it has hardware mixing)
    I'm using the latest Xorg from the repos, nvidia proprietary drivers, ALSA, Xfce4 + compiz-fusion, and SLIM as my login manager.
    And here are my headaches:
    - (32/64) A similar issue to the one I just mentioned: compiz-fusion doesn't seem to stick around as my window manager, even though I manually set it as per Method 2 from this wiki page. Although it did work for a while, after some time (perhaps after installing some package? but I didn't really install anything X related) it simply stopped working. To get my windows, I have to manually run fusion-icon after login.
    - (32/64) I'm using MPlayer with libass to watch my favourite anime, but sometimes MPlayer freezes up, forcing me to xkill it. Disabling ASS embedded subs yields error message 11, something about unsufficient resources. Disabling subs entirely prevents MPlayer from crashing. Oh, the errors only happen on specific points of certain videos, and all the videos work just fine under WinXP with MPC or VLC.
    - (32/64) Why do anti-aliased fonts under Linux still look so bad, even though I installed the appropriate packages suggested in the wiki? I don't mind disabling anti-aliasing entirely and just using Verdana, but is there some trick to it besides setting sub-pixel hinting under rclick->settings->user interface?
    - (32/64) My SBLive might be 5.1, but I'm only using the front connector as I use either two stereo speakers or headphones all the time. But the volume setting in applications (such as MPlayer) seems to affect the PCM meter of ALSA's mixer, putting it over 0 dB gain and generating sound distortion.
    - (64/don't know if 32 too) Why does Compiz's framerate drop so badly when I push alt-tab? I'm using the default application shifter, hardware acceleration, and there should be no reason why the framerate should drop like that (expecially considering that wobbly windows or cube rotating don't affect my performance at all). I've read around the net about very similar occourances with the task switcher, but I've found no real solution.
    - [SOLVED] (32/64) The first obstacle I came across was that I couldn't set my screen refresh any higher than 60Hz when I actually wanted 75Hz: I solved this by setting the vertical refresh to 76.0-76.0 in xorg.conf. However, for some reason this setting doesn't stick on reboot: I have to log in and manually run rclick->System->NVIDIA X Server Settings for it to apply.
    - [SOLVED] (64 only) The 32 version of Xorg was fine, but for some reason I'm not getting the correct keyset (Italian) under X, while everything works in vc. I think I read something about disabling a module called "keydev", but is this really the way to go?
    - [SOLVED] (64 only) Although I can hear sound in just about every application, the 64 bit version of Pidgin doesn't "ring" on received messages even though the associated option is enabled.
    I kindly thank you in advance for your assistance: I will provide any configuration files that might be needed to help me out
    Last edited by Akaraxle (2009-01-03 21:25:43)

    xisal wrote:
    Take a look into /etc/hal/fdi/policy/10-keymap.fdi. This works with portuguese layout:
    <snip>
    The file did not exist, so I created it and changed "pt" to "it". Thanks a bunch, that fixed it!
    Try SMPlayer.
    Ah, I'd rather not involve Qt. Besides, isn't SMPlayer simply a frontend to Mplayer (who already has GMplayer integrated into it, IIRC)?
    Mikko777 wrote:
    Why would you want to use 75Hz with lcd display?
    Does it make a difference?
    On my monitor, from my point of view, it appears to make a difference. It's that simple
    azleifel wrote:In gmplayer Preferences -> Audio -> (assuming alsa selected) -> Configure driver and change the mixer channel to something other than PCM, e.g. Master.
    For all the three combos, I have "driver default" selected. The other option is "default"; I tried to manually type "Master" into the mixer channel field, but then gmplayer's windows and my Xfce taskbar started blinking, so I knew I had just "crossed streams".
    Regarding NVIDIA X Server Settings, running "usr/bin/nvidia-settings --load-config-only" at login is the only way to apply the settings "automatically".
    I've slapped that on my ~/.xinitrc before "exec startxfce4". Thanks in advance, going to test it now!
    About the refresh and non-decorated windows issues (which *appears* to be solved after I've wiped the xfce-session cache), I've been thinking: could they somehow be related the login manager I've chosen, SLIM?
    P.S. New question: is there any way to enable the ALT+num126 for ~ keyboard behaviour I'm used to under M$ environments?
    Last edited by Akaraxle (2009-01-03 09:43:02)

  • System crash when gaming (Update: Temperature Problem?)

    Hello there
    I have a problem: when starting games (Minecraft, Relics of Annorath, Portal, World of Goo tested) my Laptop crashes. The screen gets black and the only possibility to turn it back on is to remove the battery, wait 10 seconds and then reboot. I don't see any error messages, not in the journal and not in the Xorg.0.log. I have a HP 8470w with a Intel i7-3610QM Quad Core and a AMD FirePro M2000 grapics card. I am running kernel 3.10.10-ARCH with fglrx. Is anyone aware of this problem or can help me even just pointing out where to look for the problem? If you need more info, please tell me.
    strix:~ $ fglrxinfo
    display: :0.0 screen: 0
    OpenGL vendor string: Advanced Micro Devices, Inc.
    OpenGL renderer string: AMD Radeon HD 7500M/7600M Series
    OpenGL version string: 4.3.12441 Compatibility Profile Context FireGL 12.104
    strix:~ $ X -version
    X.Org X Server 1.14.2
    Release Date: 2013-06-25
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.9.7-1-ARCH x86_64
    Current Operating System: Linux tirion 3.10.10-1-ARCH #1 SMP PREEMPT Fri Aug 30 11:30:06 CEST 2013 x86_64
    Kernel command line: cryptdevice=/dev/sda2:root root=/dev/mapper/root resume=/dev/mapper/swapDevice rw initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    Build Date: 01 July 2013 10:48:42AM
    Current version of pixman: 0.30.2
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    journalctl at the time of my last crash:
    Sep 04 12:35:44 tirion logger[13211]: ACPI action undefined: PNP0C0A:00
    Sep 04 12:36:01 tirion crond[13217]: pam_unix(crond:session): session opened for user strix by (uid=0)
    Sep 04 12:36:01 tirion CROND[13218]: (strix) CMD (~/data/bin/battery)
    Sep 04 12:36:01 tirion CROND[13217]: pam_unix(crond:session): session closed for user strix
    Sep 04 12:36:49 tirion laptop-mode[13335]: Laptop mode
    Sep 04 12:36:49 tirion laptop-mode[13338]: enabled, not active [unchanged]
    Sep 04 12:36:49 tirion laptop-mode[13344]: Laptop mode
    Sep 04 12:36:49 tirion laptop-mode[13345]: enabled, not active [unchanged]
    Sep 04 12:36:49 tirion logger[13347]: ACPI action undefined: PNP0C0A:00
    Sep 04 12:37:01 tirion crond[13352]: pam_unix(crond:session): session opened for user strix by (uid=0)
    Sep 04 12:37:01 tirion CROND[13353]: (strix) CMD (~/data/bin/battery)
    Sep 04 12:37:01 tirion CROND[13352]: pam_unix(crond:session): session closed for user strix
    Sep 04 12:38:01 tirion crond[13373]: pam_unix(crond:session): session opened for user strix by (uid=0)
    Sep 04 12:38:01 tirion CROND[13374]: (strix) CMD (~/data/bin/battery)
    Sep 04 12:38:01 tirion CROND[13373]: pam_unix(crond:session): session closed for user strix
    Sep 04 12:38:16 tirion laptop-mode[13426]: Laptop mode
    Sep 04 12:38:16 tirion laptop-mode[13430]: enabled, not active [unchanged]
    Sep 04 12:38:16 tirion laptop-mode[13438]: Laptop mode
    Sep 04 12:38:16 tirion laptop-mode[13439]: enabled, not active [unchanged]
    Sep 04 12:38:16 tirion logger[13441]: ACPI action undefined: PNP0C0A:00
    Sep 04 12:39:01 tirion crond[13454]: pam_unix(crond:session): session opened for user strix by (uid=0)
    Sep 04 12:39:01 tirion CROND[13455]: (strix) CMD (~/data/bin/battery)
    Sep 04 12:39:01 tirion CROND[13454]: pam_unix(crond:session): session closed for user strix
    Sep 04 12:39:22 tirion laptop-mode[13512]: Laptop mode
    Sep 04 12:39:22 tirion laptop-mode[13514]: enabled, not active [unchanged]
    Sep 04 12:39:22 tirion laptop-mode[13520]: Laptop mode
    Sep 04 12:39:22 tirion laptop-mode[13521]: enabled, not active [unchanged]
    Sep 04 12:39:22 tirion logger[13523]: ACPI action undefined: PNP0C0A:00
    Sep 04 12:39:44 tirion kernel: usb 3-1.2: new low-speed USB device number 4 using ehci-pci
    Sep 04 12:39:44 tirion kernel: hidraw: raw HID events driver (C) Jiri Kosina
    Sep 04 12:39:44 tirion kernel: usbcore: registered new interface driver usbhid
    Sep 04 12:39:44 tirion kernel: usbhid: USB HID core driver
    Sep 04 12:39:44 tirion kernel: input: 2.4G Wireless Mouse as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.2/3-1.
    Sep 04 12:39:44 tirion kernel: hid-generic 0003:04F3:02F4.0001: input,hiddev0,hidraw0: USB HID v1.11 Mouse [2.4G
    Sep 04 12:39:44 tirion laptop-mode[13583]: Laptop mode
    Sep 04 12:39:44 tirion laptop-mode[13585]: enabled, not active
    Sep 04 12:39:44 tirion laptop-mode[13612]: Laptop mode
    Sep 04 12:39:44 tirion laptop-mode[13613]: enabled, not active
    -- Reboot -- <-- This Reboot here was not planned! :)
    Sep 04 12:43:35 tirion systemd-journal[247]: Allowing runtime journal files to grow to 597.7M.
    Sep 04 12:43:35 tirion kernel: Initializing cgroup subsys cpuset
    Sep 04 12:43:35 tirion kernel: Initializing cgroup subsys cpu
    Sep 04 12:43:35 tirion kernel: Initializing cgroup subsys cpuacct
    Sep 04 12:43:35 tirion kernel: Linux version 3.10.10-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.1 20130725 (prere
    Sep 04 12:43:35 tirion kernel: Command line: cryptdevice=/dev/sda2:root root=/dev/mapper/root resume=/dev/mapper/swapDevice rw
    Edit:
    After not finding anything in my graphic settings I just ran lm_sensors with the following output:
    strix:~ $ sensors
    coretemp-isa-0000
    Adapter: ISA adapter
    Physical id 0: +57.0°C (high = +87.0°C, crit = +105.0°C)
    Core 0: +55.0°C (high = +87.0°C, crit = +105.0°C)
    Core 1: +53.0°C (high = +87.0°C, crit = +105.0°C)
    Core 2: +54.0°C (high = +87.0°C, crit = +105.0°C)
    Core 3: +57.0°C (high = +87.0°C, crit = +105.0°C)
    acpitz-virtual-0
    Adapter: Virtual device
    temp1: +55.0°C (crit = +128.0°C)
    temp2: +53.0°C (crit = +128.0°C)
    temp3: +43.0°C (crit = +128.0°C)
    temp4: +45.0°C (crit = +128.0°C)
    temp5: +20.0°C (crit = +128.0°C)
    temp6: +127.0°C (crit = +128.0°C)
    temp7: +0.0°C (crit = +128.0°C)
    temp8: +0.0°C (crit = +128.0°C)
    Could these 127°C be the problem? It's getting pretty hot while gaming but 127°C is almost impossible...
    Last edited by strix (2013-09-05 09:49:24)

    temp6, temp7, temp8 are strange.... but because it's impossible reach these temps (+127 and +0) I think those sensors are not used or bad report data
    if you think it's a overheating problem, you must log temps (sensord+rrdtool)
    so you'll get the latest temps before the PC crashes

  • [Solved] Graphics driver (nVidia) problem on fresh Arch setup

    Hi,
    I have installed Arch as main OS about 2 days ago following usual installation wikis. PC is fully functional except for problems with graphics driver (nVidia 340xx) for example just now it took about 3 to 4 boots to get into desktop like 1st boot: did not show sddm, 2nd boot: showed it with colored (white/red/green/blue) pixels, 3rd boot: broken desktop and 4th boot: finally working (see two screen images taken from mobile at the bottom).
    Details are as follows:
    1. Kernel:
    Linux archos 3.18.6-1-ARCH x86_64 GNU/Linux
    2. System info:
    Cinnamon desktop 2.4.6
    AMD Athlon 62 x2 4800+ processor
    RAM 3 GB
    nVidia GT218 (GeForce 210) graphics card
    3. nVidia packages installed:
    From official repos:
    local/nvidia-340xx 340.76-2
    local/nvidia-340xx-libgl 340.76-2
    local/nvidia-340xx-utils 340.76-2
    local/opencl-nvidia-340xx 340.76-2
    4. lspci | grep VGA
    01:00.0 VGA compatible controller: NVIDIA Corporation GT218 [GeForce 210] (rev a2)
    5. journalctl -p 0..3 -xn
    Mar 13 12:24:01 archos kernel: NVRM: Xid (PCI:0000:01:00): 6, PE0005
    Mar 13 12:24:19 archos kernel: NVRM: Xid (PCI:0000:01:00): 13, Graphics Exception: ChID 0005, Class 00008597, Offset 00001458, Data 00000006
    Mar 13 12:24:19 archos kernel: NVRM: Xid (PCI:0000:01:00): 13, Graphics Exception: ChID 0005, Class 00008597, Offset 00001644, Data 00000000
    Mar 13 12:24:25 archos kernel: NVRM: Xid (PCI:0000:01:00): 13, Graphics Exception: ChID 0005, Class 00008597, Offset 00001644, Data 00000000
    Mar 13 12:24:31 archos kernel: NVRM: Xid (PCI:0000:01:00): 13, Graphics Exception: ChID 0005, Class 00008597, Offset 00001644, Data 00000000
    Mar 13 12:24:37 archos kernel: NVRM: Xid (PCI:0000:01:00): 13, Graphics Exception: ChID 0005, Class 00008597, Offset 00001644, Data 00000000
    Mar 13 12:24:43 archos kernel: NVRM: Xid (PCI:0000:01:00): 13, Graphics Exception: ChID 0005, Class 00008597, Offset 00001458, Data 00000006
    Mar 13 12:24:43 archos kernel: NVRM: Xid (PCI:0000:01:00): 13, Graphics Exception: ChID 0005, Class 00008597, Offset 00001644, Data 00000000
    Mar 13 12:24:48 archos pulseaudio[405]: [pulseaudio] bluez5-util.c: GetManagedObjects() failed: org.freedesktop.DBus.Error.ServiceUnknown: The name or
    Mar 13 12:24:49 archos pulseaudio[460]: [pulseaudio] pid.c: Daemon already running.
    6. journalctl -b|grep -i -e vesa -e vga
    Mar 13 12:23:03 archos kernel: vgaarb: setting as boot device: PCI:0000:01:00.0
    Mar 13 12:23:03 archos kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    Mar 13 12:23:03 archos kernel: vgaarb: loaded
    Mar 13 12:23:03 archos kernel: vgaarb: bridge control possible 0000:01:00.0
    Mar 13 12:23:03 archos kernel: vesafb: mode is 640x480x32, linelength=2560, pages=0
    Mar 13 12:23:03 archos kernel: vesafb: scrolling: redraw
    Mar 13 12:23:03 archos kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    Mar 13 12:23:03 archos kernel: vesafb: framebuffer at 0xcf000000, mapped to 0xffffc90010780000, using 1216k, total 1216k
    Mar 13 12:23:03 archos kernel: fb0: VESA VGA frame buffer device
    Mar 13 12:23:06 archos kernel: vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
    Mar 13 12:23:06 archos kernel: snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
    Mar 13 12:23:13 archos kernel: NVRM: Your system is not currently configured to drive a VGA console
    Mar 13 12:23:13 archos kernel: NVRM: on the primary VGA device. The NVIDIA Linux graphics driver
    Mar 13 12:23:13 archos kernel: NVRM: requires the use of a text-mode VGA console. Use of other console
    Mar 13 12:23:13 archos kernel: NVRM: drivers including, but not limited to, vesafb, may result in
    7. glxinfo
    name of display: :0
    display: :0 screen: 0
    direct rendering: Yes
    server glx vendor string: NVIDIA Corporation
    server glx version string: 1.4
    server glx extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_profile,
    GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float,
    GLX_ARB_multisample, GLX_EXT_buffer_age,
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile,
    GLX_EXT_framebuffer_sRGB, GLX_EXT_stereo_tree, GLX_EXT_swap_control,
    GLX_EXT_swap_control_tear, GLX_EXT_texture_from_pixmap,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_NV_delay_before_swap,
    GLX_NV_float_buffer, GLX_NV_multisample_coverage, GLX_SGIX_fbconfig,
    GLX_SGIX_pbuffer, GLX_SGI_swap_control, GLX_SGI_video_sync
    client glx vendor string: NVIDIA Corporation
    client glx version string: 1.4
    client glx extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_profile,
    GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float,
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_buffer_age,
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile,
    GLX_EXT_fbconfig_packed_float, GLX_EXT_framebuffer_sRGB,
    GLX_EXT_import_context, GLX_EXT_stereo_tree, GLX_EXT_swap_control,
    GLX_EXT_swap_control_tear, GLX_EXT_texture_from_pixmap,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_NV_copy_image,
    GLX_NV_delay_before_swap, GLX_NV_float_buffer,
    GLX_NV_multisample_coverage, GLX_NV_present_video, GLX_NV_swap_group,
    GLX_NV_video_capture, GLX_NV_video_out, GLX_SGIX_fbconfig,
    GLX_SGIX_pbuffer, GLX_SGI_swap_control, GLX_SGI_video_sync
    GLX version: 1.4
    GLX extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_profile,
    GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float,
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_buffer_age,
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile,
    GLX_EXT_framebuffer_sRGB, GLX_EXT_stereo_tree, GLX_EXT_swap_control,
    GLX_EXT_swap_control_tear, GLX_EXT_texture_from_pixmap,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_NV_delay_before_swap,
    GLX_NV_float_buffer, GLX_NV_multisample_coverage, GLX_SGIX_fbconfig,
    GLX_SGIX_pbuffer, GLX_SGI_swap_control, GLX_SGI_video_sync
    OpenGL vendor string: NVIDIA Corporation
    OpenGL renderer string: GeForce 210/PCIe/SSE2
    OpenGL core profile version string: 3.3.0 NVIDIA 340.76
    OpenGL core profile shading language version string: 3.30 NVIDIA via Cg compiler
    OpenGL core profile context flags: (none)
    OpenGL core profile profile mask: core profile
    OpenGL core profile extensions:
    GL_ARB_ES2_compatibility, GL_ARB_ES3_compatibility,
    GL_ARB_arrays_of_arrays, GL_ARB_base_instance, GL_ARB_blend_func_extended,
    GL_ARB_clear_buffer_object, GL_ARB_color_buffer_float,
    GL_ARB_compressed_texture_pixel_storage, GL_ARB_conservative_depth,
    GL_ARB_copy_buffer, GL_ARB_copy_image, GL_ARB_debug_output,
    GL_ARB_depth_buffer_float, GL_ARB_depth_clamp, GL_ARB_depth_texture,
    GL_ARB_draw_buffers, GL_ARB_draw_buffers_blend,
    GL_ARB_draw_elements_base_vertex, GL_ARB_draw_instanced,
    GL_ARB_enhanced_layouts, GL_ARB_explicit_attrib_location,
    GL_ARB_explicit_uniform_location, GL_ARB_fragment_coord_conventions,
    GL_ARB_fragment_layer_viewport, GL_ARB_fragment_program,
    GL_ARB_fragment_program_shadow, GL_ARB_fragment_shader,
    GL_ARB_framebuffer_no_attachments, GL_ARB_framebuffer_object,
    GL_ARB_framebuffer_sRGB, GL_ARB_geometry_shader4,
    GL_ARB_get_program_binary, GL_ARB_half_float_pixel,
    GL_ARB_half_float_vertex, GL_ARB_imaging, GL_ARB_instanced_arrays,
    GL_ARB_internalformat_query, GL_ARB_internalformat_query2,
    GL_ARB_invalidate_subdata, GL_ARB_map_buffer_alignment,
    GL_ARB_map_buffer_range, GL_ARB_multi_bind, GL_ARB_multisample,
    GL_ARB_multitexture, GL_ARB_occlusion_query, GL_ARB_occlusion_query2,
    GL_ARB_pixel_buffer_object, GL_ARB_point_parameters, GL_ARB_point_sprite,
    GL_ARB_program_interface_query, GL_ARB_provoking_vertex,
    GL_ARB_robust_buffer_access_behavior, GL_ARB_robustness,
    GL_ARB_sample_shading, GL_ARB_sampler_objects, GL_ARB_seamless_cube_map,
    GL_ARB_separate_shader_objects, GL_ARB_shader_bit_encoding,
    GL_ARB_shader_objects, GL_ARB_shader_texture_lod,
    GL_ARB_shading_language_100, GL_ARB_shading_language_420pack,
    GL_ARB_shading_language_include, GL_ARB_shading_language_packing,
    GL_ARB_shadow, GL_ARB_stencil_texturing, GL_ARB_sync,
    GL_ARB_texture_border_clamp, GL_ARB_texture_buffer_object,
    GL_ARB_texture_buffer_range, GL_ARB_texture_compression,
    GL_ARB_texture_compression_rgtc, GL_ARB_texture_cube_map,
    GL_ARB_texture_cube_map_array, GL_ARB_texture_env_add,
    GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar,
    GL_ARB_texture_env_dot3, GL_ARB_texture_float, GL_ARB_texture_gather,
    GL_ARB_texture_mirror_clamp_to_edge, GL_ARB_texture_mirrored_repeat,
    GL_ARB_texture_multisample, GL_ARB_texture_non_power_of_two,
    GL_ARB_texture_query_levels, GL_ARB_texture_query_lod,
    GL_ARB_texture_rectangle, GL_ARB_texture_rg, GL_ARB_texture_rgb10_a2ui,
    GL_ARB_texture_stencil8, GL_ARB_texture_storage,
    GL_ARB_texture_storage_multisample, GL_ARB_texture_swizzle,
    GL_ARB_texture_view, GL_ARB_timer_query, GL_ARB_transform_feedback2,
    GL_ARB_transform_feedback_instanced, GL_ARB_transpose_matrix,
    GL_ARB_uniform_buffer_object, GL_ARB_vertex_array_bgra,
    GL_ARB_vertex_array_object, GL_ARB_vertex_attrib_binding,
    GL_ARB_vertex_buffer_object, GL_ARB_vertex_program, GL_ARB_vertex_shader,
    GL_ARB_vertex_type_10f_11f_11f_rev, GL_ARB_vertex_type_2_10_10_10_rev,
    GL_ARB_viewport_array, GL_ARB_window_pos, GL_ATI_draw_buffers,
    GL_ATI_texture_float, GL_ATI_texture_mirror_once,
    GL_EXTX_framebuffer_mixed_formats, GL_EXT_Cg_shader, GL_EXT_abgr,
    GL_EXT_bgra, GL_EXT_bindable_uniform, GL_EXT_blend_color,
    GL_EXT_blend_equation_separate, GL_EXT_blend_func_separate,
    GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_compiled_vertex_array,
    GL_EXT_depth_bounds_test, GL_EXT_direct_state_access,
    GL_EXT_draw_buffers2, GL_EXT_draw_instanced, GL_EXT_draw_range_elements,
    GL_EXT_fog_coord, GL_EXT_framebuffer_blit, GL_EXT_framebuffer_multisample,
    GL_EXT_framebuffer_multisample_blit_scaled, GL_EXT_framebuffer_object,
    GL_EXT_framebuffer_sRGB, GL_EXT_geometry_shader4,
    GL_EXT_gpu_program_parameters, GL_EXT_gpu_shader4,
    GL_EXT_import_sync_object, GL_EXT_multi_draw_arrays,
    GL_EXT_packed_depth_stencil, GL_EXT_packed_float, GL_EXT_packed_pixels,
    GL_EXT_pixel_buffer_object, GL_EXT_point_parameters,
    GL_EXT_provoking_vertex, GL_EXT_rescale_normal, GL_EXT_secondary_color,
    GL_EXT_separate_shader_objects, GL_EXT_separate_specular_color,
    GL_EXT_shader_integer_mix, GL_EXT_shadow_funcs, GL_EXT_stencil_two_side,
    GL_EXT_stencil_wrap, GL_EXT_texture3D, GL_EXT_texture_array,
    GL_EXT_texture_buffer_object, GL_EXT_texture_compression_dxt1,
    GL_EXT_texture_compression_latc, GL_EXT_texture_compression_rgtc,
    GL_EXT_texture_compression_s3tc, GL_EXT_texture_cube_map,
    GL_EXT_texture_edge_clamp, GL_EXT_texture_env_add,
    GL_EXT_texture_env_combine, GL_EXT_texture_env_dot3,
    GL_EXT_texture_filter_anisotropic, GL_EXT_texture_integer,
    GL_EXT_texture_lod, GL_EXT_texture_lod_bias, GL_EXT_texture_mirror_clamp,
    GL_EXT_texture_object, GL_EXT_texture_sRGB, GL_EXT_texture_sRGB_decode,
    GL_EXT_texture_shared_exponent, GL_EXT_texture_storage,
    GL_EXT_texture_swizzle, GL_EXT_timer_query, GL_EXT_transform_feedback2,
    GL_EXT_vertex_array, GL_EXT_vertex_array_bgra, GL_EXT_x11_sync_object,
    GL_IBM_rasterpos_clip, GL_IBM_texture_mirrored_repeat, GL_KHR_debug,
    GL_KTX_buffer_region, GL_NVX_conditional_render, GL_NVX_gpu_memory_info,
    GL_NV_ES1_1_compatibility, GL_NV_blend_square, GL_NV_conditional_render,
    GL_NV_copy_depth_to_color, GL_NV_copy_image, GL_NV_depth_buffer_float,
    GL_NV_depth_clamp, GL_NV_explicit_multisample, GL_NV_fence,
    GL_NV_float_buffer, GL_NV_fog_distance, GL_NV_fragment_program,
    GL_NV_fragment_program2, GL_NV_fragment_program_option,
    GL_NV_framebuffer_multisample_coverage, GL_NV_geometry_shader4,
    GL_NV_gpu_program4, GL_NV_gpu_program4_1, GL_NV_half_float,
    GL_NV_light_max_exponent, GL_NV_multisample_coverage,
    GL_NV_multisample_filter_hint, GL_NV_occlusion_query,
    GL_NV_packed_depth_stencil, GL_NV_parameter_buffer_object,
    GL_NV_parameter_buffer_object2, GL_NV_path_rendering,
    GL_NV_pixel_data_range, GL_NV_point_sprite, GL_NV_primitive_restart,
    GL_NV_register_combiners, GL_NV_register_combiners2,
    GL_NV_shader_buffer_load, GL_NV_texgen_reflection, GL_NV_texture_barrier,
    GL_NV_texture_compression_vtc, GL_NV_texture_env_combine4,
    GL_NV_texture_expand_normal, GL_NV_texture_multisample,
    GL_NV_texture_rectangle, GL_NV_texture_shader, GL_NV_texture_shader2,
    GL_NV_texture_shader3, GL_NV_transform_feedback,
    GL_NV_transform_feedback2, GL_NV_vdpau_interop, GL_NV_vertex_array_range,
    GL_NV_vertex_array_range2, GL_NV_vertex_buffer_unified_memory,
    GL_NV_vertex_program, GL_NV_vertex_program1_1, GL_NV_vertex_program2,
    GL_NV_vertex_program2_option, GL_NV_vertex_program3, GL_S3_s3tc,
    GL_SGIS_generate_mipmap, GL_SGIS_texture_lod, GL_SGIX_depth_texture,
    GL_SGIX_shadow, GL_SUN_slice_accum
    OpenGL version string: 3.3.0 NVIDIA 340.76
    OpenGL shading language version string: 3.30 NVIDIA via Cg compiler
    OpenGL context flags: (none)
    OpenGL profile mask: (none)
    OpenGL extensions:
    GL_ARB_ES2_compatibility, GL_ARB_ES3_compatibility,
    GL_ARB_arrays_of_arrays, GL_ARB_base_instance, GL_ARB_blend_func_extended,
    GL_ARB_clear_buffer_object, GL_ARB_color_buffer_float,
    GL_ARB_compatibility, GL_ARB_compressed_texture_pixel_storage,
    GL_ARB_conservative_depth, GL_ARB_copy_buffer, GL_ARB_copy_image,
    GL_ARB_debug_output, GL_ARB_depth_buffer_float, GL_ARB_depth_clamp,
    GL_ARB_depth_texture, GL_ARB_draw_buffers, GL_ARB_draw_buffers_blend,
    GL_ARB_draw_elements_base_vertex, GL_ARB_draw_instanced,
    GL_ARB_enhanced_layouts, GL_ARB_explicit_attrib_location,
    GL_ARB_explicit_uniform_location, GL_ARB_fragment_coord_conventions,
    GL_ARB_fragment_layer_viewport, GL_ARB_fragment_program,
    GL_ARB_fragment_program_shadow, GL_ARB_fragment_shader,
    GL_ARB_framebuffer_no_attachments, GL_ARB_framebuffer_object,
    GL_ARB_framebuffer_sRGB, GL_ARB_geometry_shader4,
    GL_ARB_get_program_binary, GL_ARB_half_float_pixel,
    GL_ARB_half_float_vertex, GL_ARB_imaging, GL_ARB_instanced_arrays,
    GL_ARB_internalformat_query, GL_ARB_internalformat_query2,
    GL_ARB_invalidate_subdata, GL_ARB_map_buffer_alignment,
    GL_ARB_map_buffer_range, GL_ARB_multi_bind, GL_ARB_multisample,
    GL_ARB_multitexture, GL_ARB_occlusion_query, GL_ARB_occlusion_query2,
    GL_ARB_pixel_buffer_object, GL_ARB_point_parameters, GL_ARB_point_sprite,
    GL_ARB_program_interface_query, GL_ARB_provoking_vertex,
    GL_ARB_robust_buffer_access_behavior, GL_ARB_robustness,
    GL_ARB_sample_shading, GL_ARB_sampler_objects, GL_ARB_seamless_cube_map,
    GL_ARB_separate_shader_objects, GL_ARB_shader_bit_encoding,
    GL_ARB_shader_objects, GL_ARB_shader_texture_lod,
    GL_ARB_shading_language_100, GL_ARB_shading_language_420pack,
    GL_ARB_shading_language_include, GL_ARB_shading_language_packing,
    GL_ARB_shadow, GL_ARB_stencil_texturing, GL_ARB_sync,
    GL_ARB_texture_border_clamp, GL_ARB_texture_buffer_object,
    GL_ARB_texture_buffer_range, GL_ARB_texture_compression,
    GL_ARB_texture_compression_rgtc, GL_ARB_texture_cube_map,
    GL_ARB_texture_cube_map_array, GL_ARB_texture_env_add,
    GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar,
    GL_ARB_texture_env_dot3, GL_ARB_texture_float, GL_ARB_texture_gather,
    GL_ARB_texture_mirror_clamp_to_edge, GL_ARB_texture_mirrored_repeat,
    GL_ARB_texture_multisample, GL_ARB_texture_non_power_of_two,
    GL_ARB_texture_query_levels, GL_ARB_texture_query_lod,
    GL_ARB_texture_rectangle, GL_ARB_texture_rg, GL_ARB_texture_rgb10_a2ui,
    GL_ARB_texture_stencil8, GL_ARB_texture_storage,
    GL_ARB_texture_storage_multisample, GL_ARB_texture_swizzle,
    GL_ARB_texture_view, GL_ARB_timer_query, GL_ARB_transform_feedback2,
    GL_ARB_transform_feedback_instanced, GL_ARB_transpose_matrix,
    GL_ARB_uniform_buffer_object, GL_ARB_vertex_array_bgra,
    GL_ARB_vertex_array_object, GL_ARB_vertex_attrib_binding,
    GL_ARB_vertex_buffer_object, GL_ARB_vertex_program, GL_ARB_vertex_shader,
    GL_ARB_vertex_type_10f_11f_11f_rev, GL_ARB_vertex_type_2_10_10_10_rev,
    GL_ARB_viewport_array, GL_ARB_window_pos, GL_ATI_draw_buffers,
    GL_ATI_texture_float, GL_ATI_texture_mirror_once,
    GL_EXTX_framebuffer_mixed_formats, GL_EXT_Cg_shader, GL_EXT_abgr,
    GL_EXT_bgra, GL_EXT_bindable_uniform, GL_EXT_blend_color,
    GL_EXT_blend_equation_separate, GL_EXT_blend_func_separate,
    GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_compiled_vertex_array,
    GL_EXT_depth_bounds_test, GL_EXT_direct_state_access,
    GL_EXT_draw_buffers2, GL_EXT_draw_instanced, GL_EXT_draw_range_elements,
    GL_EXT_fog_coord, GL_EXT_framebuffer_blit, GL_EXT_framebuffer_multisample,
    GL_EXT_framebuffer_multisample_blit_scaled, GL_EXT_framebuffer_object,
    GL_EXT_framebuffer_sRGB, GL_EXT_geometry_shader4,
    GL_EXT_gpu_program_parameters, GL_EXT_gpu_shader4,
    GL_EXT_import_sync_object, GL_EXT_multi_draw_arrays,
    GL_EXT_packed_depth_stencil, GL_EXT_packed_float, GL_EXT_packed_pixels,
    GL_EXT_pixel_buffer_object, GL_EXT_point_parameters,
    GL_EXT_provoking_vertex, GL_EXT_rescale_normal, GL_EXT_secondary_color,
    GL_EXT_separate_shader_objects, GL_EXT_separate_specular_color,
    GL_EXT_shader_integer_mix, GL_EXT_shadow_funcs, GL_EXT_stencil_two_side,
    GL_EXT_stencil_wrap, GL_EXT_texture3D, GL_EXT_texture_array,
    GL_EXT_texture_buffer_object, GL_EXT_texture_compression_dxt1,
    GL_EXT_texture_compression_latc, GL_EXT_texture_compression_rgtc,
    GL_EXT_texture_compression_s3tc, GL_EXT_texture_cube_map,
    GL_EXT_texture_edge_clamp, GL_EXT_texture_env_add,
    GL_EXT_texture_env_combine, GL_EXT_texture_env_dot3,
    GL_EXT_texture_filter_anisotropic, GL_EXT_texture_integer,
    GL_EXT_texture_lod, GL_EXT_texture_lod_bias, GL_EXT_texture_mirror_clamp,
    GL_EXT_texture_object, GL_EXT_texture_sRGB, GL_EXT_texture_sRGB_decode,
    GL_EXT_texture_shared_exponent, GL_EXT_texture_storage,
    GL_EXT_texture_swizzle, GL_EXT_timer_query, GL_EXT_transform_feedback2,
    GL_EXT_vertex_array, GL_EXT_vertex_array_bgra, GL_EXT_x11_sync_object,
    GL_IBM_rasterpos_clip, GL_IBM_texture_mirrored_repeat, GL_KHR_debug,
    GL_KTX_buffer_region, GL_NVX_conditional_render, GL_NVX_gpu_memory_info,
    GL_NV_ES1_1_compatibility, GL_NV_blend_square, GL_NV_conditional_render,
    GL_NV_copy_depth_to_color, GL_NV_copy_image, GL_NV_depth_buffer_float,
    GL_NV_depth_clamp, GL_NV_explicit_multisample, GL_NV_fence,
    GL_NV_float_buffer, GL_NV_fog_distance, GL_NV_fragment_program,
    GL_NV_fragment_program2, GL_NV_fragment_program_option,
    GL_NV_framebuffer_multisample_coverage, GL_NV_geometry_shader4,
    GL_NV_gpu_program4, GL_NV_gpu_program4_1, GL_NV_half_float,
    GL_NV_light_max_exponent, GL_NV_multisample_coverage,
    GL_NV_multisample_filter_hint, GL_NV_occlusion_query,
    GL_NV_packed_depth_stencil, GL_NV_parameter_buffer_object,
    GL_NV_parameter_buffer_object2, GL_NV_path_rendering,
    GL_NV_pixel_data_range, GL_NV_point_sprite, GL_NV_primitive_restart,
    GL_NV_register_combiners, GL_NV_register_combiners2,
    GL_NV_shader_buffer_load, GL_NV_texgen_reflection, GL_NV_texture_barrier,
    GL_NV_texture_compression_vtc, GL_NV_texture_env_combine4,
    GL_NV_texture_expand_normal, GL_NV_texture_multisample,
    GL_NV_texture_rectangle, GL_NV_texture_shader, GL_NV_texture_shader2,
    GL_NV_texture_shader3, GL_NV_transform_feedback,
    GL_NV_transform_feedback2, GL_NV_vdpau_interop, GL_NV_vertex_array_range,
    GL_NV_vertex_array_range2, GL_NV_vertex_buffer_unified_memory,
    GL_NV_vertex_program, GL_NV_vertex_program1_1, GL_NV_vertex_program2,
    GL_NV_vertex_program2_option, GL_NV_vertex_program3, GL_S3_s3tc,
    GL_SGIS_generate_mipmap, GL_SGIS_texture_lod, GL_SGIX_depth_texture,
    GL_SGIX_shadow, GL_SUN_slice_accum
    OpenGL ES profile version string: OpenGL ES 2.0 NVIDIA 340.76 340.76
    OpenGL ES profile shading language version string: OpenGL ES GLSL ES 1.00
    OpenGL ES profile extensions:
    GL_EXT_blend_minmax, GL_EXT_color_buffer_half_float, GL_EXT_debug_label,
    GL_EXT_frag_depth, GL_EXT_map_buffer_range,
    GL_EXT_occlusion_query_boolean, GL_EXT_robustness, GL_EXT_sRGB,
    GL_EXT_sRGB_write_control, GL_EXT_separate_shader_objects,
    GL_EXT_shader_integer_mix, GL_EXT_shadow_samplers,
    GL_EXT_texture_compression_dxt1, GL_EXT_texture_compression_s3tc,
    GL_EXT_texture_filter_anisotropic, GL_EXT_texture_format_BGRA8888,
    GL_EXT_texture_rg, GL_EXT_texture_sRGB_decode, GL_EXT_texture_storage,
    GL_EXT_unpack_subimage, GL_KHR_debug, GL_NV_bgr, GL_NV_copy_buffer,
    GL_NV_copy_image, GL_NV_draw_buffers, GL_NV_draw_instanced,
    GL_NV_explicit_attrib_location, GL_NV_fbo_color_attachments,
    GL_NV_framebuffer_blit, GL_NV_framebuffer_multisample,
    GL_NV_generate_mipmap_sRGB, GL_NV_instanced_arrays,
    GL_NV_non_square_matrices, GL_NV_occlusion_query_samples,
    GL_NV_pack_subimage, GL_NV_packed_float, GL_NV_packed_float_linear,
    GL_NV_pixel_buffer_object, GL_NV_read_buffer, GL_NV_read_depth,
    GL_NV_read_depth_stencil, GL_NV_read_stencil, GL_NV_sRGB_formats,
    GL_NV_shadow_samplers_array, GL_NV_shadow_samplers_cube,
    GL_NV_texture_array, GL_NV_texture_border_clamp,
    GL_NV_texture_compression_latc, GL_NV_texture_compression_s3tc,
    GL_NV_texture_compression_s3tc_update, GL_NV_timer_query,
    GL_OES_compressed_ETC1_RGB8_texture, GL_OES_depth24, GL_OES_depth32,
    GL_OES_depth_texture, GL_OES_depth_texture_cube_map,
    GL_OES_element_index_uint, GL_OES_fbo_render_mipmap,
    GL_OES_get_program_binary, GL_OES_mapbuffer, GL_OES_packed_depth_stencil,
    GL_OES_rgb8_rgba8, GL_OES_standard_derivatives, GL_OES_texture_half_float,
    GL_OES_texture_half_float_linear, GL_OES_texture_npot,
    GL_OES_vertex_array_object, GL_OES_vertex_half_float
    204 GLX Visuals
    visual x bf lv rg d st colorbuffer sr ax dp st accumbuffer ms cav
    id dep cl sp sz l ci b ro r g b a F gb bf th cl r g b a ns b eat
    0x021 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x022 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x024 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x025 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x026 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x027 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x028 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x029 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x02a 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x02b 24 tc 0 24 0 r y . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x02c 24 tc 0 32 0 r y . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x02d 24 tc 0 24 0 r . . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x02e 24 tc 0 32 0 r . . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x02f 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x030 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x031 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x032 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x033 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x034 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x035 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x036 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x037 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x038 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x039 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x03a 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x03b 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x03c 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x03d 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x03e 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x03f 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x040 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x041 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x042 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x043 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x044 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x045 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x046 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x047 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x048 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x049 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x04a 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x04b 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x04c 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x04d 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x04e 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x04f 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x050 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x051 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x052 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x053 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x054 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x055 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x056 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x057 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x058 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x059 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x05a 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x05b 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x05c 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x05d 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x05e 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x05f 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x060 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x061 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x062 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x063 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x064 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x065 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x066 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x067 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x068 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x069 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x06a 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x06b 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x06c 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x06d 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x06e 24 dc 0 24 0 r y . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x06f 24 dc 0 32 0 r y . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x070 24 dc 0 24 0 r . . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x071 24 dc 0 32 0 r . . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x072 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x073 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x074 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x075 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x076 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x077 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x078 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x079 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x07a 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x07b 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x07c 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x07d 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x07e 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x07f 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x080 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x081 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x082 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x083 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x084 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x085 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x086 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x087 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x088 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x089 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x08a 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x08b 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x08c 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x08d 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x08e 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x08f 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x090 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x091 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x092 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x093 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x094 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x095 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x096 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x097 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x098 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x099 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x09a 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x09b 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x09c 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x09d 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x09e 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x09f 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0a0 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0a1 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0a2 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0a3 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0a4 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0a5 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0a6 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0a7 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0a8 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0a9 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x023 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x0aa 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x0ab 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x0ac 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x0ad 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x0ae 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x0af 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x0b0 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x0b1 32 tc 0 24 0 r y . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x0b2 32 tc 0 32 0 r y . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x0b3 32 tc 0 24 0 r . . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x0b4 32 tc 0 32 0 r . . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x0b5 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x0b6 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x0b7 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x0b8 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x0b9 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x0ba 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x0bb 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x0bc 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x0bd 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x0be 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x0bf 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x0c0 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x0c1 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x0c2 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x0c3 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x0c4 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x0c5 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x0c6 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x0c7 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0c8 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0c9 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x0ca 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x0cb 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0cc 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0cd 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0ce 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0cf 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0d0 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0d1 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0d2 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0d3 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0d4 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0d5 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x0d6 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x0d7 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0d8 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0d9 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0da 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0db 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x0dc 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x0dd 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0de 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0df 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0e0 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x0e1 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0e2 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0e3 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0e4 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0e5 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0e6 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0e7 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0e8 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x0e9 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0ea 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0eb 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x0ec 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    287 GLXFBConfigs:
    visual x bf lv rg d st colorbuffer sr ax dp st accumbuffer ms cav
    id dep cl sp sz l ci b ro r g b a F gb bf th cl r g b a ns b eat
    0x0ed 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x0ee 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x0ef 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x0f0 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x0f1 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x0f2 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x0f3 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x0f4 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x0f5 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x0f6 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x0f7 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x0f8 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x0f9 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x0fa 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x0fb 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x0fc 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x0fd 24 tc 0 24 0 r y . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x0fe 24 dc 0 24 0 r y . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x0ff 24 tc 0 32 0 r y . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x100 24 dc 0 32 0 r y . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x101 24 tc 0 24 0 r . . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x102 24 dc 0 24 0 r . . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x103 24 tc 0 32 0 r . . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x104 24 dc 0 32 0 r . . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x105 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x106 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x107 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x108 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x109 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x10a 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x10b 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x10c 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x10d 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x10e 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x10f 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x110 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x111 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x112 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x113 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x114 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x115 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x116 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x117 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x118 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x119 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x11a 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x11b 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x11c 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x11d 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x11e 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x11f 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x120 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x121 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x122 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x123 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x124 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x125 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x126 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x127 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x128 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x129 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x12a 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x12b 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x12c 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x12d 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x12e 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x12f 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x130 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x131 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x132 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x133 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x134 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x135 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x136 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x137 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x138 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x139 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x13a 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x13b 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x13c 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x13d 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x13e 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x13f 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x140 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x141 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x142 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x143 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x144 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x145 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x146 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x147 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x148 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x149 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x14a 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x14b 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x14c 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x14d 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x14e 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x14f 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x150 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x151 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x152 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x153 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x154 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x155 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x156 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x157 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x158 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x159 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x15a 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x15b 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x15c 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x15d 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x15e 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x15f 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x160 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x161 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x162 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x163 24 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x164 24 dc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x165 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x166 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x167 24 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x168 24 dc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x169 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x16a 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x16b 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x16c 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x16d 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x16e 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x16f 24 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x170 24 dc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x171 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x172 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x173 24 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x174 24 dc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x175 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x176 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x177 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 0 0 None
    0x178 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 0 0 None
    0x179 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x17a 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x17b 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 0 0 None
    0x17c 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 0 0 None
    0x17d 32 tc 0 24 0 r y . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x17e 32 tc 0 32 0 r y . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x17f 32 tc 0 24 0 r . . 8 8 8 0 . s 4 0 0 16 16 16 16 0 0 None
    0x180 32 tc 0 32 0 r . . 8 8 8 8 . s 4 0 0 16 16 16 16 0 0 None
    0x181 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x182 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x183 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x184 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x185 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x186 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 2 1 Ncon
    0x187 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x188 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 4 1 Ncon
    0x189 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x18a 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x18b 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x18c 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x18d 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x18e 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 2 1 Ncon
    0x18f 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x190 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 4 1 Ncon
    0x191 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x192 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x193 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x194 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x195 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x196 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x197 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x198 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x199 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x19a 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x19b 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x19c 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x19d 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x19e 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x19f 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1a0 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1a1 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x1a2 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x1a3 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x1a4 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x1a5 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x1a6 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x1a7 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x1a8 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 8 1 Ncon
    0x1a9 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x1aa 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x1ab 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x1ac 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 0 16 16 16 16 16 1 Ncon
    0x1ad 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x1ae 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x1af 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1b0 32 tc 0 24 0 r y . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1b1 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1b2 32 tc 0 32 0 r y . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1b3 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x1b4 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 8 1 Ncon
    0x1b5 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1b6 32 tc 0 24 0 r . . 8 8 8 0 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1b7 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1b8 32 tc 0 32 0 r . . 8 8 8 8 . s 4 24 8 16 16 16 16 16 1 Ncon
    0x1b9 0 sg 0 16 0 r y . 5 6 5 0 . . 4 16 0 16 16 16 16 0 0 None
    0x1ba 0 sg 0 16 0 r . . 5 6 5 0 . . 4 16 0 16 16 16 16 0 0 None
    0x1bb 0 sg 0 16 0 r y . 5 6 5 0 . . 4 24 0 16 16 16 16 0 0 None
    0x1bc 0 sg 0 16 0 r . . 5 6 5 0 . . 4 24 0 16 16 16 16 0 0 None
    0x1bd 0 sg 0 16 0 r y . 5 6 5 0 . . 4 24 8 16 16 16 16 0 0 None
    0x1be 0 sg 0 16 0 r . . 5 6 5 0 . . 4 24 8 16 16 16 16 0 0 None
    0x1bf 0 sg 0 16 0 r y . 5 6 5 0 . . 4 0 0 16 16 16 16 0 0 None
    0x1c0 0 sg 0 16 0 r . . 5 6 5 0 . . 4 0 0 16 16 16 16 0 0 None
    0x1c1 0 sg 0 0 0 r . . 0 0 0 0 . . 4 16 0 16 16 16 16 0 0 None
    0x1c2 0 sg 0 0 0 r . . 0 0 0 0 . . 4 24 0 16 16 16 16 0 0 None
    0x1c3 0 sg 0 0 0 r . . 0 0 0 0 . . 4 24 8 16 16 16 16 0 0 None
    0x1c4 0 sg 0 32 0 r . . 16 16 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1c5 0 sg 0 32 0 . . 16 16 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1c6 0 sg 0 32 0 r y . 16 16 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1c7 0 sg 0 32 0 y . 16 16 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1c8 0 sg 0 32 0 r . . 32 0 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1c9 0 sg 0 32 0 . . 32 0 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1ca 0 sg 0 32 0 r y . 32 0 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1cb 0 sg 0 32 0 y . 32 0 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1cc 0 sg 0 64 0 r . . 16 16 16 16 f . 4 0 0 16 16 16 16 0 0 None
    0x1cd 0 sg 0 64 0 . . 16 16 16 16 f . 4 0 0 16 16 16 16 0 0 None
    0x1ce 0 sg 0 64 0 r y . 16 16 16 16 f . 4 0 0 16 16 16 16 0 0 None
    0x1cf 0 sg 0 64 0 y . 16 16 16 16 f . 4 0 0 16 16 16 16 0 0 None
    0x1d0 0 sg 0 128 0 r . . 32 32 32 32 f . 4 0 0 16 16 16 16 0 0 None
    0x1d1 0 sg 0 128 0 . . 32 32 32 32 f . 4 0 0 16 16 16 16 0 0 None
    0x1d2 0 sg 0 128 0 r y . 32 32 32 32 f . 4 0 0 16 16 16 16 0 0 None
    0x1d3 0 sg 0 128 0 y . 32 32 32 32 f . 4 0 0 16 16 16 16 0 0 None
    0x1d4 0 sg 0 32 0 r . . 16 16 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1d5 0 sg 0 32 0 . . 16 16 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1d6 0 sg 0 32 0 r y . 16 16 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1d7 0 sg 0 32 0 y . 16 16 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1d8 0 sg 0 32 0 r . . 16 16 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x1d9 0 sg 0 32 0 . . 16 16 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x1da 0 sg 0 32 0 r y . 16 16 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x1db 0 sg 0 32 0 y . 16 16 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x1dc 0 sg 0 32 0 r . . 32 0 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1dd 0 sg 0 32 0 . . 32 0 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1de 0 sg 0 32 0 r y . 32 0 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1df 0 sg 0 32 0 y . 32 0 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1e0 0 sg 0 32 0 r . . 32 0 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x1e1 0 sg 0 32 0 . . 32 0 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x1e2 0 sg 0 32 0 r y . 32 0 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x1e3 0 sg 0 32 0 y . 32 0 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x1e4 0 sg 0 64 0 r . . 16 16 16 16 f . 4 24 0 16 16 16 16 0 0 None
    0x1e5 0 sg 0 64 0 . . 16 16 16 16 f . 4 24 0 16 16 16 16 0 0 None
    0x1e6 0 sg 0 64 0 r y . 16 16 16 16 f . 4 24 0 16 16 16 16 0 0 None
    0x1e7 0 sg 0 64 0 y . 16 16 16 16 f . 4 24 0 16 16 16 16 0 0 None
    0x1e8 0 sg 0 64 0 r . . 16 16 16 16 f . 4 24 8 16 16 16 16 0 0 None
    0x1e9 0 sg 0 64 0 . . 16 16 16 16 f . 4 24 8 16 16 16 16 0 0 None
    0x1ea 0 sg 0 64 0 r y . 16 16 16 16 f . 4 24 8 16 16 16 16 0 0 None
    0x1eb 0 sg 0 64 0 y . 16 16 16 16 f . 4 24 8 16 16 16 16 0 0 None
    0x1ec 0 sg 0 128 0 r . . 32 32 32 32 f . 4 24 0 16 16 16 16 0 0 None
    0x1ed 0 sg 0 128 0 . . 32 32 32 32 f . 4 24 0 16 16 16 16 0 0 None
    0x1ee 0 sg 0 128 0 r y . 32 32 32 32 f . 4 24 0 16 16 16 16 0 0 None
    0x1ef 0 sg 0 128 0 y . 32 32 32 32 f . 4 24 0 16 16 16 16 0 0 None
    0x1f0 0 sg 0 128 0 r . . 32 32 32 32 f . 4 24 8 16 16 16 16 0 0 None
    0x1f1 0 sg 0 128 0 . . 32 32 32 32 f . 4 24 8 16 16 16 16 0 0 None
    0x1f2 0 sg 0 128 0 r y . 32 32 32 32 f . 4 24 8 16 16 16 16 0 0 None
    0x1f3 0 sg 0 128 0 y . 32 32 32 32 f . 4 24 8 16 16 16 16 0 0 None
    0x1f4 0 sg 0 16 0 r . . 16 0 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1f5 0 sg 0 16 0 . . 16 0 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1f6 0 sg 0 16 0 r y . 16 0 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1f7 0 sg 0 16 0 y . 16 0 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1f8 0 sg 0 64 0 r . . 32 32 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1f9 0 sg 0 64 0 . . 32 32 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1fa 0 sg 0 64 0 r y . 32 32 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1fb 0 sg 0 64 0 y . 32 32 0 0 f . 4 0 0 16 16 16 16 0 0 None
    0x1fc 0 sg 0 16 0 r . . 16 0 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1fd 0 sg 0 16 0 . . 16 0 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1fe 0 sg 0 16 0 r y . 16 0 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x1ff 0 sg 0 16 0 y . 16 0 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x200 0 sg 0 16 0 r . . 16 0 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x201 0 sg 0 16 0 . . 16 0 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x202 0 sg 0 16 0 r y . 16 0 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x203 0 sg 0 16 0 y . 16 0 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x204 0 sg 0 64 0 r . . 32 32 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x205 0 sg 0 64 0 . . 32 32 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x206 0 sg 0 64 0 r y . 32 32 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x207 0 sg 0 64 0 y . 32 32 0 0 f . 4 24 0 16 16 16 16 0 0 None
    0x208 0 sg 0 64 0 r . . 32 32 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x209 0 sg 0 64 0 . . 32 32 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x20a 0 sg 0 64 0 r y . 32 32 0 0 f . 4 24 8 16 16 16 16 0 0 None
    0x20b 0 sg 0 64 0 y . 32 32 0 0 f . 4 24 8 16 16 16 16 0 0 None
    name of display: :0
    display: :0 screen: 0
    direct rendering: Yes
    server glx vendor string: NVIDIA Corporation
    server glx version string: 1.4
    server glx extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_profile,
    GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float,
    GLX_ARB_multisample, GLX_EXT_buffer_age,
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile,
    GLX_EXT_framebuffer_sRGB, GLX_EXT_stereo_tree, GLX_EXT_swap_control,
    GLX_EXT_swap_control_tear, GLX_EXT_texture_from_pixmap,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_NV_delay_before_swap,
    GLX_NV_float_buffer, GLX_NV_multisample_coverage, GLX_SGIX_fbconfig,
    GLX_SGIX_pbuffer, GLX_SGI_swap_control, GLX_SGI_video_sync
    client glx vendor string: NVIDIA Corporation
    client glx version string: 1.4
    client glx extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_profile,
    GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float,
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_buffer_age,
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile,
    GLX_EXT_fbconfig_packed_float, GLX_EXT_framebuffer_sRGB,
    GLX_EXT_import_context, GLX_EXT_stereo_tree, GLX_EXT_swap_control,
    GLX_EXT_swap_control_tear, GLX_EXT_texture_from_pixmap,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_NV_copy_image,
    GLX_NV_delay_before_swap, GLX_NV_float_buffer,
    GLX_NV_multisample_coverage, GLX_NV_present_video, GLX_NV_swap_group,
    GLX_NV_video_capture, GLX_NV_video_out, GLX_SGIX_fbconfig,
    GLX_SGIX_pbuffer, GLX_SGI_swap_control, GLX_SGI_video_sync
    GLX version: 1.4
    GLX extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_profile,
    GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float,
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_buffer_age,
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile,
    GLX_EXT_framebuffer_sRGB, GLX_EXT_stereo_tree, GLX_EXT_swap_control,
    GLX_EXT_swap_control_tear, GLX_EXT_texture_from_pixmap,
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_NV_delay_before_swap,
    GLX_NV_float_buffer, GLX_NV_multisample_coverage, GLX_SGIX_fbconfig,
    GLX_SGIX_pbuffer, GLX_SGI_swap_control, GLX_SGI_video_sync
    OpenGL vendor string: NVIDIA Corporation
    OpenGL renderer string: GeForce 210/PCIe/SSE2
    OpenGL core profile version string: 3.3.0 NVIDIA 340.76
    OpenGL core profile shading language version string: 3.30 NVIDIA via Cg compiler
    OpenGL core profile context flags: (none)
    OpenGL core profile profile mask: core profile
    OpenGL core profile extensions:
    GL_ARB_ES2_compatibility, GL_ARB_ES3_compatibility,
    GL_ARB_arrays_of_arrays, GL_ARB_base_instance, GL_ARB_blend_func_extended,
    GL_ARB_clear_buffer_object, GL_ARB_color_buffer_float,
    GL_ARB_compressed_texture_pixel_storage, GL_ARB_conservative_depth,
    GL_ARB_copy_buffer, GL_ARB_copy_image, GL_ARB_debug_output,
    GL_ARB_depth_buffer_float, GL_ARB_depth_clamp, GL_ARB_depth_texture,
    GL_ARB_draw_buffers, GL_ARB_draw_buffers_blend,
    GL_ARB_draw_elements_base_vertex, GL_ARB_draw_instanced,
    GL_ARB_enhanced_layouts, GL_ARB_explicit_attrib_location,
    GL_ARB_explicit_uniform_location, GL_ARB_fragment_coord_conventions,
    GL_ARB_fragment_layer_viewport, GL_ARB_fragment_program,
    GL_ARB_fragment_program_shadow, GL_ARB_fragment_shader,
    GL_ARB_framebuffer_no_attachments, GL_ARB_framebuffer_object,
    GL_ARB_framebuffer_sRGB, GL_ARB_geometry_shader4,
    GL_ARB_get_program_binary, GL_ARB_half_float_pixel,
    GL_ARB_half_float_vertex, GL_ARB_imaging, GL_ARB_instanced_arrays,
    GL_ARB_internalformat_query, GL_ARB_internalformat_query2,
    GL_ARB_invalidate_subdata, GL_ARB_map_buffer_alignment,
    GL_ARB_map_buffer_range, GL_ARB_multi_bind, GL_ARB_multisample

    Thanks for reply guys.
    berbae wrote:Just for testing, try the nouveau driver, following the wiki, and tell if you still have this problem.
    Before posting to forum I also tried nouveau following usual Arch Wiki. End result on nouveau is even worse than prop nvidia driver (see screen shots).
    brebs wrote:Some things to try:
    Thanks and this worked!!
    Passing vmalloc=256m and change in xong.conf provided good results. lspci -v shows same output regardless of adding vmalloc to kernel:
    01:00.0 VGA compatible controller: NVIDIA Corporation GT218 [GeForce 210] (rev a2) (prog-if 00 [VGA controller])
    Subsystem: Gigabyte Technology Co., Ltd Device 3525
    Flags: bus master, fast devsel, latency 0, IRQ 25
    Memory at fb000000 (32-bit, non-prefetchable) [size=16M]
    Memory at b0000000 (64-bit, prefetchable) [size=256M]
    Memory at ce000000 (64-bit, prefetchable) [size=32M]
    I/O ports at ef00 [size=128]
    [virtual] Expansion ROM at fc000000 [disabled] [size=512K]
    Capabilities: <access denied>
    Kernel driver in use: nvidia
    Kernel modules: nouveau, nvidia
    Last question for my understanding if you can answer:
    1. My GeForce 210 card has 1gb memory. Is 256m is coming from system RAM or coming from 1gb GPU's own memory. If case is latter, do you think making it full 1gb will help performance (like gaming ,etc)

  • [SOLVED] Replacing an existing Arch drive with a new one

    I want to swap out my SATA drive with a new one, without reloading anything, nor borking anything..... The original drive is 1TB, and the new HDD is also 1TB, albeit from different manufacturers.
    I have WIn 7 in a 256Gb partition, and Arch in the extended partitions worth 750Gb. The drive is a 1 TB drive. (Hitachi)
    Arch is my primary OS where I do all my design/cad work and office related stuff. Windows is only used as a gaming platform.
    I have been given a NIB 1Tb Seagate Constellation enterprise class drive. It is significantly faster than my existing drive. I wish to switch the drives out.
    I am really wanting to avoid a complete reload of both OS's.
    My son tells me to use "dd" which I am familiar with, but warns that upon reboot Windows will likely have issues and be very slow.
    I have a heavy workload at the moment, and just don't have a day to spend reloading both OS's from scratch.
    Is there a better way to image a drive, partition scheme, boot sector, the whole smash (I have a 2TB drive to hold the image) .......R&R the old drive, install the new drive, then have the software then copy back over to the new drive the image with the partitioning scheme and boot sector (syslinux) without borking anything up in either OS?
    Assistance is greatly appreciated. I have not needed to do this before...and I'm nervous.
    Thank You!
    Sincerely and respectfully,
    Dave
    Last edited by dcbdbis (2013-03-02 04:48:08)

    FWIW, check if your new drive is one meant for the newer 4K sectors.  If so, you should only blindly dd it if the old drive was also set up this way.  If not, then you may need to align the copied data to the 4K sectors, or set up the partitions on the new drive appropriately.  (Western Digital, for example, has an align tool that buzzes through the drive edging everything over to align properly.  If you don't do this and your drive is copied out of alignment, then you can get some slowdown.)
    Quite possibly not an issue for you, and there's more to it than I've typed.  It's not hard to do right if needed.  GParted can partition on the correct boundaries, and clonezilla quite possibly is aware as well (I haven't looked). You just need to see if your drives are set up as advanced format (or whatever it's called) and copy accordingly if needed.
    I only mention this because there are currently mixed drive types out there and a surprising number of people don't know anything about this and might be taken by surprise.

  • How to install windows on a system already running Arch? [SOLVED]

    Hello.
    I use Arch for my daily use, but I'm having a big problem, my little brother. He wants to play videogames on the laptop and that's it, I know you can do it from Arch but I honestly don't want to install Steam neither anything else than what I need so I'm going to install Windows for him to play. I'm currently partitioning my HDD, but I was reading and I found out that you need GRUB in order to dual boot, I use syslinux, so my main question is, can I simply install windows and then install GRUB? Or do I have to do something before this?
    Any help is welcome as I'm really new to dual booting Linux with Windows and the last time I used Windows was in 2006. So please help me or refer me to a good article as I'm scared to break something.
    Last edited by d15d18a (2014-12-24 04:28:58)

    Syslinux works great!! And yeah, I had an option like that but it was inside Windows power management, not in my BIOS, I've dissabled it and it works like a charm... But I'm angry, I did all this, I bought this mother f***er 3 Steam games for more less 80 bucks, a 30 bucks PC gaming controller from Radioshack and he ended up downloading a Gameboy Emulator and playing some Pokémon game
    Thank you very much for the help, everything works fine now. And merry Christmas

  • Kworker constantly using 15/20% of CPU since upgrade to 2.6.36-ARCH

    Hi,
    Since upgrading to 2.6.36-ARCH kernel I've noticed that my CPU has a constant load on one of the cores:
    kworker/0:1 shows as using 61% CPU usage on one core.
    I cannot seem to find out much about what kworker is and what logs I need to look at to diagnose, can anyone point me in the right direction?
    Kind regards
    Craig
    ** Heres lsmod's output **
    Module Size Used by
    nls_cp437 4525 0
    vfat 8176 0
    fat 42802 1 vfat
    ipv6 245073 98
    ntfs 197714 0
    fuse 56432 5
    usb_storage 33980 1
    joydev 7631 0
    usbhid 32137 0
    hid 60496 1 usbhid
    nvidia 9187741 40
    snd_hda_codec_nvhdmi 13151 4
    snd_seq_dummy 1079 0
    snd_seq_oss 25040 0
    snd_seq_midi_event 4496 1 snd_seq_oss
    snd_seq 41688 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi_event
    snd_seq_device 4369 3 snd_seq_dummy,snd_seq_oss,snd_seq
    broadcom 5361 0
    tg3 112513 0
    snd_pcm_oss 33630 0
    snd_mixer_oss 14654 1 snd_pcm_oss
    ohci_hcd 18987 0
    libphy 14607 2 broadcom,tg3
    ehci_hcd 32812 0
    usbcore 115802 5 usb_storage,usbhid,ohci_hcd,ehci_hcd
    snd_hda_codec_intelhdmi 9553 1
    snd_hda_codec_realtek 198999 1
    shpchp 23005 0
    pci_hotplug 21555 1 shpchp
    psmouse 49765 0
    evdev 6660 9
    snd_hda_intel 19180 4
    snd_hda_codec 69419 4 snd_hda_codec_nvhdmi,snd_hda_codec_intelhdmi,snd_hda_codec_realtek,snd_hda_intel
    snd_hwdep 4764 1 snd_hda_codec
    snd_pcm 59168 4 snd_pcm_oss,snd_hda_intel,snd_hda_codec
    snd_timer 15455 3 snd_seq,snd_pcm
    snd 43283 17 snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_timer
    soundcore 4929 1 snd
    snd_page_alloc 5981 2 snd_hda_intel,snd_pcm
    i2c_i801 6946 0
    i2c_core 15634 2 nvidia,i2c_i801
    thermal 9690 0
    serio_raw 3566 0
    button 3746 0
    sg 20996 0
    iTCO_wdt 8677 0
    iTCO_vendor_support 1433 1 iTCO_wdt
    intel_agp 24075 0
    firewire_ohci 23292 0
    agpgart 22816 2 nvidia,intel_agp
    firewire_core 42849 1 firewire_ohci
    crc_itu_t 1053 1 firewire_core
    processor 22776 0
    dcdbas 4292 0
    vboxdrv 149186 0
    ext4 288101 3
    mbcache 4298 1 ext4
    jbd2 58372 1 ext4
    crc16 1053 1 ext4
    sr_mod 13217 0
    sd_mod 24384 7
    cdrom 31410 1 sr_mod
    pata_acpi 2308 0
    ata_piix 17935 4
    libata 140500 2 pata_acpi,ata_piix
    scsi_mod 106987 5 usb_storage,sg,sr_mod,sd_mod,libata
    **dmesg output:**
    Initializing cgroup subsys cpuset
    Initializing cgroup subsys cpu
    Linux version 2.6.36-ARCH (tobias@T-POWA-LX) (gcc version 4.5.1 (GCC) ) #1 SMP PREEMPT Wed Nov 24 06:44:11 UTC 2010
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 00000000bf780000 (usable)
    BIOS-e820: 00000000bf780000 - 00000000bf78e000 (ACPI data)
    BIOS-e820: 00000000bf78e000 - 00000000bf7d0000 (ACPI NVS)
    BIOS-e820: 00000000bf7d0000 - 00000000bf7e0000 (reserved)
    BIOS-e820: 00000000bf7ed000 - 00000000c0000000 (reserved)
    BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved)
    BIOS-e820: 0000000100000000 - 0000000138000000 (usable)
    Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    DMI present.
    e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
    e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    last_pfn = 0xbf780 max_arch_pfn = 0x100000
    MTRR default type: uncachable
    MTRR fixed ranges enabled:
    00000-9FFFF write-back
    A0000-BFFFF uncachable
    C0000-CFFFF write-protect
    D0000-DFFFF uncachable
    E0000-E7FFF write-through
    E8000-FFFFF write-protect
    MTRR variable ranges enabled:
    0 base 000000000 mask F00000000 write-back
    1 base 100000000 mask FC0000000 write-back
    2 base 0C0000000 mask FC0000000 uncachable
    3 disabled
    4 disabled
    5 disabled
    6 disabled
    7 disabled
    x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    e820 update range: 00000000c0000000 - 0000000100000000 (usable) ==> (reserved)
    e820 update range: 0000000000002000 - 0000000000010000 (usable) ==> (reserved)
    Scanning 1 areas for low memory corruption
    modified physical RAM map:
    modified: 0000000000000000 - 0000000000001000 (reserved)
    modified: 0000000000001000 - 0000000000002000 (usable)
    modified: 0000000000002000 - 0000000000010000 (reserved)
    modified: 0000000000010000 - 000000000009fc00 (usable)
    modified: 000000000009fc00 - 00000000000a0000 (reserved)
    modified: 00000000000e4000 - 0000000000100000 (reserved)
    modified: 0000000000100000 - 00000000bf780000 (usable)
    modified: 00000000bf780000 - 00000000bf78e000 (ACPI data)
    modified: 00000000bf78e000 - 00000000bf7d0000 (ACPI NVS)
    modified: 00000000bf7d0000 - 00000000bf7e0000 (reserved)
    modified: 00000000bf7ed000 - 00000000c0000000 (reserved)
    modified: 00000000fee00000 - 00000000fee01000 (reserved)
    modified: 00000000ffb00000 - 0000000100000000 (reserved)
    modified: 0000000100000000 - 0000000138000000 (usable)
    initial memory mapped : 0 - 01800000
    found SMP MP-table at [c00ff780] ff780
    init_memory_mapping: 0000000000000000-00000000377fe000
    0000000000 - 0000400000 page 4k
    0000400000 - 0037400000 page 2M
    0037400000 - 00377fe000 page 4k
    kernel direct mapping tables up to 377fe000 @ 15000-1a000
    RAMDISK: 7fe57000 - 7fff0000
    Allocated new RAMDISK: 00100000 - 00298455
    Move RAMDISK from 000000007fe57000 - 000000007ffef454 to 00100000 - 00298454
    ACPI: RSDP 000f9b00 00024 (v02 ACPIAM)
    ACPI: XSDT bf780100 0006C (v01 DELL FX09 20091106 MSFT 00000097)
    ACPI: FACP bf780290 000F4 (v04 DELL FX09 20091106 MSFT 00000097)
    ACPI: DSDT bf780660 05B02 (v02 1AAAA 1AAAA000 00000000 INTL 20051117)
    ACPI: FACS bf78e000 00040
    ACPI: APIC bf780390 0008C (v02 DELL FX09 20091106 MSFT 00000097)
    ACPI: MCFG bf780420 0003C (v01 DELL OEMMCFG 20091106 MSFT 00000097)
    ACPI: SLIC bf780460 00176 (v01 DELL FX09 20091106 MSFT 00000097)
    ACPI: OSFR bf7805e0 00080 (v01 DELL FX09 20091106 MSFT 00000097)
    ACPI: OEMB bf78e040 00072 (v01 DELL FX09 20091106 MSFT 00000097)
    ACPI: HPET bf78a660 00038 (v01 DELL OEMHPET 20091106 MSFT 00000097)
    ACPI: ASF! bf78a6a0 00099 (v32 LEGEND I865PASF 00000001 INTL 20051117)
    ACPI: SSDT bf78f800 00363 (v01 DpgPmm CpuPm 00000012 INTL 20051117)
    ACPI: Local APIC address 0xfee00000
    2175MB HIGHMEM available.
    887MB LOWMEM available.
    mapped low ram: 0 - 377fe000
    low ram: 0 - 377fe000
    Zone PFN ranges:
    DMA 0x00000001 -> 0x00001000
    Normal 0x00001000 -> 0x000377fe
    HighMem 0x000377fe -> 0x000bf780
    Movable zone start PFN for each node
    early_node_map[3] active PFN ranges
    0: 0x00000001 -> 0x00000002
    0: 0x00000010 -> 0x0000009f
    0: 0x00000100 -> 0x000bf780
    On node 0 totalpages: 784144
    free_area_init_node: node 0, pgdat c142d5c0, node_mem_map c1598020
    DMA zone: 32 pages used for memmap
    DMA zone: 0 pages reserved
    DMA zone: 3952 pages, LIFO batch:0
    Normal zone: 1744 pages used for memmap
    Normal zone: 221486 pages, LIFO batch:31
    HighMem zone: 4352 pages used for memmap
    HighMem zone: 552578 pages, LIFO batch:31
    Using APIC driver default
    ACPI: PM-Timer IO Port: 0x808
    ACPI: Local APIC address 0xfee00000
    ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
    ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
    ACPI: LAPIC (acpi_id[0x04] lapic_id[0x05] enabled)
    ACPI: LAPIC (acpi_id[0x05] lapic_id[0x84] disabled)
    ACPI: LAPIC (acpi_id[0x06] lapic_id[0x85] disabled)
    ACPI: LAPIC (acpi_id[0x07] lapic_id[0x86] disabled)
    ACPI: LAPIC (acpi_id[0x08] lapic_id[0x87] disabled)
    ACPI: IOAPIC (id[0x06] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 6, version 32, address 0xfec00000, GSI 0-23
    ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    ACPI: IRQ0 used by override.
    ACPI: IRQ2 used by override.
    ACPI: IRQ9 used by override.
    Using ACPI (MADT) for SMP configuration information
    ACPI: HPET id: 0x8086a701 base: 0xfed00000
    SMP: Allowing 8 CPUs, 4 hotplug CPUs
    nr_irqs_gsi: 40
    early_res array is doubled to 64 at [16000 - 167ff]
    PM: Registered nosave memory: 0000000000002000 - 0000000000010000
    PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000e4000
    PM: Registered nosave memory: 00000000000e4000 - 0000000000100000
    Allocating PCI resources starting at c0000000 (gap: c0000000:3ee00000)
    Booting paravirtualized kernel on bare hardware
    setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
    PERCPU: Embedded 13 pages/cpu @c3000000 s31488 r0 d21760 u524288
    pcpu-alloc: s31488 r0 d21760 u524288 alloc=1*4194304
    pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 778016
    Kernel command line: root=/dev/disk/by-uuid/3135d7b1-3c52-4afc-9f7f-990f0ebda296 ro
    PID hash table entries: 4096 (order: 2, 16384 bytes)
    Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    early_res array is doubled to 128 at [16800 - 177ff]
    allocated 15685100 bytes of page_cgroup
    please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Subtract (57 early reservations)
    #1 [0000001000 - 0000002000] EX TRAMPOLINE
    #2 [0001000000 - 000158fe8c] TEXT DATA BSS
    #3 [0001590000 - 0001596147] BRK
    #4 [00000ff790 - 0000100000] BIOS reserved
    #5 [00000ff780 - 00000ff790] MP-table mpf
    #6 [000009fc00 - 00000fc6c0] BIOS reserved
    #7 [00000fc80c - 00000ff780] BIOS reserved
    #8 [00000fc6c0 - 00000fc80c] MP-table mpc
    #9 [0000010000 - 0000011000] TRAMPOLINE
    #10 [0000011000 - 0000015000] ACPI WAKEUP
    #11 [0000015000 - 0000016000] PGTABLE
    #12 [0000100000 - 0000299000] NEW RAMDISK
    #13 [0001597000 - 0001598000] BOOTMEM
    #14 [0001598000 - 0002d88000] BOOTMEM
    #15 [000158fec0 - 000158fec4] BOOTMEM
    #16 [000158ff00 - 000158ffc0] BOOTMEM
    #17 [0001596180 - 00015961d4] BOOTMEM
    #18 [0002d88000 - 0002d8b000] BOOTMEM
    #19 [0001596200 - 00015962cc] BOOTMEM
    #20 [0002d8b000 - 0002d97000] BOOTMEM
    #21 [000158ffc0 - 000158ffe5] BOOTMEM
    #22 [0001596300 - 0001596327] BOOTMEM
    #23 [0001596340 - 00015964c8] BOOTMEM
    #24 [0001596500 - 0001596540] BOOTMEM
    #25 [0001596540 - 0001596580] BOOTMEM
    #26 [0001596580 - 00015965c0] BOOTMEM
    #27 [00015965c0 - 0001596600] BOOTMEM
    #28 [0001596600 - 0001596640] BOOTMEM
    #29 [0001596640 - 0001596680] BOOTMEM
    #30 [0001596680 - 00015966c0] BOOTMEM
    #31 [00015966c0 - 0001596700] BOOTMEM
    #32 [0001596700 - 0001596740] BOOTMEM
    #33 [0001596740 - 0001596780] BOOTMEM
    #34 [0001596780 - 00015967c0] BOOTMEM
    #35 [00015967c0 - 00015967d0] BOOTMEM
    #36 [0001596800 - 0001596810] BOOTMEM
    #37 [0001596840 - 000159687f] BOOTMEM
    #38 [0001596880 - 00015968bf] BOOTMEM
    #39 [0003000000 - 000300d000] BOOTMEM
    #40 [0003080000 - 000308d000] BOOTMEM
    #41 [0003100000 - 000310d000] BOOTMEM
    #42 [0003180000 - 000318d000] BOOTMEM
    #43 [0003200000 - 000320d000] BOOTMEM
    #44 [0003280000 - 000328d000] BOOTMEM
    #45 [0003300000 - 000330d000] BOOTMEM
    #46 [0003380000 - 000338d000] BOOTMEM
    #47 [00015968c0 - 00015968c4] BOOTMEM
    #48 [0001596900 - 0001596904] BOOTMEM
    #49 [0001596940 - 0001596960] BOOTMEM
    #50 [0001596980 - 00015969a0] BOOTMEM
    #51 [00015969c0 - 0001596a58] BOOTMEM
    #52 [0001596a80 - 0001596ab8] BOOTMEM
    #53 [0002d97000 - 0002d9b000] BOOTMEM
    #54 [0002d9b000 - 0002e1b000] BOOTMEM
    #55 [0002e1b000 - 0002e5b000] BOOTMEM
    #56 [000338d000 - 00042825ec] BOOTMEM
    Initializing HighMem for node 0 (000377fe:000bf780)
    Memory: 3088092k/3137024k available (3102k kernel code, 48484k reserved, 1207k data, 428k init, 2227720k highmem)
    virtual kernel memory layout:
    fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    .init : 0xc1436000 - 0xc14a1000 ( 428 kB)
    .data : 0xc1307a56 - 0xc14357e0 (1207 kB)
    .text : 0xc1000000 - 0xc1307a56 (3102 kB)
    Checking if this processor honours the WP bit even in supervisor mode...Ok.
    SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    Hierarchical RCU implementation.
    RCU-based detection of stalled CPUs is disabled.
    Verbose stalled-CPUs detection is disabled.
    NR_IRQS:512
    Extended CMOS year: 2000
    Console: colour VGA+ 80x25
    console [tty0] enabled
    hpet clockevent registered
    Fast TSC calibration using PIT
    Detected 2926.435 MHz processor.
    Calibrating delay loop (skipped), value calculated using timer frequency.. 5855.73 BogoMIPS (lpj=9754783)
    pid_max: default: 32768 minimum: 301
    Security Framework initialized
    TOMOYO Linux initialized
    AppArmor: AppArmor disabled by boot time parameter
    Mount-cache hash table entries: 512
    Initializing cgroup subsys ns
    Initializing cgroup subsys cpuacct
    Initializing cgroup subsys memory
    Initializing cgroup subsys devices
    Initializing cgroup subsys freezer
    Initializing cgroup subsys net_cls
    Initializing cgroup subsys blkio
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 0
    mce: CPU supports 9 MCE banks
    CPU0: Thermal monitoring enabled (TM1)
    using mwait in idle threads.
    Performance Events: PEBS fmt1+, Westmere events, Intel PMU driver.
    ... version: 3
    ... bit width: 48
    ... generic registers: 4
    ... value mask: 0000ffffffffffff
    ... max period: 000000007fffffff
    ... fixed-purpose events: 3
    ... event mask: 000000070000000f
    ACPI: Core revision 20100702
    Enabling APIC mode: Flat. Using 1 I/O APICs
    ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    CPU0: Intel(R) Core(TM) i3 CPU 530 @ 2.93GHz stepping 02
    NMI watchdog enabled, takes one hw-pmu counter.
    Booting Node 0, Processors #1
    Initializing CPU#1
    NMI watchdog enabled, takes one hw-pmu counter.
    #2
    Initializing CPU#2
    NMI watchdog enabled, takes one hw-pmu counter.
    #3
    Initializing CPU#3
    NMI watchdog enabled, takes one hw-pmu counter.
    Brought up 4 CPUs
    Total of 4 processors activated (23417.45 BogoMIPS).
    devtmpfs: initialized
    NET: Registered protocol family 16
    ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    ACPI: bus type pci registered
    PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    PCI: not using MMCONFIG
    PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=4
    PCI: Using configuration type 1 for base access
    bio: create slab <bio-0> at 0
    ACPI: EC: Look up EC in DSDT
    ACPI: Executed 1 blocks of module-level executable AML code
    ACPI: SSDT bf78e0c0 01238 (v01 DpgPmm P001Ist 00000011 INTL 20051117)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 01238 (v01 DpgPmm P001Ist 00000011 INTL 20051117)
    ACPI: SSDT bf78f300 004F4 (v01 PmRef P001Cst 00003001 INTL 20051117)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 004F4 (v01 PmRef P001Cst 00003001 INTL 20051117)
    ACPI: Interpreter enabled
    ACPI: (supports S0 S3 S4 S5)
    ACPI: Using IOAPIC for interrupt routing
    PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    PCI: Using MMCONFIG for extended config space
    ACPI: No dock devices found.
    PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000dffff]
    pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xdfffffff]
    pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xfed8ffff]
    DMAR: BIOS has allocated no shadow GTT; disabling IOMMU for graphics
    pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:01.0: PME# disabled
    pci 0000:00:16.0: reg 10: [mem 0xf9ffe000-0xf9ffe00f 64bit]
    pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:16.0: PME# disabled
    pci 0000:00:1a.0: reg 10: [mem 0xf9ffc000-0xf9ffc3ff]
    pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1a.0: PME# disabled
    pci 0000:00:1b.0: reg 10: [mem 0xf9ff8000-0xf9ffbfff 64bit]
    pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1b.0: PME# disabled
    pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.0: PME# disabled
    pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.5: PME# disabled
    pci 0000:00:1d.0: reg 10: [mem 0xf9ff6000-0xf9ff63ff]
    pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1d.0: PME# disabled
    pci 0000:00:1f.2: reg 10: [io 0xdc00-0xdc07]
    pci 0000:00:1f.2: reg 14: [io 0xd880-0xd883]
    pci 0000:00:1f.2: reg 18: [io 0xd800-0xd807]
    pci 0000:00:1f.2: reg 1c: [io 0xd480-0xd483]
    pci 0000:00:1f.2: reg 20: [io 0xd400-0xd40f]
    pci 0000:00:1f.2: reg 24: [io 0xd080-0xd08f]
    pci 0000:00:1f.3: reg 10: [mem 0xf9ff4000-0xf9ff40ff 64bit]
    pci 0000:00:1f.3: reg 20: [io 0x0400-0x041f]
    pci 0000:00:1f.5: reg 10: [io 0xcc00-0xcc07]
    pci 0000:00:1f.5: reg 14: [io 0xc880-0xc883]
    pci 0000:00:1f.5: reg 18: [io 0xc800-0xc807]
    pci 0000:00:1f.5: reg 1c: [io 0xc480-0xc483]
    pci 0000:00:1f.5: reg 20: [io 0xc400-0xc40f]
    pci 0000:00:1f.5: reg 24: [io 0xc080-0xc08f]
    pci 0000:01:00.0: reg 10: [mem 0xfa000000-0xfaffffff]
    pci 0000:01:00.0: reg 14: [mem 0xd0000000-0xdfffffff 64bit pref]
    pci 0000:01:00.0: reg 1c: [mem 0xce000000-0xcfffffff 64bit pref]
    pci 0000:01:00.0: reg 24: [io 0xec00-0xec7f]
    pci 0000:01:00.0: reg 30: [mem 0xfbd80000-0xfbdfffff pref]
    pci 0000:01:00.1: reg 10: [mem 0xfbd7c000-0xfbd7ffff]
    pci 0000:00:01.0: PCI bridge to [bus 01-01]
    pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    pci 0000:00:01.0: bridge window [mem 0xfa000000-0xfbdfffff]
    pci 0000:00:01.0: bridge window [mem 0xce000000-0xdfffffff 64bit pref]
    pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    pci 0000:00:1c.0: bridge window [io 0xf000-0x0000] (disabled)
    pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:03:00.0: reg 10: [mem 0xfbef0000-0xfbefffff 64bit]
    pci 0000:03:00.0: PME# supported from D3hot D3cold
    pci 0000:03:00.0: PME# disabled
    pci 0000:00:1c.5: PCI bridge to [bus 03-03]
    pci 0000:00:1c.5: bridge window [io 0xf000-0x0000] (disabled)
    pci 0000:00:1c.5: bridge window [mem 0xfbe00000-0xfbefffff]
    pci 0000:00:1c.5: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:04:01.0: reg 10: [mem 0xfbfff000-0xfbffffff]
    pci 0000:04:01.0: PME# supported from D0 D1 D3hot D3cold
    pci 0000:04:01.0: PME# disabled
    pci 0000:04:01.1: reg 10: [mem 0xfbffe000-0xfbffefff]
    pci 0000:04:01.1: PME# supported from D0 D1 D3hot D3cold
    pci 0000:04:01.1: PME# disabled
    pci 0000:04:01.2: reg 10: [mem 0xfbffd000-0xfbffdfff]
    pci 0000:04:01.2: PME# supported from D0 D1 D3hot D3cold
    pci 0000:04:01.2: PME# disabled
    pci 0000:04:01.3: reg 10: [mem 0xfbffcc00-0xfbffccff]
    pci 0000:04:01.3: PME# supported from D0 D3hot D3cold
    pci 0000:04:01.3: PME# disabled
    pci 0000:04:01.4: reg 10: [mem 0xfbffc000-0xfbffc7ff]
    pci 0000:04:01.4: reg 30: [mem 0xfbfe0000-0xfbfeffff pref]
    pci 0000:04:01.4: supports D1 D2
    pci 0000:04:01.4: PME# supported from D1 D2 D3hot
    pci 0000:04:01.4: PME# disabled
    pci 0000:00:1e.0: PCI bridge to [bus 04-04] (subtractive decode)
    pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled)
    pci 0000:00:1e.0: bridge window [mem 0xfbf00000-0xfbffffff]
    pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode)
    pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xfed8ffff] (subtractive decode)
    pci_bus 0000:00: on NUMA node 0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR1E._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR20._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR25._PRT]
    ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 6 7 *10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKB] (IRQs *5)
    ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 6 7 10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 6 7 10 *11 12 14 15)
    ACPI: PCI Interrupt Link [LNKE] (IRQs 3 *4 6 7 10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 6 *7 10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 6 7 10 11 12 14 *15)
    ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 6 7 10 11 12 *14 15)
    HEST: Table is not found!
    vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    vgaarb: loaded
    PCI: Using ACPI for IRQ routing
    PCI: pci_cache_line_size set to 64 bytes
    reserve RAM buffer: 0000000000002000 - 000000000000ffff
    reserve RAM buffer: 000000000009fc00 - 000000000009ffff
    reserve RAM buffer: 00000000bf780000 - 00000000bfffffff
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    Switching to clocksource tsc
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp: PnP ACPI: found 14 devices
    ACPI: ACPI bus type pnp unregistered
    system 00:01: [mem 0xfc000000-0xfcffffff] has been reserved
    system 00:01: [mem 0xfd000000-0xfdffffff] has been reserved
    system 00:01: [mem 0xfe000000-0xfebfffff] has been reserved
    system 00:01: [mem 0xfed14000-0xfed19fff] has been reserved
    system 00:06: [io 0x0a00-0x0a0f] has been reserved
    system 00:06: [io 0x0a10-0x0a1f] has been reserved
    system 00:06: [io 0x0a20-0x0a2f] has been reserved
    system 00:06: [io 0x0a30-0x0a3f] has been reserved
    system 00:07: [io 0x04d0-0x04d1] has been reserved
    system 00:07: [io 0x0800-0x087f] has been reserved
    system 00:07: [io 0x0500-0x057f] has been reserved
    system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
    system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved
    system 00:07: [mem 0xfed40000-0xfed8ffff] has been reserved
    system 00:0a: [mem 0xffc00000-0xffefffff] has been reserved
    system 00:0b: [mem 0xfec00000-0xfec00fff] could not be reserved
    system 00:0b: [mem 0xfee00000-0xfee00fff] has been reserved
    system 00:0c: [mem 0xe0000000-0xefffffff] has been reserved
    system 00:0d: [mem 0x00000000-0x0009ffff] could not be reserved
    system 00:0d: [mem 0x000c0000-0x000cffff] could not be reserved
    system 00:0d: [mem 0x000e0000-0x000fffff] could not be reserved
    system 00:0d: [mem 0x00100000-0xbfffffff] could not be reserved
    system 00:0d: [mem 0xfed90000-0xffffffff] could not be reserved
    pci 0000:00:1c.0: BAR 14: assigned [mem 0xc0000000-0xc01fffff]
    pci 0000:00:1c.0: BAR 15: assigned [mem 0xc0200000-0xc03fffff 64bit pref]
    pci 0000:00:1c.0: BAR 13: assigned [io 0x1000-0x1fff]
    pci 0000:00:01.0: PCI bridge to [bus 01-01]
    pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    pci 0000:00:01.0: bridge window [mem 0xfa000000-0xfbdfffff]
    pci 0000:00:01.0: bridge window [mem 0xce000000-0xdfffffff 64bit pref]
    pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff]
    pci 0000:00:1c.0: bridge window [mem 0xc0000000-0xc01fffff]
    pci 0000:00:1c.0: bridge window [mem 0xc0200000-0xc03fffff 64bit pref]
    pci 0000:00:1c.5: PCI bridge to [bus 03-03]
    pci 0000:00:1c.5: bridge window [io disabled]
    pci 0000:00:1c.5: bridge window [mem 0xfbe00000-0xfbefffff]
    pci 0000:00:1c.5: bridge window [mem pref disabled]
    pci 0000:00:1e.0: PCI bridge to [bus 04-04]
    pci 0000:00:1e.0: bridge window [io disabled]
    pci 0000:00:1e.0: bridge window [mem 0xfbf00000-0xfbffffff]
    pci 0000:00:1e.0: bridge window [mem pref disabled]
    pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    pci 0000:00:01.0: setting latency timer to 64
    pci 0000:00:1c.0: enabling device (0104 -> 0107)
    pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    pci 0000:00:1c.0: setting latency timer to 64
    pci 0000:00:1c.5: PCI INT B -> GSI 16 (level, low) -> IRQ 16
    pci 0000:00:1c.5: setting latency timer to 64
    pci 0000:00:1e.0: setting latency timer to 64
    pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
    pci_bus 0000:00: resource 8 [mem 0xc0000000-0xdfffffff]
    pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfed8ffff]
    pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    pci_bus 0000:01: resource 1 [mem 0xfa000000-0xfbdfffff]
    pci_bus 0000:01: resource 2 [mem 0xce000000-0xdfffffff 64bit pref]
    pci_bus 0000:02: resource 0 [io 0x1000-0x1fff]
    pci_bus 0000:02: resource 1 [mem 0xc0000000-0xc01fffff]
    pci_bus 0000:02: resource 2 [mem 0xc0200000-0xc03fffff 64bit pref]
    pci_bus 0000:03: resource 1 [mem 0xfbe00000-0xfbefffff]
    pci_bus 0000:04: resource 1 [mem 0xfbf00000-0xfbffffff]
    pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7]
    pci_bus 0000:04: resource 5 [io 0x0d00-0xffff]
    pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
    pci_bus 0000:04: resource 7 [mem 0x000d0000-0x000dffff]
    pci_bus 0000:04: resource 8 [mem 0xc0000000-0xdfffffff]
    pci_bus 0000:04: resource 9 [mem 0xf0000000-0xfed8ffff]
    NET: Registered protocol family 2
    IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    TCP: Hash tables configured (established 131072 bind 65536)
    TCP reno registered
    UDP hash table entries: 512 (order: 2, 16384 bytes)
    UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    NET: Registered protocol family 1
    pci 0000:01:00.0: Boot video device
    PCI: CLS 32 bytes, default 64
    Unpacking initramfs...
    Freeing initrd memory: 1636k freed
    apm: BIOS not found.
    Scanning for low memory corruption every 60 seconds
    audit: initializing netlink socket (disabled)
    type=2000 audit(1291144818.506:1): initialized
    highmem bounce pool size: 64 pages
    HugeTLB registered 4 MB page size, pre-allocated 0 pages
    VFS: Disk quotas dquot_6.5.2
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    msgmni has been set to 1683
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    io scheduler noop registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    intel_idle: MWAIT substates: 0x1120
    intel_idle: v0.4 model 0x25
    intel_idle: lapic_timer_reliable_states 0xffffffff
    ERST: Table is not found!
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    PNP: No PS/2 controller found. Probing ports directly.
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    rtc_cmos 00:03: RTC can wake from S4
    rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 17
    Registering the dns_resolver key type
    Using IPI No-Shortcut mode
    PM: Resume from disk failed.
    registered taskstats version 1
    rtc_cmos 00:03: setting system clock to 2010-11-30 19:20:19 UTC (1291144819)
    Initalizing network drop monitor service
    Freeing unused kernel memory: 428k freed
    udev[46]: starting version 163
    SCSI subsystem initialized
    libata version 3.00 loaded.
    ata_piix 0000:00:1f.2: version 2.13
    ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
    ata_piix 0000:00:1f.2: setting latency timer to 64
    scsi0 : ata_piix
    scsi1 : ata_piix
    ata1: SATA max UDMA/133 cmd 0xdc00 ctl 0xd880 bmdma 0xd400 irq 19
    ata2: SATA max UDMA/133 cmd 0xd800 ctl 0xd480 bmdma 0xd408 irq 19
    ata_piix 0000:00:1f.5: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
    ata_piix 0000:00:1f.5: setting latency timer to 64
    scsi2 : ata_piix
    scsi3 : ata_piix
    ata3: SATA max UDMA/133 cmd 0xcc00 ctl 0xc880 bmdma 0xc400 irq 19
    ata4: SATA max UDMA/133 cmd 0xc800 ctl 0xc480 bmdma 0xc408 irq 19
    ata4: SATA link down (SStatus 0 SControl 300)
    ata3: SATA link down (SStatus 0 SControl 300)
    ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    ata1.01: SATA link down (SStatus 0 SControl 300)
    ata1.00: ATA-8: Hitachi HDT721050SLA360, ST3OA38E, max UDMA/133
    ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32)
    ata2.00: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    ata2.01: SATA link down (SStatus 0 SControl 300)
    ata2.01: link offline, clearing class 3 to NONE
    ata2.00: ATAPI: TSSTcorp DVD+/-RW TS-H653G, DW10, max UDMA/100
    ata2.00: applying bridge limits
    ata1.00: configured for UDMA/133
    scsi 0:0:0:0: Direct-Access ATA Hitachi HDT72105 ST3O PQ: 0 ANSI: 5
    ata2.00: configured for UDMA/100
    scsi 1:0:0:0: CD-ROM TSSTcorp DVD+-RW TS-H653G DW10 PQ: 0 ANSI: 5
    sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sr0: scsi3-mmc drive: 94x/94x writer dvd-ram cd/rw xa/form2 cdda tray
    cdrom: Uniform CD-ROM driver Revision: 3.20
    sr 1:0:0:0: Attached scsi CD-ROM sr0
    sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
    sd 0:0:0:0: [sda] Attached SCSI disk
    EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    Not activating Mandatory Access Control now since /sbin/tomoyo-init doesn't exist.
    udev[884]: starting version 164
    vboxdrv: Trying to deactivate the NMI watchdog permanently...
    vboxdrv: Warning: 2.6.31+ kernel detected. Most likely the hardware performance
    vboxdrv: counter framework which can generate NMIs is active. You have to prevent
    vboxdrv: the usage of hardware performance counters by
    vboxdrv: echo 2 > /proc/sys/kernel/perf_counter_paranoid
    vboxdrv: Found 4 processor cores.
    vboxdrv: fAsync=0 offMin=0x27a offMax=0x5d86
    vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    vboxdrv: Successfully loaded version 3.2.10 (interface 0x00140001).
    dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    ACPI: acpi_idle yielding to intel_idle
    Linux agpgart interface v0.103
    firewire_ohci 0000:04:01.4: PCI INT C -> GSI 20 (level, low) -> IRQ 20
    iTCO_vendor_support: vendor-support=0
    iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
    iTCO_wdt: Found a H57 TCO device (Version=2, TCOBASE=0x0860)
    iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    sd 0:0:0:0: Attached scsi generic sg0 type 0
    sr 1:0:0:0: Attached scsi generic sg1 type 5
    input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
    ACPI: Power Button [PWRB]
    input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
    ACPI: Power Button [PWRF]
    firewire_ohci: Added fw-ohci device 0000:04:01.4, OHCI v1.10, 4 IR + 8 IT contexts, quirks 0x1
    i801_smbus 0000:00:1f.3: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    HDA Intel 0000:00:1b.0: irq 40 for MSI/MSI-X
    HDA Intel 0000:00:1b.0: setting latency timer to 64
    pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    hda_codec: ALC887: BIOS auto-probing.
    input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input2
    shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    HDA Intel 0000:01:00.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    hda_intel: Disable MSI for Nvidia chipset
    HDA Intel 0000:01:00.1: setting latency timer to 64
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    ehci_hcd 0000:00:1a.0: setting latency timer to 64
    ehci_hcd 0000:00:1a.0: EHCI Host Controller
    ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    ehci_hcd 0000:00:1a.0: debug port 2
    ehci_hcd 0000:00:1a.0: cache line size of 32 is not supported
    ehci_hcd 0000:00:1a.0: irq 16, io mem 0xf9ffc000
    ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 2 ports detected
    ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    ehci_hcd 0000:00:1d.0: setting latency timer to 64
    ehci_hcd 0000:00:1d.0: EHCI Host Controller
    ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    ehci_hcd 0000:00:1d.0: debug port 2
    ehci_hcd 0000:00:1d.0: cache line size of 32 is not supported
    ehci_hcd 0000:00:1d.0: irq 23, io mem 0xf9ff6000
    ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 2 ports detected
    ehci_hcd 0000:04:01.3: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    ehci_hcd 0000:04:01.3: EHCI Host Controller
    ehci_hcd 0000:04:01.3: new USB bus registered, assigned bus number 3
    ehci_hcd 0000:04:01.3: debug port 1
    ehci_hcd 0000:04:01.3: irq 22, io mem 0xfbffcc00
    ehci_hcd 0000:04:01.3: USB 2.0 started, EHCI 1.00
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 6 ports detected
    ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    ohci_hcd 0000:04:01.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    ohci_hcd 0000:04:01.0: OHCI Host Controller
    ohci_hcd 0000:04:01.0: new USB bus registered, assigned bus number 4
    ohci_hcd 0000:04:01.0: irq 21, io mem 0xfbfff000
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 2 ports detected
    ohci_hcd 0000:04:01.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    ohci_hcd 0000:04:01.1: OHCI Host Controller
    ohci_hcd 0000:04:01.1: new USB bus registered, assigned bus number 5
    ohci_hcd 0000:04:01.1: irq 21, io mem 0xfbffe000
    hub 3-0:1.0: over-current change on port 1
    firewire_core: created device fw0: GUID 0090e6390000057f, S400
    hub 5-0:1.0: USB hub found
    hub 5-0:1.0: 2 ports detected
    ohci_hcd 0000:04:01.2: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    ohci_hcd 0000:04:01.2: OHCI Host Controller
    ohci_hcd 0000:04:01.2: new USB bus registered, assigned bus number 6
    ohci_hcd 0000:04:01.2: irq 21, io mem 0xfbffd000
    tg3.c:v3.113 (August 2, 2010)
    tg3 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    tg3 0000:03:00.0: setting latency timer to 64
    tg3 mdio bus: probed
    hub 6-0:1.0: USB hub found
    hub 6-0:1.0: 2 ports detected
    hub 3-0:1.0: over-current change on port 2
    tg3 0000:03:00.0: eth0: Tigon3 [partno(BCM57788) rev 57780001] (PCI Express) MAC address 00:25:64:f6:da:c0
    tg3 0000:03:00.0: eth0: attached PHY driver [Broadcom BCM57780] (mii_bus:phy_addr=300:01)
    tg3 0000:03:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
    tg3 0000:03:00.0: eth0: dma_rwctrl[76180000] dma_mask[64-bit]
    nvidia: module license 'NVIDIA' taints kernel.
    Disabling lock debugging due to kernel taint
    usb 1-1: new high speed USB device using ehci_hcd and address 2
    hub 1-1:1.0: USB hub found
    hub 1-1:1.0: 6 ports detected
    usb 2-1: new high speed USB device using ehci_hcd and address 2
    nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    nvidia 0000:01:00.0: setting latency timer to 64
    vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
    NVRM: loading NVIDIA UNIX x86 Kernel Module 260.19.21 Thu Nov 4 20:24:24 PDT 2010
    hub 2-1:1.0: USB hub found
    hub 2-1:1.0: 8 ports detected
    usb 1-1.1: new low speed USB device using ehci_hcd and address 3
    usb 1-1.2: new low speed USB device using ehci_hcd and address 4
    usbcore: registered new interface driver hiddev
    input: Logitech USB RECEIVER as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/input/input3
    generic-usb 0003:046D:C50E.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB RECEIVER] on usb-0000:00:1a.0-1.1/input0
    usbcore: registered new interface driver usbhid
    usbhid: USB HID core driver
    input: Chicony USB Gaming Keyboard Pro as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input4
    generic-usb 0003:06A3:8000.0002: input,hidraw1: USB HID v1.11 Keyboard [Chicony USB Gaming Keyboard Pro] on usb-0000:00:1a.0-1.2/input0
    input: Chicony USB Gaming Keyboard Pro as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/input/input5
    generic-usb 0003:06A3:8000.0003: input,hiddev0,hidraw2: USB HID v1.11 Device [Chicony USB Gaming Keyboard Pro] on usb-0000:00:1a.0-1.2/input1
    input: Chicony USB Gaming Keyboard Pro as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.2/input/input6
    generic-usb 0003:06A3:8000.0004: input,hidraw3: USB HID v1.11 Gamepad [Chicony USB Gaming Keyboard Pro] on usb-0000:00:1a.0-1.2/input2
    usb 1-1.3: new high speed USB device using ehci_hcd and address 5
    Initializing USB Mass Storage driver...
    scsi4 : usb-storage 1-1.3:1.0
    usbcore: registered new interface driver usb-storage
    USB Mass Storage support registered.
    usb 1-1.4: new full speed USB device using ehci_hcd and address 6
    input: Saitek Cyborg Evo Force as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input7
    generic-usb 0003:06A3:FFB5.0005: input,hidraw4: USB HID v1.00 Joystick [Saitek Cyborg Evo Force] on usb-0000:00:1a.0-1.4/input0
    usb 2-1.2: new high speed USB device using ehci_hcd and address 3
    scsi5 : usb-storage 2-1.2:1.0
    usb 2-1.4: new full speed USB device using ehci_hcd and address 4
    usb 2-1.4: device descriptor read/64, error -32
    usb 2-1.4: device descriptor read/64, error -32
    usb 2-1.4: new full speed USB device using ehci_hcd and address 5
    usb 2-1.4: device descriptor read/64, error -32
    scsi 4:0:0:0: Direct-Access WD 10EACS External 1.65 PQ: 0 ANSI: 0
    sd 4:0:0:0: Attached scsi generic sg2 type 0
    sd 4:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    sd 4:0:0:0: [sdb] Write Protect is off
    sd 4:0:0:0: [sdb] Mode Sense: 00 00 00 00
    sd 4:0:0:0: [sdb] Assuming drive cache: write through
    sd 4:0:0:0: [sdb] Assuming drive cache: write through
    usb 2-1.4: device descriptor read/64, error -32
    usb 2-1.4: new full speed USB device using ehci_hcd and address 6
    usb 2-1.4: device descriptor read/8, error -32
    scsi 5:0:0:0: Direct-Access Generic- SD/MMC 1.00 PQ: 0 ANSI: 0
    sd 5:0:0:0: Attached scsi generic sg3 type 0
    scsi 5:0:0:1: Direct-Access Generic- Compact Flash 1.01 PQ: 0 ANSI: 0
    sd 5:0:0:1: Attached scsi generic sg4 type 0
    sd 5:0:0:0: [sdc] Attached SCSI removable disk
    scsi 5:0:0:2: Direct-Access Generic- SM/xD Picture 1.02 PQ: 0 ANSI: 0
    sd 5:0:0:1: [sdd] Attached SCSI removable disk
    sd 5:0:0:2: Attached scsi generic sg5 type 0
    scsi 5:0:0:3: Direct-Access Generic- MS/MS-Pro 1.03 PQ: 0 ANSI: 0
    sd 5:0:0:2: [sde] Attached SCSI removable disk
    sd 5:0:0:3: Attached scsi generic sg6 type 0
    sd 5:0:0:3: [sdf] Attached SCSI removable disk
    usb 2-1.4: device descriptor read/8, error -32
    usb 2-1.4: new full speed USB device using ehci_hcd and address 7
    usb 2-1.4: device descriptor read/8, error -32
    usb 2-1.4: device descriptor read/8, error -32
    hub 2-1:1.0: unable to enumerate USB device on port 4
    EXT4-fs (sda2): re-mounted. Opts: (null)
    sdb: sdb1
    sd 4:0:0:0: [sdb] Assuming drive cache: write through
    sd 4:0:0:0: [sdb] Attached SCSI disk
    EXT4-fs (sda2): re-mounted. Opts: (null)
    EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
    fuse init (API version 7.15)
    Adding 497976k swap on /dev/sda5. Priority:-1 extents:1 across:497976k
    tg3 0000:03:00.0: irq 41 for MSI/MSI-X
    tg3 0000:03:00.0: eth0: Link is down
    tg3 0000:03:00.0: eth0: Link is up at 100 Mbps, full duplex
    tg3 0000:03:00.0: eth0: Flow control is off for TX and off for RX
    NTFS driver 2.1.29 [Flags: R/W MODULE].
    start_kdeinit (4890): /proc/4890/oom_adj is deprecated, please use /proc/4890/oom_score_adj instead.
    ata1.00: configured for UDMA/133
    ata1: EH complete
    EXT4-fs (sda2): re-mounted. Opts: commit=0
    EXT4-fs (sda3): re-mounted. Opts: commit=0
    EXT4-fs (sda6): re-mounted. Opts: commit=0
    NET: Registered protocol family 10
    lo: Disabled Privacy Extensions
    eth0: no IPv6 routers present
    lo: Disabled Privacy Extensions
    lo: Disabled Privacy Extensions
    lo: Disabled Privacy Extensions
    lo: Disabled Privacy Extensions
    usb 3-6: new high speed USB device using ehci_hcd and address 2
    scsi6 : usb-storage 3-6:1.0
    scsi 6:0:0:0: Direct-Access HTC Android Phone 0100 PQ: 0 ANSI: 2
    sd 6:0:0:0: Attached scsi generic sg7 type 0
    sd 6:0:0:0: [sdg] Attached SCSI removable disk
    usb 3-6: USB disconnect, address 2
    lo: Disabled Privacy Extensions
    usb 3-6: new high speed USB device using ehci_hcd and address 3
    scsi7 : usb-storage 3-6:1.0
    scsi 7:0:0:0: Direct-Access HTC Android Phone 0100 PQ: 0 ANSI: 2
    sd 7:0:0:0: Attached scsi generic sg7 type 0
    sd 7:0:0:0: [sdg] Attached SCSI removable disk
    lo: Disabled Privacy Extensions
    warning: `VirtualBox' uses 32-bit capabilities (legacy support in use)
    usb 3-6: USB disconnect, address 3
    usb 3-6: new high speed USB device using ehci_hcd and address 4
    scsi8 : usb-storage 3-6:1.0
    scsi 8:0:0:0: Direct-Access HTC Android Phone 0100 PQ: 0 ANSI: 2
    sd 8:0:0:0: Attached scsi generic sg7 type 0
    sd 8:0:0:0: [sdg] Attached SCSI removable disk
    sd 8:0:0:0: [sdg] 31116288 512-byte logical blocks: (15.9 GB/14.8 GiB)
    sd 8:0:0:0: [sdg] Assuming drive cache: write through
    sd 8:0:0:0: [sdg] Assuming drive cache: write through
    sdg: sdg1
    sd 8:0:0:0: [sdg] 31116288 512-byte logical blocks: (15.9 GB/14.8 GiB)
    sd 8:0:0:0: [sdg] Assuming drive cache: write through
    sd 8:0:0:0: [sdg] Assuming drive cache: write through
    sdg: sdg1
    usb 3-6: USB disconnect, address 4
    usb 3-6: new high speed USB device using ehci_hcd and address 5
    scsi9 : usb-storage 3-6:1.0
    scsi 9:0:0:0: Direct-Access HTC Android Phone 0100 PQ: 0 ANSI: 2
    sd 9:0:0:0: Attached scsi generic sg7 type 0
    sd 9:0:0:0: [sdg] Attached SCSI removable disk
    sd 9:0:0:0: [sdg] 31116288 512-byte logical blocks: (15.9 GB/14.8 GiB)
    sd 9:0:0:0: [sdg] Assuming drive cache: write through
    sd 9:0:0:0: [sdg] Assuming drive cache: write through
    sdg: sdg1
    usb 3-6: USB disconnect, address 5
    usb 3-6: new high speed USB device using ehci_hcd and address 6
    scsi10 : usb-storage 3-6:1.0
    scsi 10:0:0:0: Direct-Access HTC Android Phone 0100 PQ: 0 ANSI: 2
    sd 10:0:0:0: Attached scsi generic sg7 type 0
    sd 10:0:0:0: [sdg] Attached SCSI removable disk
    sd 10:0:0:0: [sdg] 31116288 512-byte logical blocks: (15.9 GB/14.8 GiB)
    sd 10:0:0:0: [sdg] Assuming drive cache: write through
    sd 10:0:0:0: [sdg] Assuming drive cache: write through
    sdg: sdg1
    lo: Disabled Privacy Extensions
    lo: Disabled Privacy Extensions
    lo: Disabled Privacy Extensions
    And procinfo:
    Memory: Total Used Free Buffers
    RAM: 3090156 1977620 1112536 240668
    Swap: 497976 187856 310120
    Bootup: Tue Nov 30 19:20:19 2010 Load average: 1.35 1.01 1.03 4/391 13342
    user : 04:26:46.72 4.1% page in : 35933303
    nice : 00:15:07.71 0.2% page out: 29081942
    system: 20:57:36.16 19.2% page act: 2705421
    IOwait: 00:34:42.25 0.5% page dea: 661916
    hw irq: 00:00:01.12 0.0% page flt: 713282148
    sw irq: 00:03:39.96 0.1% swap in : 2439
    idle : 3d 10:53:48.02 75.9% swap out: 47436
    uptime: 1d 03:24:52.98 context : 5212702362
    irq 0: 377 timer irq 20: 1545 firewire_ohci
    irq 1: 2 i8042 irq 21: 0 ohci_hcd:usb4, oh
    irq 8: 577 rtc0 irq 22: 333440 ehci_hcd:usb3
    irq 9: 2515576692 acpi irq 23: 6500631 ehci_hcd:usb2
    irq 12: 4 i8042 irq 40: 5358110 hda_intel
    irq 16: 4663234 hda_intel, ehci_h irq 41: 17781026 eth0
    irq 19: 1193701 ata_piix, ata_pii
    sda 432381r 314375w sdd 0r 0w
    sr0 23r 0w sde 0r 0w
    sdb 38743r 87624w sdf 0r 0w
    sdc 0r 0w sdg 501r 261w
    eth0 TX 2.73GiB RX 13.43GiB lo TX 23.89MiB RX 23.89MiB
    Any help is appreciated!
    Moderator Edit (ewaller) Added Code Tags.  Please use them in the future (edit your post to see how I applied them for you)
    Last edited by ewaller (2011-05-25 16:27:49)

    I might have rushed it a little: It works for a short period after the boot, but then theres that nasty kworker thread again:
    Cn Avg residency P-states (frequencies)
    C0 (cpu running) (51.7%) Turbo Mode 51.7%
    polling 0.0ms ( 0.0%) 2.27 Ghz 5.9%
    C1 mwait 0.0ms ( 0.0%) 1.60 Ghz 7.8%
    C2 mwait 0.2ms ( 5.7%) 800 Mhz 34.7%
    C6 mwait 1.0ms (42.5%)
    Wakeups-from-idle per second : 708.5 interval: 3.0s
    Power usage (ACPI estimate): 15.6W (1.5 hours) (long term: 12.5W,/1.9h)
    Top causes for wakeups:
    35.3% (604.0) kworker/0:0
    33.5% (572.3) [kernel scheduler] Load balancing tick
    15.9% (271.7) [iwlagn] <interrupt>
    5.2% ( 89.3) firefox
    5.1% ( 87.3) [i915] <interrupt>
    1.9% ( 32.7) kwin
    1.1% ( 19.3) [acpi] <interrupt>
    0.4% ( 6.0) [ahci] <interrupt>
    0.3% ( 5.7) thunderbird-bin
    0.2% ( 2.7) plasma-desktop
    0.2% ( 2.7) htop
    0.1% ( 2.3) yakuake
    0.1% ( 2.0) mysqld
    0.1% ( 1.7) [kernel core] sk_reset_timer (tcp_delack_timer)
    0.1% ( 1.7) [kernel core] hrtimer_start (tick_sched_timer)
    0.1% ( 1.0) sleep
    0.1% ( 1.0) thinkwatt
    0.1% ( 1.0) X
    Suggestion: Enable the CONFIG_INOTIFY kernel configuration option.
    This option allows programs to wait for changes in files and directories
    instead of having to poll for these changes
    I used to have around 10 watts average, now it's up to 15 or sometimes even 20 watts.
    Last edited by akurei (2011-05-19 15:37:00)

Maybe you are looking for