[Solved] headless server suggestions

Hi everybody...
more of a archlinux user poll.
I'm running a server previously centos / debian...
now arch64 which it purrrrsssss happily with.
I got all my samba torrent stuff figured out.
Now I want to make this thing headless.
I've heard that freeNX is a good option though I haven't been able to get it to work.
I've only dealt with headless servers in the windows world and am a little confused about the linux side of it.  I have a user profile set to auto login, I want to come in with a remote client to that exact same session.
any one have suggestions? wiki's? personal stories? strategies?
Thanks for any input
Last edited by jduped (2009-06-29 09:35:56)

tones of reply.
jowilkin
The issues I had with nx was in the connection side of things but not in arch.  It was in centos got it installed had the client on the test box and couldn't get it though I could ping in and ssh in. 
B
I was actually thinking about it the other day...I know how to do everything in command prompt in linux and windows I kind of just learned from experience...But I find mass file/picture/music/media organizing easier in a gui. small tasks are easier to do via terminal.
I think I'll try freeNX again.  A buddy of mine had the hamachi + freeNX thing going on he did it ubuntu and I have issues with ubuntu though it seems to be where most newbies start...I started there like 3 years ago.
Any other suggestions keep um coming

Similar Messages

  • [SOLVED]bittorrent for a headless server

    Hi,
    I want to centralise my torrents onto my home server. It's running arch and I use ssh to administer it. I was wondering if anyone could recommend bittorrent clients for this situation. I doubt I could ssh in and access an ncurses gui or something, but maybe someone here has a better solution. I though of backgrounding a command line client but this would lead to a separate instance for each torrent which makes them hard to manage, so do I have no choice but to use a web based client?
    Last edited by calef13 (2008-01-11 16:06:54)

    Actually, if it is a strong enough hardware, you can run any GUI application that you'd like with vnc (like I do Ktorrent and aMule on my headless Arch server).
    Here's how you do it:
    1. Install basic xorg, a basic window manager and tight vnc on the headless server:
    pacman -S xorg openbox tightvnc
    2. Run the server once so it will create ~/.vnc and setup passwords
    vncserver
    3. Setup the vnc startup script (so you wont need to ssh and manually activate it after the headless reboots).
    Call it vnc and put it in /etc/rc.d/
    Dont forget to set it up to run at startup in rc.conf
    replace daf666 with your username!
    #!/bin/bash
    # general config
    . /etc/rc.conf
    . /etc/rc.d/functions
    case "$1" in
      start)
        stat_busy "Starting vncserver"
          su daf666 -c "/usr/bin/vncserver"
        if [ $? -gt 0 ]; then
          stat_fail
        else
          add_daemon vnc
          stat_done
        fi
      stop)
        stat_busy "Stopping vncserver"
        killall Xvnc
        if [ $? -gt 0 ]; then
          stat_fail
        else
          rm_daemon vnc
          stat_done
        fi
      restart)
        $0 stop
        sleep 3
        $0 start
        echo "usage: $0 {start|stop|restart}" 
    esac
    4. To setup openbox to run at startup insert 'openbox' in your ~/.vnc/xstartup
    5. Reboot the headless
    6. Install tightvnc on your desktop machine and connect to the headless: vncviewer 6.6.6.6:1 (replace with ur IP and screen num)
    7. Install ktorrent or what ever.. then it will keep running after you disconnect

  • The OCSP server suggests trying again later

    I am getting this error message when trying to access my site from Firefox, however no other browser (IE, Chrome, Safari) is experiencing this issue.
    https://www.core-e.biz
    I have a valid ssl cert installed on my server, and haven't had any problems until people tried to use Firefox to browse my site. The exact error message I get is:
    Secure Connection Failed
    An error occurred during a connection to www.core-e.biz
    The OCSP server suggest trying again later.
    (Error code: sec_error_ocsp_try_server_later)

    Works for me in Firefox 32.
    Try to rename the cert8.db file (cert8.db.old) and delete the cert_override.txt file in the Firefox profile folder to remove intermediate certificates and exceptions that Firefox has stored.
    If that has helped to solve the problem then you can remove the renamed cert8.db.old file.
    Otherwise you can rename (or copy) the cert8.db.old file to cert8.db to restore the previously stored intermediate certificates.
    Firefox will automatically store intermediate certificates when you visit websites that send such a certificate.
    If that didn't help then remove or rename secmod.db (secmod.db.old) as well.

  • Automating a flex app on a headless server

    I have a flex chart drawing application that needs to be automated. When automated it will read in data from the DB, draw the charts, and save them as .png files. This works flawlessly on my localhost version of oc4j on my Mac. However it has never worked on our Solaris oc4j deployment which is a headless server. I've set flex to run as headless in the config files but no dice. How can I get this working? Here are some of the error messages I'm getting:
    LINUX/UNIX browser attempting to launch /opt/sfw/bin/firefox http://flexdomain.yadayadyada
    08/11/06 14:41:53
    user dir: /usr/local/src/oracle/product/10.1.3.2.0/OracleAS_1/j2ee/home
    08/11/06 14:41:54 ERR>The application 'firefox-bin' lost its connection to the display flexdomain. yadayadyada:1.0;
    08/11/06 14:41:54 ERR>most likely the X server was shut down or you killed/destroyed
    08/11/06 14:41:54 ERR>the application.
    08/11/06 14:41:54 ExitValue: 1
    And here's a snippet from the Java which launches the flex app in the firefox browser:
    String cmd = "/opt/sfw/bin/ff.sh "+ url; // ff.sh is a script which sets DISPLAY and launches firefox with the flex url
    Runtime rt = Runtime.getRuntime();
    Process p = rt.exec(cmd);
    I'm using 10g, by the way.
    Thanks!
    Edited by: Solerous on Nov 7, 2008 7:04 AM

    Ok, I'm convinced that this is some sort of configuration problem. I can get the browser to launch when written as a simple java program compiled at the command line:
    import java.util.*;
    import java.io.*;
    public class Launcher {
    public static void main(String args[]) throws IOException {
    String url = "http://www.ebay.com";
    String[] commands = {"/bin/sh", "-c", "/opt/sfw/bin/firefox ", url, "-width", "1600", "-height", "1200", ":5"};
    ProcessBuilder pb = new ProcessBuilder(commands);
    Map<String, String> env = pb.environment();
    env.put( "DISPLAY", ":5" );
    Iterator it = env.entrySet().iterator();
    while (it.hasNext()) {
    Map.Entry pairs = (Map.Entry)it.next();
    System.out.println("\t>> environ: "+pairs.getKey() + " = " + pairs.getValue());
    Process process = pb.start();
    The output is just to show the environment variables and it looks like this:
         >> environ: XFILESEARCHPATH = /usr/dt/app-defaults/%L/Dt
    >> environ: LANG = C
    >> environ: DISPLAY = :5
    >> environ: ORACLE_BASE = /oracle
    >> environ: ORACLE_TERM = vt100
    >> environ: PWD = /usr/local/u00/de8
    >> environ: _ = /usr/bin/java
    >> environ: MAGICK_HOME = /usr/ImageMagicK/ImageMagick-6.4.4
    >> environ: ORACLE_SID = cots
    >> environ: USER = de8
    >> environ: NLSPATH = /usr/dt/lib/nls/msg/%L/%N.cat
    >> environ: EDITOR = /bin/vi
    >> environ: MOZILLA_SOLARIS_PATCHCHECKER = disable_patchchecker
    >> environ: HOME = /u00/de8
    >> environ: SSH_CONNECTION = 128.219.196.118 64994 160.91.230.33 22
    >> environ: LD_LIBRARY_PATH = /usr/jdk/instances/jdk1.5.0/jre/lib/sparc/server:/usr/jdk/instances/jdk1.5.0/jre/lib/sparc:/usr/jdk/instances/jdk1.5.0/jre/../lib/sparc:/opt/SUNWspro/lib:/usr/openwin/lib:/usr/dt/lib:/usr/ImageMagicK/ImageMagick-6.4.4/lib::/oracle/product/9.2.0/lib
    >> environ: LOGNAME = de8
    >> environ: SHELL = /bin/ksh
    >> environ: ORACLE_HOME = /oracle/product/10.1.3.2.0/OracleAS_1
    >> environ: SSH_TTY = /dev/pts/1
    >> environ: MAILMSG = [YOU HAVE NEW MAIL]
    >> environ: MANPATH = /usr/opt/SUNWmd/man:/usr/man:/usr/local/man:/usr/share/man:
    >> environ: NNTPSERVER = time.ornl.gov
    >> environ: SSH_CLIENT = 128.219.196.118 64994 22
    >> environ: MAIL = /var/mail/de8
    >> environ: TZ = US/Eastern
    >> environ: PS1 = ${PWD###/} $
    >> environ: TERM = vt100
    >> environ: PATH = /oracle/product/10.1.3.2.0/OracleAS_1:/oracle/product/10.1.3.2.0/OracleAS_1/OPatch:/usr/xpg4/bin:/usr/ccs/bin:/usr/local/bin:/usr/bin:/usr/ucb:/etc:/usr/sbin:/u00/de8/bin:/opt/NSCPcom:/sbin:/usr/local/etc:/usr/lib:/usr/opt/SUNWmd/sbin:/usr/bin:/usr/local/bin/perl5.00502:/usr/openwin/bin:/opt/sfw/bin:/usr/ImageMagicK/ImageMagick-6.4.4/bin:.:/oracle/product/9.2.0/bin
    I decided to output the env vars in hopes that it would show what needs to be reset. But if I use the exact same code in my deployment, it fails and I get the following env settings:
    08/12/09 14:14:27 >> environ: XFILESEARCHPATH = /usr/dt/app-defaults/%L/Dt
    08/12/09 14:14:27 >> environ: LANG = C
    08/12/09 14:14:27 >> environ: DISPLAY = :5
    08/12/09 14:14:27 >> environ: ORACLE_CONFIG_HOME = /oracle/product/10.1.3.2.0/OracleAS_1
    08/12/09 14:14:27 >> environ: NLSPATH = /usr/dt/lib/nls/msg/%L/%N.cat
    08/12/09 14:14:27 >> environ: TMP = /tmp
    08/12/09 14:14:27 >> environ: TZ = US/Eastern
    08/12/09 14:14:27 >> environ: NLS_LANG = AMERICAN_AMERICA.WE8MSWIN1252
    08/12/09 14:14:27 >> environ: ORA_NLS33 = /oracle/product/10.1.3.2.0/OracleAS_1/ocommon/nls/admin/data
    08/12/09 14:14:27 >> environ: LD_LIBRARY_PATH = /usr/local/src/oracle/product/10.1.3.2.0/OracleAS_1/jdk/jre/lib/sparc/server:/usr/local/src/oracle/product/10.1.3.2.0/OracleAS_1/jdk/jre/lib/sparc:/usr/local/src/oracle/product/10.1.3.2.0/OracleAS_1/jdk/jre/../lib/sparc:/oracle/product/10.1.3.2.0/OracleAS_1/opmn/lib:/oracle/product/10.1.3.2.0/OracleAS_1/lib32
    08/12/09 14:14:27 >> environ: X_LD_LIBRARY_PATH_64 = /oracle/product/10.1.3.2.0/OracleAS_1/lib
    08/12/09 14:14:27 >> environ: ORACLE_HOME = /oracle/product/10.1.3.2.0/OracleAS_1
    08/12/09 14:14:27 >> environ: SHELL = /bin/bash
    Does anyone know how I can get the deployed version (running in the server container) to work exactly in the same way as the version run from a simple command line?

  • Run iTunes on a headless server

    I am wanting to run iTunes as a Music server on a headless server without an audio card. I have installed it copied over my entire library and turned on Homesharing. It works awesome with my Apple TV and any other iTunes computer but there is one problem. Since this is a Homeserver box (HP EX495) there isn't an audio card so every time I launch iTunes it first says there isn't a audio device. I push OK and everything works. I want to enable autologin and put iTunes in the start menu so I never have to remote into the box to push ok. Is there a command line switch with iTunes to not check on Audio/Video hardware?

    I finally found help for setting up itunes on startup with no sound card. This worked for my HP Smartmedia server so it may work for you as well.
    Copied from another forum (Mediasmartserver)
    Step 1: Remove iTunes
    Remove any install of iTunes form the server by logging in using RDC (Remember: Administrator, servername /console or /admin), After iTunes uninstall, go to Add/Remove Programs from Control Panel and also uninstall the following:
    "Apple Application Support", "Bonjour", " Apple Software Update" and "QuickTime" (don't worry if some are not there to uninstall)
    Now restart the server.
    Step 2: iTunes Service Errors
    Dial back into the server using RDC, Download the latest version of iTunes installer (32bit) from Apple, Run the installer, when the installer gets to "running services" it will hang for a bit then a error message will pop up regarding "ipodservice failed to start", Click IGNORE and the iTunes install will complete.
    After install has completed you may get several windows error messages regarding "iPodservice 32bit" and, or "iTunesHelper" simply keep clicking "Don't Send" until the messages stop appearing.
    Now disable iTunesHelper and the iPodService. Do this by:
    iPodService:
    Start > Run > type msconfig > Services Tab > Uncheck iPodService.
    iTunesHelper:
    Startup Tab > Uncheck iTunesHelper (you should also uncheck "Logon Warning" also to stop the annoying popup warning every time you login using RDC)
    Apply Changes, Click Restart LATER.
    Step 3: Add iTunes to the DEP list
    Now you need to add iTunes components to the DEP exempt list. Do this by:
    While in your server desktop using RDC,
    Right click "My Computer" > Properties > Advanced Tab > Under Performance section click Settings > Data Execution Prevention tab >Ensure "Turn on DEP for all programs and services except those I select" is selected > Click ADD > Add "iTunes.exe", "iTunesHelper.exe", "iPodService.exe", "iTunesPhotoProcessor.exe"
    you will find iTunes.exe, iTunesHelper.exe and iTunesPhotoProcessor.exe at C:/Program Files/iTunes/ (default location)
    you will find iPodService.exe at C:/Program Files/iPod/bin/ (default location)
    Restart the Server.
    You may think why not just select "Turn on DEP for essential windows programs and services only" I thought the same but I can ensure you, you will run into issues if you do this!
    Step 4: Audio Configuration Error
    Login in using RDC, you should hopefully not see any iTunes/iPod related error messages when logging into Windows. If you do check your DEP list to ensure all of the above are on there, OR you could try disabling Windows Error Reporting:
    Right click "My Computer" > Properties > Advanced Tab > Error Reporting > Disable Error Reporting.
    Launch iTunes, You will notice you get a " iTunes had detected a Audio Configuration Error" Click OK, iTunes will launch. Close iTunes
    this happens because the server has no Audio Hardware, You need to install a "virtual audio cable" Download the following free program:
    http://www.softpile.com/Multimedia/Audio/Review13135index.html(this is the virtual audio cable)
    Now disconnect from the Server by closing RDC connection
    Now for this to work you must change a setting in the RDC program: Sound output MUST be selected to: "from the windows based computer only" (RDC for Mac) or "leave at remote computer" (Windows RDC) you need to do this for the Virtual Audio Cable to install correctly on the server. Log back in using RDC and run the Virtual Audio Cable setup file. Now start iTunes, you should not see any Audio configuration error messages.
    If you do,
    close iTunes, go to: Start > Control Panel > Quick Time > Audio Tab > Select "Direct Sound" > Apply settings and close > Try iTunes again.
    If you still have a issue make sure you changed the sound option in RDC correctly or try a restart of the server.
    This should now mean iTunes can start without any user input.
    You should also add your iOS remote device now if you are going to be using one.
    Step 5: iTunes auto launch on startup
    Now that iTunes is free of errors, we need to make it auto start up when your server starts without needing to login into your server via RDC every time to start iTunes.
    Simply add iTunes to the Start up folder, by either dragging the desktop shortcut to the start menu > all programs > and drop it into the startup folder OR place the iTunes shortcut into C:\Documents and Settings\Administrator\Start Menu\Programs\Startup\
    Now to make the Administrator console login automatically on Windows start up, To do this you need to edit the registry of windows, Don't be afraid its simple and easy!
    Start > Run > type regedit.exe > HKEYLOCALMACHINE > SOFTWARE > Microsoft > Windows NT >CurrentVersion > Winlogon
    Double-click the DefaultUserName entry, type Administrator, and then click OK.
    Double-click the DefaultPassword entry, type your password, and then click OK.
    NOTE: If the DefaultPassword value does not exist, it must be added. To add the value, follow these steps:
    On the Edit menu, click New, and then point to String Value.
    Type DefaultPassword, and then press ENTER.
    Double-click DefaultPassword.
    In the Edit String dialog, type your password and then click OK.
    Now Double-click AutoAdminLogon entry
    In the Edit String dialog box, type 1 and then click OK. (delete the zero (0) if there is one)
    Quit Registry Editor.
    As a nice touch (you don't have to do this)but if your like me, when logging in using RDC you see iTunes open, really you want it to startup minimized to the tray right? Yes! Do so by downloading and installing iTunes Control onto your server, its a free program.
    You can get iTunes Control form here:
    http://itunescontrol.com/download.php
    Once installed, open iTunesControl > Startup & Shutdown > Select Minimize iTunes on Startup > Apply setting and close.
    Also in iTunes go to: Edit > Preferences >Advanced > Select "Show iTunes icon in system tray" and also select "Minimize iTunes window to system tray"
    Your Done! if you restart the server it should automatically launch iTunes without ANY user input, easy way to check is by using a iOS device remote app to see if it connects after a server restart. or by using your apple tv to confirm iTunes is running. If you are streaming to a AirPort Express make sure it is selected as the speaker output from iTunes or via Remote App.

  • Headless server installation

    This link "Rescue CD/distribution that enables ssh/telnet on boot?" and my 15-year-old headless server have inspired me to make an Arch Linux install image that allows headless installation (no monitor, no keyboard) and some rescue action.
    Assumptions:
    - No monitor, no keyboard
    - Network card, and wired connection to local network
    - No other solution, but Arch install media acceptable
    Recipe:
    - Download official install image and unpack it to a directory
    - Modify syslinux to enable automatic installation process start
      (I modified 'arch/boot/syslinux/archiso.cfg')
      You have to choose i686 or x86_64 at this stage.
    - Unsquash 'arch/${ARCH}/root-image.fs.sfs' to a directory
      Mount the resulting rootfs and modify it to your liking
      You can even chroot into it.
      In order to enable sshd.service at boot, I just added a symbolic link
      in /etc/systemd/system/multi-user.target.wants/
    - Unmount rootfs, shquash it, and put it back where you have taken it from.
    - Generate iso image
    - Burn it.
    Done.
    There is an excellent wiki article that helped me generate my install image: https://wiki.archlinux.org/index.php/Re … nstall_ISO.
    I have made a bash script that automates all the steps above. I tested it installing i686 on my old computer. You can find it here.
    Hope it helps.
    If you have a better solution, please share.

    I thought about the wiki, but decided not to put it there. It is definitely not a complete solution. For instance, unnecessary system files should be removed. I did nothing about EFI. The purpose is just to give a working solution. Admittedly uncompleted, but working. Automated by the script, too.
    I also hoped to encourage others to show their solutions. There must be some, although I've been looking for any for quite a while and found nothing.

  • SSH into headless server

    Hi,
    I'm trying to rescue my headless power pc box at home.
    On my desktop machine I'm running ArchLinux and on my headless server the Debian GNU/Linux Wheezy operating system.
    The headless server can be booted with an USB stick rescue system.
    I have setup my desktop machine to be a DHCPD server. I did followings:
    # nano /etc/dhcpd.conf
    # Using the google's dns in the example.
    # Change it to 192.168.1.1 if you have a dns server installed
    option domain-name-servers 8.8.8.8;
    option subnet-mask 255.255.255.0;
    option routers 192.168.1.1;
    subnet 192.168.1.0 netmask 255.255.255.0 {
    range 192.168.1.20 192.168.1.020;
    I created the following file too:
    # nano /etc/conf.d/dhcp
    DHCP_ARGS="-q -s 192.168.1.1"
    Then I run the following commands:
    # netctl stop ethernet-dhcp
    # ip link set up dev enp0s20
    # ip addr add 192.168.1.1/24 dev enp0s20
    # systemctl start dhcpd4.service
    and finally I want to connect to my headless server with SSH:
    # ssh [email protected]
    but get the message:
    ssh: connect to host 192.168.1.20 port 22: No route to host
    What did I wrong?
    Regards, from Paul
    Last edited by csanyipal (2014-05-19 13:54:33)

    csanyipal wrote:What I don't know yet is that that how to setup my home network.
    The headless power pc box should be my gateway/router that get it's static IP address from my ISP, and my desktop pc box is on LAN of that headless power pc box ( gateway/router ). Actually, I don't know how to setup the /etc/network/interfaces file on headless powerpc box to achieve this goal.
    It can't get it's static IP from the ISP, you manually enter that yourself or you have DHCP from the ISP (which is normally the case).  If you use whatever DHCP addresses come from the ISP (hopefully this is private addresses), then you don't really need Arch or anything else serving DHCP.  You might be getting into DHCP competition.  You only need one DHCP server.  If you're doing something complex like PXE booting, then you'll need a router/arch box capable of configuring various DHCP options.  One if by static IP, two if by DHCP, you shouldn't have to deal with your /etc/network/interfaces.  Then you can just figure out what IP has been assigned to your headless box.

  • Headless server is now disconnected (SOLVED)

    I have a tower set up as a media server. It was working fine until the power cord got disconnected while moving stuff around...This coupled with the fact that netctl refuses to connect simple wireless-wpa connections for me (lately) has resulted in me being cut off from the server. If I had a monitor I could manually set up the wireless network but I don't have a monitor. I was hoping to somehow use my netbook with a 15-pin male-to-male monitor cord as an external monitor so I could see what I was typing into it with the keyboard. I assumed this was possible but after digging around I could not find any such solution. So what should I do, go buy a monitor?
    Last edited by felixculpa (2013-05-24 00:56:07)

    I carefully typed in commands to create the
    /etc/udev/rules.d/80-net-slot-names.rules
    file. I then restarted the system and tried
    sudo ip link set wlan0 up
    and my USB wifi card light came on, indicating the wireless was working, and that the interface was now, for certain, named wlan0. Not sure where to go from here though. I tried entering
    sudo wpa_supplicant -B -i <interface> -c <(wpa_passphrase <essid> <passphrase>)
    very carefully, then
    sudo dhcpcd wlan0
    but nothing seems to happen. I tried ssh, pinging, and looking for it to show up under network shares in my file manager. However I found nothing, so there seems to be something wrong with either my wpa_supplicant commands or the dhcpcd command?

  • Problem to solve the server

    Hi all,
    i am using SUN AS 9.0. I have some problems when i am trying to stop server. Before executing the project, it works fine. After that, when i try to stop my server, it didnt stop. Eventhough, i am hardly tried to stop by terminating the process in the task. Its not at all working.
    I dont know how to solve it. It makes admin console to hang.
    Suggest me
    thank you

    Mobileme has moved to moved iCloud:
    http://www.apple.com/icloud/setup/
    Note, if you have Mac OS X 10.6.8 or earlier, read this tip before updating to 10.7:
    https://discussions.apple.com/docs/DOC-6271
    And this tip about changes to iCloud from Mobileme:
    https://discussions.apple.com/docs/DOC-2551

  • Deploying a WAR to the J2EE Server - Suggestions Plz.

    Hi,
    I have a WAR file from my previous project, I would like to deploy it to my SAP WAS can some one tell me how I can do it also is there is way to Deploy a JAR file to a Server or to upload it there so all my applications can use it in the future without me having to add it to the Lib folder of my projects, I would appreciate any help.
    Best Wishes,
    John.

    Hi John,
    Open the source of application.xml in the EAR project and the add the following
       <module>
            <web>
                <web-uri>sampleweb.war</web-uri>
                <context-root>sampleweb</context-root>
            </web>
        </module>
    Replace your war file name and context root in the above snippet and add it in your application.xml as follows...
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE application PUBLIC "-//Sun Microsystems, Inc.//DTD J2EE Application 1.3//EN"
                                 "http://java.sun.com/dtd/application_1_3.dtd">
    <application>
        <display-name>sample</display-name>
        <description>EAR description</description>
        <module>
            <web>
                <web-uri>sampleweb.war</web-uri>
                <context-root>sampleweb</context-root>
            </web>
        </module>
    </application>
    Once you do it, your war is referred in ear and u can seperately deploy the war and ear and it will be recognized.
    Hope this will solve your problem..
    You may reward points if the solution helped..
    Thanks and regards
    Deepa Jampunathan

  • [SOLVED]xorg-server 1.14.4-1 - mouse wheel not responding while moving

    I notice a relapse of the bug (https://bugs.archlinux.org/task/29191 and https://bugs.freedesktop.org/show_bug.cgi?id=48167) since the xorg-server upgrade. Downgrade to 1.14.3-2 solves the problem. The problem is noticed in ioQuake3 engines.
    UPDATE:
    The problem was relative to the mouse brand and model since other mouses didn't have issues. After a few kernel upgrades the problem went away thus I'm marking this thread SOLVED.
    Last edited by rationalperseus (2014-01-03 19:13:41)

    I've just tested some of the games that had that bug and they all seem fine so I'm thinking it's a different bug, perhaps in ioQuake3.

  • [SOLVED] X server: driver mismatch after upgrade...

    after -Syu upgrade (without errors), screen is blank after starting X. Christmas is coming and I can't play Xmas music so it's turning into family panic too!!
    I've tried Xorg -configure but the logs show there is some driver mismatch which I don't know how to fix.
    I've been using the Intel i915 driver with no problems at all until now.
    Xorg.0.log
    [ 1169.872] _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6
    [ 1169.873] _XSERVTransOpen: transport open failed for inet6/stefnir:0
    [ 1169.873] _XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6
    [ 1169.877]
    X.Org X Server 1.11.3
    Release Date: 2011-12-16
    [ 1169.877] X Protocol Version 11, Revision 0
    [ 1169.877] Build Operating System: Linux 3.1.5-1-ARCH i686
    [ 1169.877] Current Operating System: Linux stefnir 3.1.5-1-ARCH #1 SMP PREEMPT Sun Dec 11 06:26:14 UTC 2011 i686
    [ 1169.877] Kernel command line: root=/dev/sdb1 quiet i915.modeset=1 ro
    [ 1169.877] Build Date: 17 December 2011 09:38:27AM
    [ 1169.877]
    [ 1169.877] Current version of pixman: 0.24.0
    [ 1169.877] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 1169.878] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 1169.878] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Dec 23 15:34:56 2011
    [ 1169.878] (II) Loader magic: 0x8228580
    [ 1169.878] (II) Module ABI versions:
    [ 1169.878] X.Org ANSI C Emulation: 0.4
    [ 1169.879] X.Org Video Driver: 11.0
    [ 1169.879] X.Org XInput driver : 13.0
    [ 1169.879] X.Org Server Extension : 6.0
    [ 1169.881] (--) PCI:*(0:0:2:0) 8086:27ae:1462:0110 rev 3, Mem @ 0xdfe80000/524288, 0xc0000000/268435456, 0xdff00000/262144, I/O @ 0x0000d0f0/8
    [ 1169.881] (--) PCI: (0:0:2:1) 8086:27a6:1462:0110 rev 3, Mem @ 0xdfe00000/524288
    [ 1169.883] List of video drivers:
    [ 1169.883] geode
    [ 1169.883] ztv
    [ 1169.883] i740
    [ 1169.883] siliconmotion
    [ 1169.883] sisusb
    [ 1169.884] xgi
    [ 1169.884] xgixp
    [ 1169.884] dummy
    [ 1169.884] nv
    [ 1169.884] tseng
    [ 1169.884] s3virge
    [ 1169.884] ast
    [ 1169.884] voodoo
    [ 1169.884] r128
    [ 1169.884] intel
    [ 1169.885] s3
    [ 1169.885] apm
    [ 1169.885] ark
    [ 1169.885] chips
    [ 1169.885] vmware
    [ 1169.885] vmwlegacy
    [ 1169.885] i128
    [ 1169.885] neomagic
    [ 1169.885] trident
    [ 1169.885] cirrus
    [ 1169.886] glint
    [ 1169.886] savage
    [ 1169.886] mga
    [ 1169.886] rendition
    [ 1169.886] sis
    [ 1169.886] mach64
    [ 1169.886] tdfx
    [ 1169.886] v4l
    [ 1169.886] fbdev
    [ 1169.887] vesa
    [ 1169.887] (II) LoadModule: "geode"
    [ 1169.887] (II) Loading /usr/lib/xorg/modules/drivers/geode_drv.so
    [ 1169.901] (II) Module geode: vendor="X.Org Foundation"
    [ 1169.901] compiled for 1.10.0, module version = 2.11.12
    [ 1169.901] Module class: X.Org Video Driver
    [ 1169.901] ABI class: X.Org Video Driver, version 10.0
    [ 1169.901] (EE) module ABI major version (10) doesn't match the server's version (11)
    [ 1169.901] (II) UnloadModule: "geode"
    [ 1169.901] (II) Unloading geode
    [ 1169.901] (EE) Failed to load module "geode" (module requirement mismatch, 0)
    [ 1169.901] (II) LoadModule: "ztv"
    [ 1169.902] (II) Loading /usr/lib/xorg/modules/drivers/ztv_drv.so
    [ 1169.906] (II) Module ztv: vendor="X.Org Foundation"
    [ 1169.906] compiled for 1.10.0, module version = 0.0.1
    [ 1169.906] ABI class: X.Org Video Driver, version 10.0
    [ 1169.906] (EE) module ABI major version (10) doesn't match the server's version (11)
    [ 1169.907] (II) UnloadModule: "ztv"
    [ 1169.907] (II) Unloading ztv
    [ 1169.907] (EE) Failed to load module "ztv" (module requirement mismatch, 0)
    [ 1169.907] (II) LoadModule: "i740"
    [ 1169.908] (II) Loading /usr/lib/xorg/modules/drivers/i740_drv.so
    [ 1169.912] (II) Module i740: vendor="X.Org Foundation"
    [ 1169.912] compiled for 1.10.99.902, module version = 1.3.2
    [ 1169.912] Module class: X.Org Video Driver
    [ 1169.912] ABI class: X.Org Video Driver, version 11.0
    [ 1169.912] (II) LoadModule: "siliconmotion"
    [ 1169.913] (II) Loading /usr/lib/xorg/modules/drivers/siliconmotion_drv.so
    [ 1169.921] (II) Module siliconmotion: vendor="X.Org Foundation"
    [ 1169.921] compiled for 1.10.99.902, module version = 1.7.5
    [ 1169.921] Module class: X.Org Video Driver
    [ 1169.921] ABI class: X.Org Video Driver, version 11.0
    [ 1169.921] (II) LoadModule: "sisusb"
    [ 1169.922] (II) Loading /usr/lib/xorg/modules/drivers/sisusb_drv.so
    [ 1169.928] (II) Module sisusb: vendor="X.Org Foundation"
    [ 1169.928] compiled for 1.10.99.902, module version = 0.9.4
    [ 1169.928] Module class: X.Org Video Driver
    [ 1169.928] ABI class: X.Org Video Driver, version 11.0
    [ 1169.928] (II) LoadModule: "xgi"
    [ 1169.929] (II) Loading /usr/lib/xorg/modules/drivers/xgi_drv.so
    [ 1169.945] (EE) LoadModule: Module xgi does not have a xgiModuleData data object.
    [ 1169.946] (II) UnloadModule: "xgi"
    [ 1169.946] (II) Unloading xgi
    [ 1169.946] (EE) Failed to load module "xgi" (invalid module, 0)
    [ 1169.946] (II) LoadModule: "xgixp"
    [ 1169.947] (II) Loading /usr/lib/xorg/modules/drivers/xgixp_drv.so
    [ 1169.955] (II) Module xgixp: vendor="X.Org Foundation"
    [ 1169.955] compiled for 1.10.99.902, module version = 1.7.2
    [ 1169.955] Module class: X.Org Video Driver
    [ 1169.955] ABI class: X.Org Video Driver, version 11.0
    [ 1169.955] (II) Loading sub module "fb"
    [ 1169.955] (II) LoadModule: "fb"
    [ 1169.956] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 1169.957] (II) Module fb: vendor="X.Org Foundation"
    [ 1169.957] compiled for 1.11.3, module version = 1.0.0
    [ 1169.957] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1169.957] (II) Loading sub module "vgahw"
    [ 1169.957] (II) LoadModule: "vgahw"
    [ 1169.958] (II) Loading /usr/lib/xorg/modules/libvgahw.so
    [ 1169.962] (II) Module vgahw: vendor="X.Org Foundation"
    [ 1169.962] compiled for 1.11.3, module version = 0.1.0
    [ 1169.962] ABI class: X.Org Video Driver, version 11.0
    dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.1.5-1-ARCH (tobias@T-POWA-LX) (gcc version 4.6.2 20111125 (prerelease) (GCC) ) #1 SMP PREEMPT Sun Dec 11 06:26:14 UTC 2011
    [ 0.000000] Atom PSE erratum detected, BIOS microcode update recommended
    [ 0.000000] Disabled fast string operations
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009ec00 (usable)
    [ 0.000000] BIOS-e820: 000000000009ec00 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 000000003f5b2000 (usable)
    [ 0.000000] BIOS-e820: 000000003f5b2000 - 000000003f5d5000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000003f5d5000 - 000000003f5e6000 (reserved)
    [ 0.000000] BIOS-e820: 000000003f5e6000 - 000000003f5e9000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000003f5e9000 - 000000003f605000 (reserved)
    [ 0.000000] BIOS-e820: 000000003f605000 - 000000003f606000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000003f606000 - 000000003f608000 (reserved)
    [ 0.000000] BIOS-e820: 000000003f608000 - 000000003f611000 (ACPI data)
    [ 0.000000] BIOS-e820: 000000003f611000 - 000000003f617000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000003f617000 - 000000003f700000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ffb00000 - 00000000ffc00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
    [ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    [ 0.000000] DMI 2.4 present.
    [ 0.000000] DMI: LG Electronics X110-L.A7W2V/X110, BIOS EN021IL1.10I 11/04/2008
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] last_pfn = 0x3f5b2 max_arch_pfn = 0x100000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-DBFFF write-protect
    [ 0.000000] DC000-E7FFF write-through
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask 0C0000000 write-back
    [ 0.000000] 1 base 03F700000 mask 0FFF00000 uncachable
    [ 0.000000] 2 base 03F800000 mask 0FF800000 uncachable
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] initial memory mapped : 0 - 00c00000
    [ 0.000000] Base memory trampoline at [c009a000] 9a000 size 16384
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
    [ 0.000000] 0000000000 - 00377fe000 page 4k
    [ 0.000000] kernel direct mapping tables up to 377fe000 @ b1f000-c00000
    [ 0.000000] RAMDISK: 3f2d0000 - 3f5a2000
    [ 0.000000] Allocated new RAMDISK: 3752c000 - 377fd57c
    [ 0.000000] Move RAMDISK from 000000003f2d0000 - 000000003f5a157b to 3752c000 - 377fd57b
    [ 0.000000] ACPI: RSDP 000f03c0 00024 (v02 LGE)
    [ 0.000000] ACPI: XSDT 3f60ff10 0004C (v01 LGE LGPC 06222004 MSFT 00010013)
    [ 0.000000] ACPI: FACP 3f5e6c10 000F4 (v04 LGE LGPC 06222004 MSFT 00010013)
    [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20110623/tbfadt-369)
    [ 0.000000] ACPI Warning: 32/64X FACS address mismatch in FADT - 0x3F611E40/0x000000003F611D40, using 32 (20110623/tbfadt-489)
    [ 0.000000] ACPI: DSDT 3f608010 057B2 (v01 LGE LGPC 00000000 INTL 20051117)
    [ 0.000000] ACPI: FACS 3f611e40 00040
    [ 0.000000] ACPI: APIC 3f610e90 0005C (v02 LGE LGPC 06222004 MSFT 00010013)
    [ 0.000000] ACPI: SSDT 3f605510 004CE (v02 PmRef CpuPm 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 3f5e8a10 00232 (v02 PmRef Cpu0Tst 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 3f611a10 000A0 (v02 PmRef Cpu1Tst 00003000 INTL 20051117)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] 125MB HIGHMEM available.
    [ 0.000000] 887MB LOWMEM available.
    [ 0.000000] mapped low ram: 0 - 377fe000
    [ 0.000000] low ram: 0 - 377fe000
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] Normal 0x00001000 -> 0x000377fe
    [ 0.000000] HighMem 0x000377fe -> 0x0003f5b2
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[2] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009e
    [ 0.000000] 0: 0x00000100 -> 0x0003f5b2
    [ 0.000000] On node 0 totalpages: 259392
    [ 0.000000] free_area_init_node: node 0, pgdat c05ce580, node_mem_map f6d3b200
    [ 0.000000] DMA zone: 32 pages used for memmap
    [ 0.000000] DMA zone: 0 pages reserved
    [ 0.000000] DMA zone: 3950 pages, LIFO batch:0
    [ 0.000000] Normal zone: 1744 pages used for memmap
    [ 0.000000] Normal zone: 221486 pages, LIFO batch:31
    [ 0.000000] HighMem zone: 252 pages used for memmap
    [ 0.000000] HighMem zone: 31928 pages, LIFO batch:7
    [ 0.000000] Using APIC driver default
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 000000000009f000
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] Allocating PCI resources starting at 3f700000 (gap: 3f700000:c0400000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 13 pages/cpu @f6d1b000 s29632 r0 d23616 u53248
    [ 0.000000] pcpu-alloc: s29632 r0 d23616 u53248 alloc=13*4096
    [ 0.000000] pcpu-alloc: [0] 0 [0] 1
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 257364
    [ 0.000000] Kernel command line: root=/dev/sdb1 quiet i915.modeset=1 ro
    [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [ 0.000000] Initializing CPU#0
    [ 0.000000] allocated 4151840 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Initializing HighMem for node 0 (000377fe:0003f5b2)
    [ 0.000000] Memory: 1014276k/1038024k available (3472k kernel code, 23292k reserved, 1483k data, 512k init, 128720k highmem)
    [ 0.000000] virtual kernel memory layout:
    [ 0.000000] fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    [ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    [ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    [ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    [ 0.000000] .init : 0xc05d7000 - 0xc0657000 ( 512 kB)
    [ 0.000000] .data : 0xc0464055 - 0xc05d6fc0 (1483 kB)
    [ 0.000000] .text : 0xc0100000 - 0xc0464055 (3472 kB)
    [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:512
    [ 0.000000] CPU 0 irqstacks, hard=f640c000 soft=f640e000
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] spurious 8259A interrupt: IRQ7.
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.000000] Detected 1600.017 MHz processor.
    [ 0.006670] Calibrating delay loop (skipped), value calculated using timer frequency.. 3201.36 BogoMIPS (lpj=5333390)
    [ 0.006682] pid_max: default: 32768 minimum: 301
    [ 0.006798] Security Framework initialized
    [ 0.006808] AppArmor: AppArmor disabled by boot time parameter
    [ 0.006881] Mount-cache hash table entries: 512
    [ 0.007416] Initializing cgroup subsys cpuacct
    [ 0.007455] Initializing cgroup subsys memory
    [ 0.007481] Initializing cgroup subsys devices
    [ 0.007487] Initializing cgroup subsys freezer
    [ 0.007493] Initializing cgroup subsys net_cls
    [ 0.007499] Initializing cgroup subsys blkio
    [ 0.007575] Atom PSE erratum detected, BIOS microcode update recommended
    [ 0.007581] Disabled fast string operations
    [ 0.007590] CPU: Physical Processor ID: 0
    [ 0.007594] CPU: Processor Core ID: 0
    [ 0.007601] mce: CPU supports 5 MCE banks
    [ 0.007620] CPU0: Thermal monitoring enabled (TM2)
    [ 0.007628] using mwait in idle threads.
    [ 0.010342] ACPI: Core revision 20110623
    [ 0.020027] ftrace: allocating 15585 entries in 31 pages
    [ 0.023444] Enabling APIC mode: Flat. Using 1 I/O APICs
    [ 0.023739] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
    [ 0.058402] CPU0: Intel(R) Atom(TM) CPU N270 @ 1.60GHz stepping 02
    [ 0.059996] Performance Events: PEBS fmt0+, Atom events, Intel PMU driver.
    [ 0.059996] ... version: 3
    [ 0.059996] ... bit width: 40
    [ 0.059996] ... generic registers: 2
    [ 0.059996] ... value mask: 000000ffffffffff
    [ 0.059996] ... max period: 000000007fffffff
    [ 0.059996] ... fixed-purpose events: 3
    [ 0.059996] ... event mask: 0000000700000003
    [ 0.077211] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.103372] CPU 1 irqstacks, hard=f64c8000 soft=f64ca000
    [ 0.103378] Booting Node 0, Processors #1 Ok.
    [ 0.103385] smpboot cpu 1: start_ip = 9a000
    [ 0.009999] Initializing CPU#1
    [ 0.009999] Atom PSE erratum detected, BIOS microcode update recommended
    [ 0.009999] Disabled fast string operations
    [ 0.200052] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.206667] Brought up 2 CPUs
    [ 0.206675] Total of 2 processors activated (6402.39 BogoMIPS).
    [ 0.207109] devtmpfs: initialized
    [ 0.207109] PM: Registering ACPI NVS region at 3f5b2000 (143360 bytes)
    [ 0.207109] PM: Registering ACPI NVS region at 3f5e6000 (12288 bytes)
    [ 0.207109] PM: Registering ACPI NVS region at 3f605000 (4096 bytes)
    [ 0.207109] PM: Registering ACPI NVS region at 3f611000 (24576 bytes)
    [ 0.211215] print_constraints: dummy:
    [ 0.211380] NET: Registered protocol family 16
    [ 0.211719] ACPI: bus type pci registered
    [ 0.296420] PCI: Using configuration type 1 for base access
    [ 0.297939] bio: create slab <bio-0> at 0
    [ 0.297939] ACPI: Added _OSI(Module Device)
    [ 0.297939] ACPI: Added _OSI(Processor Device)
    [ 0.297939] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.297939] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.300382] ACPI: EC: Look up EC in DSDT
    [ 0.302439] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.306338] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.307064] ACPI: SSDT 3f5e8c90 00253 (v02 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.307561] ACPI: Dynamic OEM Table Load:
    [ 0.307569] ACPI: SSDT (null) 00253 (v02 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.307899] ACPI: SSDT 3f5e7690 00653 (v02 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.308380] ACPI: Dynamic OEM Table Load:
    [ 0.308388] ACPI: SSDT (null) 00653 (v02 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.317171] ACPI: SSDT 3f5e8f10 000D0 (v02 PmRef Cpu1Ist 00003000 INTL 20051117)
    [ 0.317651] ACPI: Dynamic OEM Table Load:
    [ 0.317659] ACPI: SSDT (null) 000D0 (v02 PmRef Cpu1Ist 00003000 INTL 20051117)
    [ 0.317866] ACPI: SSDT 3f611b10 00083 (v02 PmRef Cpu1Cst 00003000 INTL 20051117)
    [ 0.318325] ACPI: Dynamic OEM Table Load:
    [ 0.318333] ACPI: SSDT (null) 00083 (v02 PmRef Cpu1Cst 00003000 INTL 20051117)
    [ 0.319016] ACPI: Interpreter enabled
    [ 0.319029] ACPI: (supports S0 S1 S3 S4 S5)
    [ 0.319081] ACPI: Using IOAPIC for interrupt routing
    [ 0.332040] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 0.332331] ACPI: No dock devices found.
    [ 0.332337] HEST: Table not found.
    [ 0.332347] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.332744] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.333098] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.333106] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    [ 0.333113] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.333120] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000fffff]
    [ 0.333127] pci_root PNP0A08:00: host bridge window [mem 0x40000000-0xffefffff]
    [ 0.333168] pci 0000:00:00.0: [8086:27ac] type 0 class 0x000600
    [ 0.333232] pci 0000:00:02.0: [8086:27ae] type 0 class 0x000300
    [ 0.333251] pci 0000:00:02.0: reg 10: [mem 0xdfe80000-0xdfefffff]
    [ 0.333262] pci 0000:00:02.0: reg 14: [io 0xd0f0-0xd0f7]
    [ 0.333274] pci 0000:00:02.0: reg 18: [mem 0xc0000000-0xcfffffff pref]
    [ 0.333285] pci 0000:00:02.0: reg 1c: [mem 0xdff00000-0xdff3ffff]
    [ 0.333362] pci 0000:00:02.1: [8086:27a6] type 0 class 0x000380
    [ 0.333378] pci 0000:00:02.1: reg 10: [mem 0xdfe00000-0xdfe7ffff]
    [ 0.333482] pci 0000:00:1b.0: [8086:27d8] type 0 class 0x000403
    [ 0.333509] pci 0000:00:1b.0: reg 10: [mem 0xffe00000-0xffe03fff 64bit]
    [ 0.333581] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.333590] pci 0000:00:1b.0: PME# disabled
    [ 0.333621] pci 0000:00:1c.0: [8086:27d0] type 1 class 0x000604
    [ 0.333693] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.333701] pci 0000:00:1c.0: PME# disabled
    [ 0.333734] pci 0000:00:1c.2: [8086:27d4] type 1 class 0x000604
    [ 0.333806] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.333814] pci 0000:00:1c.2: PME# disabled
    [ 0.333847] pci 0000:00:1d.0: [8086:27c8] type 0 class 0x000c03
    [ 0.333899] pci 0000:00:1d.0: reg 20: [io 0xd080-0xd09f]
    [ 0.333944] pci 0000:00:1d.1: [8086:27c9] type 0 class 0x000c03
    [ 0.333997] pci 0000:00:1d.1: reg 20: [io 0xd060-0xd07f]
    [ 0.334041] pci 0000:00:1d.2: [8086:27ca] type 0 class 0x000c03
    [ 0.334093] pci 0000:00:1d.2: reg 20: [io 0xd040-0xd05f]
    [ 0.334138] pci 0000:00:1d.3: [8086:27cb] type 0 class 0x000c03
    [ 0.334190] pci 0000:00:1d.3: reg 20: [io 0xd020-0xd03f]
    [ 0.334244] pci 0000:00:1d.7: [8086:27cc] type 0 class 0x000c03
    [ 0.334271] pci 0000:00:1d.7: reg 10: [mem 0xdff40000-0xdff403ff]
    [ 0.334357] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.334366] pci 0000:00:1d.7: PME# disabled
    [ 0.334394] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
    [ 0.334472] pci 0000:00:1f.0: [8086:27b9] type 0 class 0x000601
    [ 0.334580] pci 0000:00:1f.0: Force enabled HPET at 0xfed03000
    [ 0.334602] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 004c (mask 0007)
    [ 0.334654] pci 0000:00:1f.2: [8086:27c4] type 0 class 0x000101
    [ 0.334675] pci 0000:00:1f.2: reg 10: [io 0xd0e0-0xd0e7]
    [ 0.334689] pci 0000:00:1f.2: reg 14: [io 0xd0d0-0xd0d3]
    [ 0.334703] pci 0000:00:1f.2: reg 18: [io 0xd0c0-0xd0c7]
    [ 0.334716] pci 0000:00:1f.2: reg 1c: [io 0xd0b0-0xd0b3]
    [ 0.334730] pci 0000:00:1f.2: reg 20: [io 0xd0a0-0xd0af]
    [ 0.334770] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.334778] pci 0000:00:1f.2: PME# disabled
    [ 0.334869] pci 0000:01:00.0: [10ec:8136] type 0 class 0x000200
    [ 0.334891] pci 0000:01:00.0: reg 10: [io 0xc000-0xc0ff]
    [ 0.334928] pci 0000:01:00.0: reg 18: [mem 0xffd10000-0xffd10fff 64bit pref]
    [ 0.334954] pci 0000:01:00.0: reg 20: [mem 0xffd00000-0xffd0ffff 64bit pref]
    [ 0.334972] pci 0000:01:00.0: reg 30: [mem 0xdfd00000-0xdfd0ffff pref]
    [ 0.335022] pci 0000:01:00.0: supports D1 D2
    [ 0.335027] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.335037] pci 0000:01:00.0: PME# disabled
    [ 0.340012] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
    [ 0.340021] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 0.340030] pci 0000:00:1c.0: bridge window [mem 0xdfd00000-0xdfdfffff]
    [ 0.340041] pci 0000:00:1c.0: bridge window [mem 0xffd00000-0xffdfffff 64bit pref]
    [ 0.340129] pci 0000:02:00.0: [10ec:8199] type 0 class 0x000280
    [ 0.340154] pci 0000:02:00.0: reg 10: [io 0xb000-0xb0ff]
    [ 0.340175] pci 0000:02:00.0: reg 14: [mem 0xdfc00000-0xdfc03fff]
    [ 0.340276] pci 0000:02:00.0: supports D1 D2
    [ 0.340282] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot
    [ 0.340291] pci 0000:02:00.0: PME# disabled
    [ 0.346672] pci 0000:00:1c.2: PCI bridge to [bus 02-02]
    [ 0.346681] pci 0000:00:1c.2: bridge window [io 0xb000-0xbfff]
    [ 0.346689] pci 0000:00:1c.2: bridge window [mem 0xdfc00000-0xdfcfffff]
    [ 0.346773] pci 0000:00:1e.0: PCI bridge to [bus 03-03] (subtractive decode)
    [ 0.346789] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.346796] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.346803] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.346811] pci 0000:00:1e.0: bridge window [mem 0x000c0000-0x000fffff] (subtractive decode)
    [ 0.346820] pci 0000:00:1e.0: bridge window [mem 0x40000000-0xffefffff] (subtractive decode)
    [ 0.346845] pci_bus 0000:00: on NUMA node 0
    [ 0.346856] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.347160] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P4._PRT]
    [ 0.347263] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P6._PRT]
    [ 0.347582] pci0000:00: Unable to request _OSC control (_OSC support mask: 0x1e)
    [ 0.360432] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [ 0.360560] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    [ 0.360684] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    [ 0.360805] ACPI: PCI Interrupt Link [LNKD] (IRQs *3 4 5 6 7 10 11 12 14 15)
    [ 0.360927] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    [ 0.361050] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    [ 0.361173] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    [ 0.361297] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    [ 0.361478] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.361478] vgaarb: loaded
    [ 0.361478] vgaarb: bridge control possible 0000:00:02.0
    [ 0.361478] PCI: Using ACPI for IRQ routing
    [ 0.361478] PCI: pci_cache_line_size set to 64 bytes
    [ 0.361478] reserve RAM buffer: 000000000009ec00 - 000000000009ffff
    [ 0.361478] reserve RAM buffer: 000000003f5b2000 - 000000003fffffff
    [ 0.361478] NetLabel: Initializing
    [ 0.361478] NetLabel: domain hash size = 128
    [ 0.361478] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.361478] NetLabel: unlabeled traffic allowed by default
    [ 0.361478] hpet clockevent registered
    [ 0.361478] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    [ 0.361478] hpet0: at MMIO 0xfed03000, IRQs 2, 8, 0
    [ 0.361478] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    [ 0.373339] Switching to clocksource hpet
    [ 0.376447] Switched to NOHz mode on CPU #0
    [ 0.376598] Switched to NOHz mode on CPU #1
    [ 0.389045] pnp: PnP ACPI init
    [ 0.389089] ACPI: bus type pnp registered
    [ 0.389304] pnp 00:00: [bus 00-ff]
    [ 0.389312] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.389318] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.389324] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.389331] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.389337] pnp 00:00: [mem 0x000c0000-0x000fffff window]
    [ 0.389344] pnp 00:00: [mem 0x40000000-0xffefffff window]
    [ 0.389483] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.389694] pnp 00:01: [mem 0xfed14000-0xfed17fff]
    [ 0.389703] pnp 00:01: [mem 0xfed19000-0xfed19fff]
    [ 0.389709] pnp 00:01: [mem 0xfed18000-0xfed18fff]
    [ 0.389715] pnp 00:01: [mem 0xe0000000-0xefffffff]
    [ 0.389822] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
    [ 0.389830] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.389837] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.389845] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.389853] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.389942] pnp 00:02: [io 0x0061]
    [ 0.390070] pnp 00:02: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.390104] pnp 00:03: [dma 4]
    [ 0.390110] pnp 00:03: [io 0x0000-0x000f]
    [ 0.390116] pnp 00:03: [io 0x0081-0x0083]
    [ 0.390121] pnp 00:03: [io 0x0087]
    [ 0.390127] pnp 00:03: [io 0x0089-0x008b]
    [ 0.390132] pnp 00:03: [io 0x008f]
    [ 0.390137] pnp 00:03: [io 0x00c0-0x00df]
    [ 0.390218] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.390248] pnp 00:04: [io 0x0070-0x0071]
    [ 0.390269] pnp 00:04: [irq 8]
    [ 0.390343] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.390394] pnp 00:05: [io 0x0010-0x001f]
    [ 0.390401] pnp 00:05: [io 0x0022-0x003f]
    [ 0.390406] pnp 00:05: [io 0x0044-0x005f]
    [ 0.390411] pnp 00:05: [io 0x0063]
    [ 0.390416] pnp 00:05: [io 0x0065]
    [ 0.390422] pnp 00:05: [io 0x0067-0x006f]
    [ 0.390427] pnp 00:05: [io 0x0072-0x007f]
    [ 0.390432] pnp 00:05: [io 0x0080]
    [ 0.390437] pnp 00:05: [io 0x0084-0x0086]
    [ 0.390443] pnp 00:05: [io 0x0088]
    [ 0.390452] pnp 00:05: [io 0x008c-0x008e]
    [ 0.390457] pnp 00:05: [io 0x0090-0x009f]
    [ 0.390463] pnp 00:05: [io 0x00a2-0x00bf]
    [ 0.390468] pnp 00:05: [io 0x00e0-0x00ef]
    [ 0.390473] pnp 00:05: [io 0x04d0-0x04d1]
    [ 0.390597] system 00:05: [io 0x04d0-0x04d1] has been reserved
    [ 0.390606] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.390634] pnp 00:06: [io 0x00f0-0x00ff]
    [ 0.390648] pnp 00:06: [irq 13]
    [ 0.390723] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.390774] pnp 00:07: [io 0x0060]
    [ 0.390780] pnp 00:07: [io 0x0064]
    [ 0.390793] pnp 00:07: [irq 1]
    [ 0.390870] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.390919] pnp 00:08: [irq 12]
    [ 0.391002] pnp 00:08: Plug and Play ACPI device, IDs PNP0f03 PNP0f13 (active)
    [ 0.391800] pnp 00:09: [io 0x0400-0x047f]
    [ 0.391807] pnp 00:09: [io 0x1180-0x119f]
    [ 0.391813] pnp 00:09: [io 0x0500-0x053f]
    [ 0.391819] pnp 00:09: [mem 0xfec00000-0xfec00fff]
    [ 0.391825] pnp 00:09: [mem 0xfee00000-0xfee00fff]
    [ 0.391831] pnp 00:09: [mem 0xfed20000-0xfed23fff]
    [ 0.391837] pnp 00:09: [mem 0xffb00000-0xffbfffff]
    [ 0.391843] pnp 00:09: [mem 0xfc800400-0xfc800fff]
    [ 0.391971] system 00:09: [io 0x0400-0x047f] has been reserved
    [ 0.391979] system 00:09: [io 0x1180-0x119f] has been reserved
    [ 0.391986] system 00:09: [io 0x0500-0x053f] has been reserved
    [ 0.391995] system 00:09: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.392003] system 00:09: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.392010] system 00:09: [mem 0xfed20000-0xfed23fff] has been reserved
    [ 0.392018] system 00:09: [mem 0xffb00000-0xffbfffff] has been reserved
    [ 0.392025] system 00:09: [mem 0xfc800400-0xfc800fff] has been reserved
    [ 0.392034] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.392219] pnp 00:0a: [mem 0xfed03000-0xfed033ff]
    [ 0.392311] pnp 00:0a: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.392683] pnp: PnP ACPI: found 11 devices
    [ 0.392689] ACPI: ACPI bus type pnp unregistered
    [ 0.434526] PCI: max bus depth: 1 pci_try_num: 2
    [ 0.434578] pci 0000:00:1c.2: BAR 15: assigned [mem 0x40000000-0x401fffff 64bit pref]
    [ 0.434586] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
    [ 0.434594] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 0.434604] pci 0000:00:1c.0: bridge window [mem 0xdfd00000-0xdfdfffff]
    [ 0.434614] pci 0000:00:1c.0: bridge window [mem 0xffd00000-0xffdfffff 64bit pref]
    [ 0.434625] pci 0000:00:1c.2: PCI bridge to [bus 02-02]
    [ 0.434632] pci 0000:00:1c.2: bridge window [io 0xb000-0xbfff]
    [ 0.434642] pci 0000:00:1c.2: bridge window [mem 0xdfc00000-0xdfcfffff]
    [ 0.434651] pci 0000:00:1c.2: bridge window [mem 0x40000000-0x401fffff 64bit pref]
    [ 0.434662] pci 0000:00:1e.0: PCI bridge to [bus 03-03]
    [ 0.434704] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.434714] pci 0000:00:1c.0: setting latency timer to 64
    [ 0.434732] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 0.434741] pci 0000:00:1c.2: setting latency timer to 64
    [ 0.434753] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.434762] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.434768] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.434774] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.434781] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000fffff]
    [ 0.434788] pci_bus 0000:00: resource 8 [mem 0x40000000-0xffefffff]
    [ 0.434795] pci_bus 0000:01: resource 0 [io 0xc000-0xcfff]
    [ 0.434801] pci_bus 0000:01: resource 1 [mem 0xdfd00000-0xdfdfffff]
    [ 0.434808] pci_bus 0000:01: resource 2 [mem 0xffd00000-0xffdfffff 64bit pref]
    [ 0.434815] pci_bus 0000:02: resource 0 [io 0xb000-0xbfff]
    [ 0.434821] pci_bus 0000:02: resource 1 [mem 0xdfc00000-0xdfcfffff]
    [ 0.434828] pci_bus 0000:02: resource 2 [mem 0x40000000-0x401fffff 64bit pref]
    [ 0.434835] pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7]
    [ 0.434842] pci_bus 0000:03: resource 5 [io 0x0d00-0xffff]
    [ 0.434848] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.434855] pci_bus 0000:03: resource 7 [mem 0x000c0000-0x000fffff]
    [ 0.434861] pci_bus 0000:03: resource 8 [mem 0x40000000-0xffefffff]
    [ 0.434985] NET: Registered protocol family 2
    [ 0.435160] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    [ 0.435729] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.436781] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.437232] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.437239] TCP reno registered
    [ 0.437250] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.437270] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.437555] NET: Registered protocol family 1
    [ 0.437599] pci 0000:00:02.0: Boot video device
    [ 0.437847] PCI: CLS 64 bytes, default 64
    [ 0.437984] Unpacking initramfs...
    [ 0.537031] Freeing initrd memory: 2888k freed
    [ 0.540348] apm: BIOS not found.
    [ 0.540853] audit: initializing netlink socket (disabled)
    [ 0.540876] type=2000 audit(1324649726.539:1): initialized
    [ 0.544033] highmem bounce pool size: 64 pages
    [ 0.544046] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 0.548701] VFS: Disk quotas dquot_6.5.2
    [ 0.548918] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 0.549214] msgmni has been set to 1735
    [ 0.549715] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.549789] io scheduler noop registered
    [ 0.549796] io scheduler deadline registered
    [ 0.549831] io scheduler cfq registered (default)
    [ 0.550527] intel_idle: MWAIT substates: 0x20220
    [ 0.550545] intel_idle: v0.4 model 0x1C
    [ 0.550549] intel_idle: lapic_timer_reliable_states 0x2
    [ 0.550571] Marking TSC unstable due to TSC halts in idle states deeper than C2
    [ 0.550668] ERST: Table is not found!
    [ 0.550673] GHES: HEST is not enabled!
    [ 0.550703] isapnp: Scanning for PnP cards...
    [ 0.906687] isapnp: No Plug & Play device found
    [ 0.906888] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.097635] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
    [ 1.115862] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.115949] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.116274] mousedev: PS/2 mouse device common for all mice
    [ 1.117231] rtc_cmos 00:04: RTC can wake from S4
    [ 1.117474] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 1.117513] rtc0: alarms up to one year, y3k, 114 bytes nvram, hpet irqs
    [ 1.117751] cpuidle: using governor ladder
    [ 1.118043] cpuidle: using governor menu
    [ 1.118603] TCP cubic registered
    [ 1.118610] NET: Registered protocol family 17
    [ 1.118626] Registering the dns_resolver key type
    [ 1.118673] Using IPI No-Shortcut mode
    [ 1.119032] PM: Hibernation image not present or could not be loaded.
    [ 1.119051] registered taskstats version 1
    [ 1.119524] rtc_cmos 00:04: setting system clock to 2011-12-23 14:15:27 UTC (1324649727)
    [ 1.119658] Initializing network drop monitor service
    [ 1.119813] Freeing unused kernel memory: 512k freed
    [ 1.120308] Write protecting the kernel text: 3476k
    [ 1.120363] Write protecting the kernel read-only data: 1072k
    [ 1.131483] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.143668] udevd[37]: starting version 175
    [ 1.150454] acpi device:1b: registered as cooling_device0
    [ 1.150690] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input1
    [ 1.150714] ACPI: Video Device [IGD] (multi-head: yes rom: no post: no)
    [ 1.156408] Linux agpgart interface v0.103
    [ 1.159703] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:11/PNP0C09:00/PNP0C0D:00/input/input2
    [ 1.160113] ACPI: Lid Switch [LID0]
    [ 1.160323] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3
    [ 1.160342] ACPI: Power Button [PWRB]
    [ 1.160524] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input4
    [ 1.160541] ACPI: Sleep Button [SLPB]
    [ 1.160733] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    [ 1.160748] ACPI: Power Button [PWRF]
    [ 1.162864] atkbd serio0: Unknown key pressed (translated set 2, code 0xf8 on isa0060/serio0).
    [ 1.162875] atkbd serio0: Use 'setkeycodes e078 <keycode>' to make it known.
    [ 1.163122] agpgart-intel 0000:00:00.0: Intel 945GME Chipset
    [ 1.163414] agpgart-intel 0000:00:00.0: detected gtt size: 262144K total, 262144K mappable
    [ 1.163611] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
    [ 1.164256] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000
    [ 1.166318] atkbd serio0: Unknown key released (translated set 2, code 0xf8 on isa0060/serio0).
    [ 1.166330] atkbd serio0: Use 'setkeycodes e078 <keycode>' to make it known.
    [ 1.169036] atkbd serio0: Unknown key pressed (translated set 2, code 0xf7 on isa0060/serio0).
    [ 1.169047] atkbd serio0: Use 'setkeycodes e077 <keycode>' to make it known.
    [ 1.172803] atkbd serio0: Unknown key released (translated set 2, code 0xf7 on isa0060/serio0).
    [ 1.172815] atkbd serio0: Use 'setkeycodes e077 <keycode>' to make it known.
    [ 1.188239] [drm] Initialized drm 1.1.0 20060810
    [ 1.224925] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 1.224937] i915 0000:00:02.0: setting latency timer to 64
    [ 1.265878] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 1.265888] [drm] Driver supports precise vblank timestamp query.
    [ 1.266086] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 1.319929] composite sync not supported
    [ 1.320086] fixme: max PWM is zero.
    [ 1.587275] [drm] initialized overlay support
    [ 1.587345] composite sync not supported
    [ 1.605988] fbcon: inteldrmfb (fb0) is primary device
    [ 1.981043] Console: switching to colour frame buffer device 128x37
    [ 1.988434] fb0: inteldrmfb frame buffer device
    [ 1.988439] drm: registered panic notifier
    [ 1.988475] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 2.248572] usbcore: registered new interface driver usbfs
    [ 2.248657] usbcore: registered new interface driver hub
    [ 2.249489] usbcore: registered new device driver usb
    [ 2.251040] SCSI subsystem initialized
    [ 2.259787] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 2.260561] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 2.260606] ehci_hcd 0000:00:1d.7: setting latency timer to 64
    [ 2.260617] ehci_hcd 0000:00:1d.7: EHCI Host Controller
    [ 2.260718] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
    [ 2.260778] ehci_hcd 0000:00:1d.7: using broken periodic workaround
    [ 2.260798] ehci_hcd 0000:00:1d.7: debug port 1
    [ 2.264722] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
    [ 2.264780] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xdff40000
    [ 2.283402] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 2.285826] hub 1-0:1.0: USB hub found
    [ 2.285847] hub 1-0:1.0: 8 ports detected
    [ 2.288295] libata version 3.00 loaded.
    [ 2.290369] ata_piix 0000:00:1f.2: version 2.13
    [ 2.290414] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 2.290430] ata_piix 0000:00:1f.2: MAP [ P0 P2 IDE IDE ]
    [ 2.292423] uhci_hcd: USB Universal Host Controller Interface driver
    [ 2.443498] ata_piix 0000:00:1f.2: setting latency timer to 64
    [ 2.444782] scsi0 : ata_piix
    [ 2.445094] scsi1 : ata_piix
    [ 2.445291] ata1: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xd0a0 irq 14
    [ 2.445302] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xd0a8 irq 15
    [ 2.445470] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 2.445495] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 2.445506] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 2.445547] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 2.445642] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000d080
    [ 2.446368] hub 2-0:1.0: USB hub found
    [ 2.446387] hub 2-0:1.0: 2 ports detected
    [ 2.446591] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 2.446608] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 2.446615] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 2.446639] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
    [ 2.446759] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000d060
    [ 2.447433] hub 3-0:1.0: USB hub found
    [ 2.447451] hub 3-0:1.0: 2 ports detected
    [ 2.447651] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 2.447668] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 2.447676] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 2.447710] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
    [ 2.447776] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000d040
    [ 2.448202] hub 4-0:1.0: USB hub found
    [ 2.448220] hub 4-0:1.0: 2 ports detected
    [ 2.448415] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
    [ 2.448430] uhci_hcd 0000:00:1d.3: setting latency timer to 64
    [ 2.448438] uhci_hcd 0000:00:1d.3: UHCI Host Controller
    [ 2.448460] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
    [ 2.448503] uhci_hcd 0000:00:1d.3: irq 16, io base 0x0000d020
    [ 2.448921] hub 5-0:1.0: USB hub found
    [ 2.448939] hub 5-0:1.0: 2 ports detected
    [ 2.659902] ata1.00: ATA-8: WDC WD1600BEVT-22ZCT0, 11.01A11, max UDMA/133
    [ 2.659920] ata1.00: 312581808 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 2.667781] ata1.00: configured for UDMA/133
    [ 2.668299] scsi 0:0:0:0: Direct-Access ATA WDC WD1600BEVT-2 11.0 PQ: 0 ANSI: 5
    [ 2.683471] sd 0:0:0:0: [sda] 312581808 512-byte logical blocks: (160 GB/149 GiB)
    [ 2.683723] sd 0:0:0:0: [sda] Write Protect is off
    [ 2.683734] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.683842] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.692118] sda: sda1
    [ 2.693040] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 2.696769] usb 1-5: new high speed USB device number 3 using ehci_hcd
    [ 3.170129] usb 1-6: new high speed USB device number 4 using ehci_hcd
    [ 3.317362] Initializing USB Mass Storage driver...
    [ 3.317971] usbcore: registered new interface driver usb-storage
    [ 3.317979] USB Mass Storage support registered.
    [ 3.322099] scsi2 : usb-storage 1-6:1.0
    [ 3.322520] usbcore: registered new interface driver ums-realtek
    [ 3.416768] usb 2-2: new full speed USB device number 2 using uhci_hcd
    [ 3.635132] input: USB Audio as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.3/input/input6
    [ 3.635360] generic-usb 0003:145F:0090.0001: input,hidraw0: USB HID v1.00 Device [USB Audio] on usb-0000:00:1d.0-2/input3
    [ 3.635428] usbcore: registered new interface driver usbhid
    [ 3.635436] usbhid: USB HID core driver
    [ 4.322701] scsi 2:0:0:0: Direct-Access Generic- Multi-Card 1.00 PQ: 0 ANSI: 0 CCS
    [ 4.913915] sd 2:0:0:0: [sdb] 7744512 512-byte logical blocks: (3.96 GB/3.69 GiB)
    [ 4.914769] sd 2:0:0:0: [sdb] Write Protect is off
    [ 4.914786] sd 2:0:0:0: [sdb] Mode Sense: 03 00 00 00
    [ 4.915595] sd 2:0:0:0: [sdb] No Caching mode page present
    [ 4.915719] sd 2:0:0:0: [sdb] Assuming drive cache: write through
    [ 4.919220] sd 2:0:0:0: [sdb] No Caching mode page present
    [ 4.919347] sd 2:0:0:0: [sdb] Assuming drive cache: write through
    [ 4.923329] sdb: sdb1
    [ 4.929111] sd 2:0:0:0: [sdb] No Caching mode page present
    [ 4.929240] sd 2:0:0:0: [sdb] Assuming drive cache: write through
    [ 4.929366] sd 2:0:0:0: [sdb] Attached SCSI removable disk
    [ 6.138695] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
    [ 7.223153] udevd[212]: starting version 175
    [ 7.443915] ACPI: acpi_idle yielding to intel_idle
    [ 7.554955] thermal LNXTHERM:00: registered as thermal_zone0
    [ 7.554966] ACPI: Thermal Zone [THRM] (51 C)
    [ 7.644996] ACPI: Battery Slot [BAT1] (battery absent)
    [ 7.653955] ACPI: AC Adapter [ADP1] (on-line)
    [ 7.658769] wmi: Mapper loaded
    [ 7.715478] leds_ss4200: no LED devices found
    [ 7.728095] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 7.728180] r8169 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 7.728246] r8169 0000:01:00.0: setting latency timer to 64
    [ 7.728334] r8169 0000:01:00.0: irq 40 for MSI/MSI-X
    [ 7.729275] r8169 0000:01:00.0: eth0: RTL8102e at 0xf8a8a000, 00:21:85:e3:77:df, XID 14a00000 IRQ 40
    [ 7.735821] r8187se: module is from the staging directory, the quality is unknown, you have been warned.
    [ 7.746749] iTCO_vendor_support: vendor-support=0
    [ 7.750136] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
    [ 7.750361] iTCO_wdt: Found a ICH7-M or ICH7-U TCO device (Version=2, TCOBASE=0x0460)
    [ 7.750559] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 7.756571] intel_rng: FWH not detected
    [ 7.762766] ieee80211_crypt: registered algorithm 'NULL'
    [ 7.762776] ieee80211_crypt: registered algorithm 'TKIP'
    [ 7.762783] ieee80211_crypt: registered algorithm 'CCMP'
    [ 7.762790] ieee80211_crypt: registered algorithm 'WEP'
    [ 7.762796]
    [ 7.762798] Linux kernel driver for RTL8180 / RTL8185 based WLAN cards
    [ 7.762804] Copyright (c) 2004-2005, Andrea Merello
    [ 7.762810] r8180: Initializing module
    [ 7.762815] r8180: Wireless extensions version 22
    [ 7.762820] r8180: Initializing proc filesystem
    [ 7.762882] r8180: Configuring chip resources
    [ 7.762909] r8180 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 7.762921] r8180 0000:02:00.0: setting latency timer to 64
    [ 7.768881] r8180: Channel plan is 2
    [ 7.768886]
    [ 7.768894] Dot11d_Init()
    [ 7.768903] r8180: MAC controller is a RTL8187SE b/g
    [ 7.773233] r8180: usValue is 0x100
    [ 7.773238]
    [ 7.819366] r8180: EEPROM version 104
    [ 7.826174] r8180: WW:**PLEASE** REPORT SUCCESSFUL/UNSUCCESSFUL TO Realtek!
    [ 7.827092] r8180: IRQ 18
    [ 7.835993] r8180: Driver probe completed
    [ 7.835998]
    [ 8.037634] Linux media interface: v0.10
    [ 8.167472] Linux video capture interface: v2.00
    [ 8.186513] uvcvideo: Found UVC 1.00 device BisonCam, NB Pro (5986:0203)
    [ 8.190720] input: BisonCam, NB Pro as /devices/pci0000:00/0000:00:1d.7/usb1/1-5/1-5:1.0/input/input7
    [ 8.191076] usbcore: registered new interface driver uvcvideo
    [ 8.191084] USB Video Class driver (1.1.1)
    [ 8.549682] Synaptics Touchpad, model: 1, fw: 6.5, id: 0x1c0b1, caps: 0xa04711/0xa00000/0x0
    [ 8.614088] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input8
    [ 8.621658] usbcore: registered new interface driver snd-usb-audio
    [ 9.252751] EXT4-fs (sdb1): re-mounted. Opts: (null)
    [ 9.304782] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    Last edited by dabbi2000 (2011-12-23 22:15:33)

    dabbi2000 wrote:Do you know the syntax to remove all xf86-video* packages (instead of each and every one manually)?
    Have you tried removing the whole xorg or the the whole xorg-drivers group? The latter may not work, because:
    [karol@black ~]$ pacman -Rns xorg-drivers
    checking dependencies...
    error: failed to prepare transaction (could not satisfy dependencies)
    :: xorg-server: requires xf86-input-evdev
    that's why I suggester removing the whole xorg group.
    You can use the '-dd' switch:
    [karol@black ~]$ pacman -Rdd xorg-drivers
    Targets (4):
    Name Old Version New Version Net Change
    xf86-input-evdev 2.6.0-4 -0,05 MiB
    xf86-video-fbdev 0.4.2-5 -0,03 MiB
    xf86-video-intel 2.17.0-2 -0,78 MiB
    xf86-video-vesa 2.3.0-7 -0,04 MiB
    Total Removed Size: 0,90 MiB
    Do you want to remove these packages? [Y/n]
    just be sure to reinstall Intel drivers.
    Last edited by karol (2011-12-23 15:52:06)

  • [SOLVED]X server problem after system upgrade - fonts garbled

    Hi all,
    I "pacman -Syu"-ed my system yesterday and now my X server is busted. Admittedly, I don't upgrade as often as I should and this was a pretty big upgrade for me so perhaps something broke due to that. Now I cannot see fonts and icons properly. All text except for the "system" fonts is hopelessly garbled. I can only see text clearly in xterm. Images show up just fine.
    Please click the link below for a clearer picture of the problem
    In addition to this, the system hangs (blank screen, but disk light still on) when I exit my X session.
    I went through all the logs but found nothing amiss....
    Pls help, I'd really like my nice archlinux system back....
    thanks in advance.
    Sid
    Last edited by svs (2008-02-20 11:58:25)

    SOLVED!
    The upgrade must have corrupted my intel video drivers because removing and reinstalling the i810 package fixed the problem.

  • Set default gateway on headless server (via ssh)

    I'm trying to configure one of the two ethernet interfaces on a headless Xserve. I managed to give it an address and subnet mask with ifconfig, but I can't figure out how to give it a default gateway or dns server.
    I tried using this:
    sudo route add default gw xxx.xxx.xxx.xxx en0
    but I got the error 'route: bad address: gw'
    is there something wrong with my syntax, or does this just not work on OS X?

    Something's wrong with your syntax
    Try:
    <pre class=command>sudo route add default a.b.c.d</pre>
    The keyword 'gw' is not needed, and you also don't need to specify an interface since the OS should be able to work it out from the IP address(es) assigned to your interface(s).

  • [SOLVED] MySQL Server issues

    I just installed a fresh ArchLinux, restored a backup from an Ubuntu natty, everything works except my MySQL server connections.
    I cannot connect with odbc or jdbc, I'm using the latest versions available:
    $ pacman -Q mysql unixodbc myodbc jre
    mysql 5.5.12-1
    unixodbc 2.3.0-1
    myodbc 5.1.8-1
    jre 6u25-1
    $ mysql -u mencargo -p
    Server version: 5.5.12 Source distribution
    mysql> use etlcontroltf;
    Database changed
    mysql>
    $ cat /etc/odbcinst.ini
    [MySQL]
    Description = ODBC Driver for MySQL
    Driver = /usr/lib/libmyodbc5.so
    $ cat .odbc.ini
    [MySQL]
    Description = MySQL ODBC
    Driver = MySQL
    Server = localhost
    Database = etlcontroltf
    Port = 3306
    Socket = /var/run/mysqld/mysqld.sock
    $ isql MySQL -v
    [01000][unixODBC][Driver Manager]Can't open lib '/usr/lib/libmyodbc5.so' : file not found
    [ISQL]ERROR: Could not SQLConnect
    $ lsd /usr/lib/libmyodbc5.so
    lrwxrwxrwx 1 root 19 Mar 17 09:05 /usr/lib/libmyodbc5.so -> libmyodbc5-5.1.8.so
    For JDBC I'm trying to use mysql-connector-java-5.1.16-bin.jar with DBvisualizer, getting:
    Product:  DbVisualizer Free 7.1.5
    Build:  #1590 (2011/02/24 17:23)
    Java VM:  Java HotSpot(TM) 64-Bit Server VM
    Java Version:  1.6.0_25
    Java Vendor:  Sun Microsystems Inc.
    OS Name:  Linux
    OS Arch:  amd64
    OS Version:  2.6.38-ARCH
    An error occurred while establishing the connection:
    Long Message:
    Communications link failure
    The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
    Details:
       Type: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException
       Error Code: 0
       SQL State: 08S01
    A curious thing about the odbc is that the Arch guide suggests a /usr/lib/libodbcmyS.so file that is not present in my system, or any libodbcmySX.so nor libmyodbcSX.so.
    Anyway, jdbc doesn't have anything to do with odbc, and it's also not working, so maybe it's my server config?
    $ cat /etc/mysql/my.cnf
    [client]
    port = 3306
    socket = /var/run/mysqld/mysqld.sock
    [mysqld]
    port = 3306
    socket = /var/run/mysqld/mysqld.sock
    datadir = /var/lib/mysql
    skip-external-locking
    key_buffer_size = 64M
    max_allowed_packet = 2M
    table_open_cache = 64
    sort_buffer_size = 1M
    net_buffer_length = 512K
    read_buffer_size = 2M
    read_rnd_buffer_size = 1M
    myisam_sort_buffer_size = 16M
    bind-address = 127.0.0.1
    server-id = 1
    [mysqldump]
    quick
    max_allowed_packet = 64M
    [mysql]
    no-auto-rehash
    [myisamchk]
    key_buffer_size = 32M
    sort_buffer_size = 32M
    read_buffer = 16M
    write_buffer = 16M
    Or is this version of the server broken?
    Last edited by mencargo (2011-06-03 05:49:11)

    The my.cnf code posted is the whole config, I don't have skip-networking.
    $ telnet localhost 3306
    Trying 127.0.0.1...
    Connected to localhost.
    Escape character is '^]'.
    Connection closed by foreign host.
    $ netop
    Active Internet connections (servers and established)
    Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
    tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 1483/mysqld
    tcp 0 0 127.0.0.1:3306 127.0.0.1:43098 TIME_WAIT -
    The port seems open but I'm getting disconnected immediately.
    Any thoughts?
    Last edited by mencargo (2011-05-09 02:04:58)

Maybe you are looking for

  • Doubled music on iPod 5th Generation

    Hello, I was hoping someone could help me out with this issue? I had some songs on my iPod that were grayed out. I hooked my iPod into my itunes, of course on the music list everything was there as usual. I go under iPod and "On this iPod" then I cli

  • Is it possible to make an  animated drop down menu  and still use  the menu widget?

    Hi- I am trying to create a menu bar that is hidden with just a tab exposed  to indicate that there is a menu  there. Upon  rollover,  the full menu bar slides down and reveals the menu items.  I can't find a way to make it smoothly  slide down so I

  • Software Update Does Not Appear to Work

    I currently have v4.2.1 iOS on my iPhone 4. Today I see an iOS update for v4.2.6 yet when I go to update it tells me that I have the most current iOS. I would love to know more about v4.2.6 and if it's meant for my iPhone. Thanks

  • Problems with the browser

    Hello, I make an aplication where I manage projects, accesing a apex as developer and run my application and it works well. Then I access to the application as final user and when I modify any data, the aplication does not save the values changed. Wh

  • Help please with Mail attachements

    Can anyone help please. When I send an email with an attachment such as a jpeg to a Windows user the recipient complains that the attachment is embedded in the email and can not be extracted to forward, or print for example. I end up having to use En