Mount.nfs: No such device

I have setup nfs between Ubuntu and Arch linux. First beeing a server an later a client. When I try to mount with:
mount -t nfs 192.168.0.196:/media/disk movies
The error is mount.nfs: No such device
Is this server or client side problem.

http://www.cs.bgu.ac.il/~arik/usail/net … /tips.html
Look under "Common NFS Errors"
I'm guessing you haven't installed nfs-utils and portmap on the client. Or you haven't started them. In the right order (portmap, then nfslock - you don't need to start nfsd on the client)

Similar Messages

  • Getting Error Message - mount.ocfs2: No such device while mounting

    I am trying to mount an ocfs2 file system. The file system seems to have been created fine but I get an error message when I try to mount it. Here's what I get :
    [root@mdcpsdb1 init.d]# ./o2cb status
    Module "configfs": Loaded
    Filesystem "configfs": Mounted
    Module "ocfs2_nodemanager": Loaded
    Module "ocfs2_dlm": Loaded
    Module "ocfs2_dlmfs": Loaded
    Filesystem "ocfs2_dlmfs": Mounted
    Checking cluster ocfs2: Online
    Checking heartbeat: Active
    [root@mdcpsdb1 init.d]# fsck.ocfs2 /dev/sdc1
    Checking OCFS2 filesystem in /dev/sdc1:
    label: oracle_hr
    uuid: f6 23 5e 3b ad bb 49 87 81 a3 cb f0 b7 2a d0 ad
    number of blocks: 24416784
    bytes per block: 4096
    number of clusters: 6104196
    bytes per cluster: 16384
    max slots: 4
    /dev/sdc1 is clean. It will be checked after 20 additional mounts.
    [root@mdcpsdb1 init.d]# mount -t ocfs2 /dev/sdc1 /hr_data
    mount.ocfs2: No such device while mounting /dev/sdc1 on /hr_data
    The same thing happens going through the ocfs2console.
    Thanks,
    David

    Did you get anwer for this error? I got same error. Thanks in advance.

  • Kernel compiling - mount failed: No such device?

    Hello everyone!
    I'm having an issue with mounting the linux kernel I've just compiled.  What I've done:
    -  I've patched linux-2.6.33.3 with patch-2.6.33.3-rt19 by issuing bzcat ../patch-2.6.33.3-rt19.bz2 | patch -p1
    -  sudo make -j4 all
    -  sudo make modules_install
    -  sudo mkinitcpio -g /boot/kernel26rt.img -k 2.6.33.3-rt19
    -  sudo cp ./arch/x86/boot/bzImage /boot/vmlinuz2.6.33.3x86-rt
    -  sudo cp ./System.map /boot/System.map2.6.33.3x86-rt
    -  sudo rm /boot/System.map
    -  sudo ln -s /boot/System.map2.6.33.3x86-rt /boot/System.map
    -  Edit grub/menu.lst:
    # (0) Arch Linux
    title Arch Linux2
    root (hd0,2)
    kernel /vmlinuz26 root=/dev/disk/by-label/root ro
    initrd /kernel26.img
    # (1) Arch Linux
    title Arch Linux Fallback
    root (hd0,2)
    kernel /vmlinuz26 root=/dev/disk/by-label/root ro
    initrd /kernel26-fallback.img
    # (2) Windows
    title Windows
    rootnoverify (hd0,0)
    makeactive
    chainloader +1
    # (3) RT Kernel
    title RT Linux
    root (hd0,2)
    kernel /vmlinuz2.6.33.3x86-rt root=/dev/disk/by-label/root ro
    initrd /kernel26rt.img
    Now when I select the rt kernel from grub, it fails with:
    mount: mounting /dev/disk/by-label/root on /new_root failed: No such device
    Can anyone help me figure out what went wrong?
    -nonpoly

    http://www.cs.bgu.ac.il/~arik/usail/net … /tips.html
    Look under "Common NFS Errors"
    I'm guessing you haven't installed nfs-utils and portmap on the client. Or you haven't started them. In the right order (portmap, then nfslock - you don't need to start nfsd on the client)

  • Cannot mount nfs shares

    Hello,
    since Sunday I'm unable to mount NFS shares:
    mount.nfs: No such device
    The server-side is working fine, I can mount all shares from my FreeBSD Desktop machine.
    I'm using netcfg and start rpcbind and nfs-common upong connection before mounting NFS shares (via netfs). Is this maybe related to some recent pacman updates? It was working flawless just until Sunday.

    As it turns out, It now works.  I did load the nfs module manually during my troubleshooting but it was already loaded or built into the kernel or whatever.
    The thing that made it work is changing the nfs mount lines in /etc/fstab from the hostname of the server to the ip address of the server.  I don't know why that worked on both machines since I could ping the hostname of the nfs server which is a Freenas server and it always worked before.
    @ jasonwryan
    rc.d start rpcbind && rc.d start nfs-common
    start fine after stopped and restarted.  Have you replaced portmap with rpcbind in pacman?  rpcbind superceded portmap a while back.  gl.
    @.:B:.
    lol, snide remark succesfully detected.  In my defense I was half guessing and half sniding (or some percentage thereof).  I have to admit I do get a bit snippy over this since nfs is necessary for my little clients to run mpd and I gets a bit cranky when I gots no musics!  Fueling my frustration, it seems I have to chase down nfs problems frequently after "pacman -Syu".

  • Mount.nfs: access denied

    Hi,
    I've been trying the very basic NFS configuration, using ArchWiki.
    /etc/hosts, client side:
    # /etc/hosts: static lookup table for host names
    #<ip-address>    <hostname.domain.org>    <hostname>
    127.0.0.1    rimfirebox    localhost.localdomain    localhost
    ::1    rimfirebox    localhost6.localdomain6    localhost6
    192.168.1.34             rimfirebox.localdomain  rimfirebox
    192.168.1.33             stovepipebox.localdomain stovepipebox
    # End of file
    Server:
    hosts.allow:
    # /etc/hosts.allow
    nfsd: ALL
    portmap: ALL
    mountd: ALL
    # End of file
    hosts.deny:
    # /etc/hosts.deny
    ALL: ALL
    # End of file
    /etc/exports:
    # /etc/exports
    # See exports(5) for a description.
    # use exportfs -arv to reread
    #/export    192.168.1.10(rw,no_root_squash)
    /home/alexey/common *(ro,sync)
    The required directory is apparently exported, but "access denied":
    [alexey@rimfirebox ~]$ showmount -e stovepipebox
    Export list for stovepipebox:
    /home/alexey/common *
    [alexey@rimfirebox ~]$ sudo mount stovepipebox:/home/alexey/common /mnt/stovepipe
    mount.nfs: access denied by server while mounting stovepipebox:/home/alexey/common
    Where am I supposed to look?
    Last edited by Llama (2011-01-17 08:03:31)

    My studies turned up that there's NFSv4 there .
    https://wiki.archlinux.org/index.php/Nfs
    https://wiki.archlinux.org/index.php/NFSv4
    https://help.ubuntu.com/community/NFSv4Howto
    So I've made another go:
    /etc/exports:
    # /etc/exports
    # See exports(5) for a description.
    # use exportfs -arv to reread
    #/export    192.168.1.10(rw,no_root_squash)
    /export       192.168.1.34(rw,fsid=0,insecure,no_subtree_check,async)
    /export/alexey 192.168.1.34(rw,nohide,insecure,no_subtree_check,async)
    /etc/fstab:
    /home/alexey /export/alexey none bind 0 0
    /etc/idmapd.conf:
    [General]
    Verbosity = 0
    Pipefs-Directory = /var/lib/nfs/rpc_pipefs
    Domain = localdomain
    [Mapping]
    Nobody-User = nobody
    Nobody-Group = nobody
    [Translation]
    Method = nsswitch
    My first question: what my Domain actually is? Do I have to change it to something from my /etc/hosts? Do I have to mend /etc/hosts or something else?
    Starting server:
    [alexey@stovepipebox ~]$ sudo /etc/rc.d/rpcbind start
    :: Starting rpcbind                                                                                        [DONE]
    [alexey@stovepipebox ~]$ sudo /etc/rc.d/nfs-common start
    :: Starting rpc.statd daemon                                                                               [DONE]
    :: Mounting pipefs filesystem                                                                              [BUSY] :: Starting rpc.idmapd daemon                                                                              [DONE]
    [alexey@stovepipebox ~]$ sudo /etc/rc.d/nfs-server start
    :: Mounting nfsd filesystem                                                                                [DONE]
    :: Exporting all directories                                                                               [DONE]
    :: Starting rpc.nfsd daemon                                                                                [DONE]
    :: Starting rpc.mountd daemon                                                                              [DONE]
    Is the [BUSY] thing OK?
    Client side:
    [alexey@rimfirebox ~]$ showmount -e stovepipebox                                                                                                               
    Export list for stovepipebox:                                                                                                                                           
    /export/alexey 192.168.1.34                                                                                                                                             
    /export        192.168.1.34                                                                                                                                             
    [alexey@rimfirebox ~]$ sudo /etc/rc.d/rpcbind start                                                                                                                     
    Password:                                                                                                                                                               
    :: Starting rpcbind                                                                                                                                              [DONE]
    [alexey@rimfirebox ~]$ sudo /etc/rc.d/nfs-common start                                                                                                                 
    :: Starting rpc.statd daemon                                                                                                                                     [DONE]
    [alexey@rimfirebox ~]$ sudo mount -t nfs4 stovepipebox:/ /mnt                                                                                                           
    mount.nfs4: No such device
    Here I at the very least have no clear idea what names to use. Please, help.
    Last edited by Llama (2011-01-23 17:19:02)

  • Mount: No such device or address - URGENT help needed

    Hi folks,
    I am going to install Oracle 10g on SunOS 5.9 and for this the parameter noexec_user_stack has to be set to 1 in /etc/system .I did it and then I rebooted the machine .Then the problems started - 3 filesystems containing oracle installation and oradata was not mouned. When I try to mount them manually, I get
    # mount /dev/md/dsk/d36
    mount: No such device or address
    mount: Cannot open /dev/md/dsk/d36
    If I try -
    # mount /dev/md/rdsk/d36
    mount: mount point cannot be determined
    In /etc/vfstab
    /dev/md/dsk/d36 /dev/md/rdsk/d36 /local/oracle ufs 3 yes logging
    Can someone helpl me? IS this a hardware problem with the disk(and eventually the disk was gone) or it was caused by changing this kernel parameter?
    Any help would be appreciated.

    You have probelm either with vfstab or you have not created directories where you want to mount the filesystem.

  • NFS4: Problem mounting NFS mount onto a Solaris 10 Client

    Hi,
    I am having problems mounting NFS mount point from a Linux-Server onto a Solaris 10 Client.
    In the following
    =My server IP ..*.120
    =Client IP ..*.100
    Commands run on Client:
    ==================
    # mount -o vers=3 -F nfs 172.25.30.120:/scratch/pvfs2 /scratch/pvfs2
    nfs mount: 172.25.30.120: : RPC: Rpcbind failure - RPC: Unable to receive
    nfs mount: retrying: /scratch/pvfs2
    nfs mount: 172.25.30.120: : RPC: Rpcbind failure - RPC: Unable to receive
    nfs mount: 172.25.30.120: : RPC: Rpcbind failure - RPC: Unable to receive
    # mount -o vers=4 -F nfs 172.25.30.120:/scratch/pvfs2 /scratch/pvfs2
    nfs mount: 172.25.30.120:/scratch/pvfs2: No such file or directory
    # rpcinfo -p
    program vers proto port service
    100000 4 tcp 111 rpcbind
    100000 3 tcp 111 rpcbind
    100000 2 tcp 111 rpcbind
    100000 4 udp 111 rpcbind
    100000 3 udp 111 rpcbind
    100000 2 udp 111 rpcbind
    1073741824 1 tcp 36084
    100024 1 udp 42835 status
    100024 1 tcp 36086 status
    100133 1 udp 42835
    100133 1 tcp 36086
    100001 2 udp 42836 rstatd
    100001 3 udp 42836 rstatd
    100001 4 udp 42836 rstatd
    100002 2 tcp 36087 rusersd
    100002 3 tcp 36087 rusersd
    100002 2 udp 42838 rusersd
    100002 3 udp 42838 rusersd
    100011 1 udp 42840 rquotad
    100021 1 udp 4045 nlockmgr
    100021 2 udp 4045 nlockmgr
    100021 3 udp 4045 nlockmgr
    100021 4 udp 4045 nlockmgr
    100021 1 tcp 4045 nlockmgr
    100021 2 tcp 4045 nlockmgr
    100021 3 tcp 4045 nlockmgr
    100021 4 tcp 4045 nlockmgr
    # showmount -e 172.25.30.120 (Server)
    showmount: 172.25.30.120: RPC: Rpcbind failure - RPC: Unable to receive
    Commands OnServer:
    ================
    program vers proto port
    100000 2 tcp 111 portmapper
    100000 2 udp 111 portmapper
    100021 1 tcp 49927 nlockmgr
    100021 3 tcp 49927 nlockmgr
    100021 4 tcp 49927 nlockmgr
    100021 1 udp 32772 nlockmgr
    100021 3 udp 32772 nlockmgr
    100021 4 udp 32772 nlockmgr
    100011 1 udp 796 rquotad
    100011 2 udp 796 rquotad
    100011 1 tcp 799 rquotad
    100011 2 tcp 799 rquotad
    100003 2 udp 2049 nfs
    100003 3 udp 2049 nfs
    100003 4 udp 2049 nfs
    100003 2 tcp 2049 nfs
    100003 3 tcp 2049 nfs
    100003 4 tcp 2049 nfs
    100005 1 udp 809 mountd
    100005 1 tcp 812 mountd
    100005 2 udp 809 mountd
    100005 2 tcp 812 mountd
    100005 3 udp 809 mountd
    100005 3 tcp 812 mountd
    100024 1 udp 854 status
    100024 1 tcp 857 status
    # showmount -e 172.25.30.120
    Export list for 172.25.30.120:
    /scratch/nfs 172.25.30.100,172.25.24.0/4
    /scratch/pvfs2 172.25.30.100,172.25.24.0/4
    Thank you, ~al

    I also tried to run Snoop on the client and wireshark on Server and following is what I see:
    One Server: Upon issuing mount command on client:
    # tshark -i eth1
    Running as user "root" and group "root". This could be dangerous.
    Capturing on eth1
    0.000000 Cisco_3d:68:10 -> Spanning-tree-(for-bridges)_00 STP Conf. Root = 32770/00:0a:b8:3d:68:00 Cost = 0 Port = 0x8010
    0.205570 172.25.30.100 -> 172.25.30.120 Portmap V2 GETPORT Call MOUNT(100005) V:3 UDP
    0.205586 172.25.30.120 -> 172.25.30.100 ICMP Destination unreachable (Port unreachable)
    0.207863 172.25.30.100 -> 172.25.30.120 Portmap V2 GETPORT Call MOUNT(100005) V:3 UDP
    0.207869 172.25.30.120 -> 172.25.30.100 ICMP Destination unreachable (Port unreachable)
    2.005314 Cisco_3d:68:10 -> Spanning-tree-(for-bridges)_00 STP Conf. Root = 32770/00:0a:b8:3d:68:00 Cost = 0 Port = 0x8010
    4.011005 Cisco_3d:68:10 -> Spanning-tree-(for-bridges)_00 STP Conf. Root = 32770/00:0a:b8:3d:68:00 Cost = 0 Port = 0x8010
    5.206109 Dell_70:ad:29 -> SunMicro_70:ff:17 ARP Who has 172.25.30.100? Tell 172.25.30.120
    5.206277 SunMicro_70:ff:17 -> Dell_70:ad:29 ARP 172.25.30.100 is at 00:14:4f:70:ff:17
    5.216157 172.25.30.100 -> 172.25.30.120 Portmap V2 GETPORT Call MOUNT(100005) V:3 UDP
    5.216170 172.25.30.120 -> 172.25.30.100 ICMP Destination unreachable (Port unreachable)
    On Clinet Upon issuing mount command on client:
    # snoop -d bge1
    Using device /dev/bge1 (promiscuous mode)
    ? -> * ETHER Type=9000 (Loopback), size = 60 bytes
    ? -> (multicast) ETHER Type=0000 (LLC/802.3), size = 52 bytes
    ? -> (multicast) ETHER Type=0000 (LLC/802.3), size = 52 bytes
    ? -> (multicast) ETHER Type=0000 (LLC/802.3), size = 52 bytes
    atlas-pvfs2 -> pvfs2-io-0-3 PORTMAP C GETPORT prog=100005 (MOUNT) vers=3 proto=UDP
    pvfs2-io-0-3 -> atlas-pvfs2 ICMP Destination unreachable (UDP port 111 unreachable)
    atlas-pvfs2 -> pvfs2-io-0-3 PORTMAP C GETPORT prog=100005 (MOUNT) vers=3 proto=UDP
    pvfs2-io-0-3 -> atlas-pvfs2 ICMP Destination unreachable (UDP port 111 unreachable)
    ? -> (multicast) ETHER Type=0000 (LLC/802.3), size = 52 bytes
    ? -> (multicast) ETHER Type=0000 (LLC/802.3), size = 52 bytes
    ? -> * ETHER Type=9000 (Loopback), size = 60 bytes
    ? -> (multicast) ETHER Type=0000 (LLC/802.3), size = 52 bytes
    pvfs2-io-0-3 -> * ARP C Who is 172.25.30.100, atlas-pvfs2 ?
    atlas-pvfs2 -> pvfs2-io-0-3 ARP R 172.25.30.100, atlas-pvfs2 is 0:14:4f:70:ff:17
    atlas-pvfs2 -> pvfs2-io-0-3 PORTMAP C GETPORT prog=100005 (MOUNT) vers=3 proto=UDP
    pvfs2-io-0-3 -> atlas-pvfs2 ICMP Destination unreachable (UDP port 111 unreachable)
    Also I see the following on Client:
    # rpcinfo -p pvfs2-io-0-3
    rpcinfo: can't contact portmapper: RPC: Rpcbind failure - RPC: Failed (unspecified error)
    When I try the above rpcinfo command on Client and Server Snoop And wireshark(ethereal) outputs are as follows:
    Client # snoop -d bge1
    Using device /dev/bge1 (promiscuous mode)
    ? -> (multicast) ETHER Type=0000 (LLC/802.3), size = 52 bytes
    ? -> (multicast) ETHER Type=0000 (LLC/802.3), size = 52 bytes
    atlas-pvfs2 -> pvfs2-io-0-3 TCP D=111 S=872 Syn Seq=2065245538 Len=0 Win=49640 Options=<mss 1460,nop,wscale 0,nop,nop,sackOK>
    pvfs2-io-0-3 -> atlas-pvfs2 ICMP Destination unreachable (TCP port 111 unreachable)
    ? -> (multicast) ETHER Type=0000 (LLC/802.3), size = 52 bytes
    ? -> (multicast) ETHER Type=0000 (LLC/802.3), size = 52 bytes
    ? -> (multicast) ETHER Type=2004 (Unknown), size = 48 bytes
    ? -> (multicast) ETHER Type=0003 (LLC/802.3), size = 90 bytes
    ? -> (multicast) ETHER Type=0000 (LLC/802.3), size = 52 bytes
    ? -> * ETHER Type=9000 (Loopback), size = 60 bytes
    pvfs2-io-0-3 -> * ARP C Who is 172.25.30.100, atlas-pvfs2 ?
    atlas-pvfs2 -> pvfs2-io-0-3 ARP R 172.25.30.100, atlas-pvfs2 is 0:14:4f:70:ff:17
    ? -> (multicast) ETHER Type=0000 (LLC/802.3), size = 52 bytes
    ? -> (multicast) ETHER Type=0000 (LLC/802.3), size = 52 bytes
    ? -> (multicast) ETHER Type=0000 (LLC/802.3), size = 52 bytes
    atlas-pvfs2 -> pvfs2-io-0-3 TCP D=111 S=874 Syn Seq=2068043912 Len=0 Win=49640 Options=<mss 1460,nop,wscale 0,nop,nop,sackOK>
    pvfs2-io-0-3 -> atlas-pvfs2 ICMP Destination unreachable (TCP port 111 unreachable)
    ? -> (multicast) ETHER Type=0000 (LLC/802.3), size = 52 bytes
    ? -> (multicast) ETHER Type=0000 (LLC/802.3), size = 52 bytes
    ? -> * ETHER Type=9000 (Loopback), size = 60 bytes
    Server # tshark -i eth1
    Running as user "root" and group "root". This could be dangerous.
    Capturing on eth1
    0.000000 Cisco_3d:68:10 -> Spanning-tree-(for-bridges)_00 STP Conf. Root = 32770/00:0a:b8:3d:68:00 Cost = 0 Port = 0x8010
    0.313739 Cisco_3d:68:10 -> CDP/VTP/DTP/PAgP/UDLD CDP Device ID: MILEVA Port ID: GigabitEthernet1/0/16
    2.006422 Cisco_3d:68:10 -> Spanning-tree-(for-bridges)_00 STP Conf. Root = 32770/00:0a:b8:3d:68:00 Cost = 0 Port = 0x8010
    3.483733 172.25.30.100 -> 172.25.30.120 TCP 865 > sunrpc [SYN] Seq=0 Win=49640 Len=0 MSS=1460 WS=0
    3.483752 172.25.30.120 -> 172.25.30.100 ICMP Destination unreachable (Port unreachable)
    4.009741 Cisco_3d:68:10 -> Spanning-tree-(for-bridges)_00 STP Conf. Root = 32770/00:0a:b8:3d:68:00 Cost = 0 Port = 0x8010
    6.014524 Cisco_3d:68:10 -> Spanning-tree-(for-bridges)_00 STP Conf. Root = 32770/00:0a:b8:3d:68:00 Cost = 0 Port = 0x8010
    6.551356 Cisco_3d:68:10 -> Cisco_3d:68:10 LOOP Reply
    8.019386 Cisco_3d:68:10 -> Spanning-tree-(for-bridges)_00 STP Conf. Root = 32770/00:0a:b8:3d:68:00 Cost = 0 Port = 0x8010
    8.484344 Dell_70:ad:29 -> SunMicro_70:ff:17 ARP Who has 172.25.30.100? Tell 172.25.30.120
    8.484569 SunMicro_70:ff:17 -> Dell_70:ad:29 ARP 172.25.30.100 is at 00:14:4f:70:ff:17
    10.024411 Cisco_3d:68:10 -> Spanning-tree-(for-bridges)_00 STP Conf. Root = 32770/00:0a:b8:3d:68:00 Cost = 0 Port = 0x8010
    12.030956 Cisco_3d:68:10 -> Spanning-tree-(for-bridges)_00 STP Conf. Root = 32770/00:0a:b8:3d:68:00 Cost = 0 Port = 0x8010
    12.901333 Cisco_3d:68:10 -> CDP/VTP/DTP/PAgP/UDLD DTP Dynamic Trunking Protocol
    12.901421 Cisco_3d:68:10 -> CDP/VTP/DTP/PAgP/UDLD DTP Dynamic Trunking Protocol
    ^[[A 14.034193 Cisco_3d:68:10 -> Spanning-tree-(for-bridges)_00 STP Conf. Root = 32770/00:0a:b8:3d:68:00  Cost = 0  Port = 0x8010
    15.691119 172.25.30.100 -> 172.25.30.120 TCP 866 > sunrpc [SYN] Seq=0 Win=49640 Len=0 MSS=1460 WS=0
    15.691138 172.25.30.120 -> 172.25.30.100 ICMP Destination unreachable (Port unreachable)
    16.038944 Cisco_3d:68:10 -> Spanning-tree-(for-bridges)_00 STP Conf. Root = 32770/00:0a:b8:3d:68:00 Cost = 0 Port = 0x8010
    16.550760 Cisco_3d:68:10 -> Cisco_3d:68:10 LOOP Reply
    18.043886 Cisco_3d:68:10 -> Spanning-tree-(for-bridges)_00 STP Conf. Root = 32770/00:0a:b8:3d:68:00 Cost = 0 Port = 0x8010
    20.050243 Cisco_3d:68:10 -> Spanning-tree-(for-bridges)_00 STP Conf. Root = 32770/00:0a:b8:3d:68:00 Cost = 0 Port = 0x8010
    21.487689 172.25.30.100 -> 172.25.30.120 TCP 867 > sunrpc [SYN] Seq=0 Win=49640 Len=0 MSS=1460 WS=0
    21.487700 172.25.30.120 -> 172.25.30.100 ICMP Destination unreachable (Port unreachable)
    22.053784 Cisco_3d:68:10 -> Spanning-tree-(for-bridges)_00 STP Conf. Root = 32770/00:0a:b8:3d:68:00 Cost = 0 Port = 0x8010
    24.058680 Cisco_3d:68:10 -> Spanning-tree-(for-bridges)_00 STP Conf. Root = 32770/00:0a:b8:3d:68:00 Cost = 0 Port = 0x8010
    26.063406 Cisco_3d:68:10 -> Spanning-tree-(for-bridges)_00 STP Conf. Root = 32770/00:0a:b8:3d:68:00 Cost = 0 Port = 0x8010
    26.558307 Cisco_3d:68:10 -> Cisco_3d:68:10 LOOP Reply
    ~thank you for any help you can provide!!!

  • OEL 6.3 - mount.nfs: access denied by server

    Hi,
    I am trying to mount an NFS directory on a server running OEL 6.3, pointing to another OEL 6.3 server. I get the following error:
    [oracle@csdowmsdb503 etc]$ mount 192.x.x.x:/home/oracle/m501/m501_f /home/oracle/m501_f/
    mount.nfs: access denied by server while mounting 192.x.x.x:/home/oracle/m501/m501_f
    The UIDs and GIDs on each server match. If we use "nfsvers=3" it work, so it seems to be something specific to vers 4. We would like to not use the vers 3 workaround.
    Thanks!

    Hi,
    When I added "- v" I realized it is actually erroring out on vers=4 and defaulting to vers=3 instead. The error it shows is now "No such file or directory."
    [oracle@xxx503 m501_g]$ sudo mount -v -t nfs xxx.xxx.xxx.35:/home/oracle/m501/m501_g /home/oracle/m501_g/
    mount.nfs: timeout set for Fri Nov 9 10:46:27 2012
    mount.nfs: trying text-based options 'vers=4,addr=xxx.xxx.xxx.35,clientaddr=xxx.xxx.xxx.37'
    mount.nfs: mount(2): No such file or directory
    mount.nfs: trying text-based options 'addr=xxx.xxx.xxx.35'
    mount.nfs: prog 100003, trying vers=3, prot=6
    mount.nfs: trying xxx.xxx.xxx.35 prog 100003 vers 3 prot TCP port 2049
    mount.nfs: prog 100005, trying vers=3, prot=17
    mount.nfs: trying xxx.xxx.xxx.35 prog 100005 vers 3 prot UDP port 37692
    xxx.xxx.xxx.35:/home/oracle/m501/m501_g on /home/oracle/m501_g type nfs (rw)

  • Wlan0 No such device + Wicd problem

    hi all
    my archlinux works fine but up to yesterday... after full system update, and after restart, i get some realy frustrating problem. currently wi-fi interface "wlan0" dosent exist anymore... when i try typing
    iwconfig wlan0
    i get respond ....wlan0 No such device...
    linuxe detect my card, but i dont know how i can force that card to working, i try reconfigure netwirk follow by Wiki but nothing happened, so now i dont have more ide fo resolve this problem
    other problem is Wicd, when i try click on icon in taskbar that icon just gone, when i try start again Wicd, i so jumping icon but that's it, nothing more. Everything happened after yesterday full system update.
    thanks for any help

    yes, sorry...
    Card: Atheros AR5007EG
    pacman.log - http://wklej.to/Tmjml
    messages.log
    Apr 24 00:14:21 localhost dbus[669]: [system] Activating service name='org.freedesktop.NetworkManager' (using servicehelper)
    Apr 24 00:14:21 localhost dbus[669]: [system] Activated service 'org.freedesktop.NetworkManager' failed: Launch helper exited with unknown return code 1
    Apr 24 00:24:46 localhost dbus[669]: [system] Activating service name='org.freedesktop.NetworkManager' (using servicehelper)
    Apr 24 00:24:46 localhost dbus[669]: [system] Activated service 'org.freedesktop.NetworkManager' failed: Launch helper exited with unknown return code 1
    Apr 24 00:30:09 localhost kernel: [ 4954.606977] wicd-client[1853]: segfault at a379000 ip b7043966 sp bf828b60 error 4 in libglib-2.0.so.0.3000.2[b6ffb000+f6000]
    Apr 24 00:31:01 localhost kernel: [ 5007.444013] wicd-client[18730]: segfault at 8d24000 ip b705d966 sp bfc1ac30 error 4 in libglib-2.0.so.0.3000.2[b7015000+f6000]
    Apr 24 00:31:39 localhost kernel: [ 5044.879566] wicd-client[19679]: segfault at 8b4b000 ip b6fee966 sp bfdcda40 error 4 in libglib-2.0.so.0.3000.2[b6fa6000+f6000]
    Apr 24 00:33:16 localhost shutdown[22093]: shutting down for system reboot
    Apr 24 00:33:17 localhost kernel: [ 5142.634562] chromium[14702]: segfault at 0 ip b35a3774 sp bfd6a850 error 4 in chromium[b3190000+4667000]
    Apr 24 00:33:17 localhost init: Switching to runlevel: 6
    Apr 24 00:33:19 localhost kernel: [ 5144.744429] Bluetooth: RFCOMM TTY layer initialized
    Apr 24 00:33:19 localhost kernel: [ 5144.744434] Bluetooth: RFCOMM socket layer initialized
    Apr 24 00:33:19 localhost kernel: [ 5144.744436] Bluetooth: RFCOMM ver 1.11
    Apr 24 00:33:19 localhost bluetoothd[1267]: Terminating
    Apr 24 00:33:19 localhost bluetoothd[1267]: Stopping SDP server
    Apr 24 00:33:19 localhost bluetoothd[1267]: Exit
    Apr 24 00:33:19 localhost ntfs-3g[362]: Unmounting /dev/sda5 (Dodatkowy)
    Apr 24 00:33:19 localhost ntfs-3g[360]: Unmounting /dev/sda2 (System)
    Apr 23 23:33:20 localhost rtkit-daemon[1758]: Demoting known real-time threads.
    Apr 23 23:33:20 localhost rtkit-daemon[1758]: Successfully demoted thread 1756 of process 1756 (/usr/bin/pulseaudio).
    Apr 23 23:33:20 localhost rtkit-daemon[1758]: Demoted 1 threads.
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Initializing cgroup subsys cpuset
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Initializing cgroup subsys cpu
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Linux version 3.3.2-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.0 20120407 (prerelease) (GCC) ) #1 SMP PREEMPT Sat Apr 14 10:08:43 UTC 2012
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-provided physical RAM map:
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 00000000bfcfd000 (usable)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 00000000bfcfd000 - 00000000bfd08000 (reserved)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 00000000bfd08000 - 00000000bfd52000 (usable)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 00000000bfd52000 - 00000000bfd55000 (reserved)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 00000000bfd55000 - 00000000bfdbb000 (usable)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 00000000bfdbb000 - 00000000bfdbf000 (reserved)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 00000000bfdbf000 - 00000000bfe70000 (usable)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 00000000bfe70000 - 00000000bfebf000 (ACPI NVS)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 00000000bfebf000 - 00000000bff00000 (ACPI data)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 00000000bff00000 - 00000000c0000000 (reserved)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    Apr 24 00:34:11 localhost kernel: [ 0.000000] DMI 2.4 present.
    Apr 24 00:34:11 localhost kernel: [ 0.000000] last_pfn = 0xbfe70 max_arch_pfn = 0x100000
    Apr 24 00:34:11 localhost kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Apr 24 00:34:11 localhost kernel: [ 0.000000] found SMP MP-table at [c00fe1b0] fe1b0
    Apr 24 00:34:11 localhost kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
    Apr 24 00:34:11 localhost kernel: [ 0.000000] RAMDISK: 7fdd1000 - 7fff0000
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Allocated new RAMDISK: 375df000 - 377fde55
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Move RAMDISK from 000000007fdd1000 - 000000007ffefe54 to 375df000 - 377fde54
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: RSDP 000fe020 00024 (v02 ACRSYS)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: XSDT bfefe120 00064 (v01 ACRSYS ACRPRDCT 00000001 01000013)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: FACP bfefd000 000F4 (v04 ACRSYS ACRPRDCT 00000001 MSFT 01000013)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: DSDT bfef4000 08968 (v01 ACRSYS ACRPRDCT 00000001 MSFT 01000013)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: FACS bfe75000 00040
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: APIC bfef3000 00068 (v02 ACRSYS ACRPRDCT 00000001 MSFT 01000013)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: MCFG bfef2000 0003C (v01 ACRSYS ACRPRDCT 00000001 MSFT 01000013)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: SLIC bfef1000 00176 (v01 ACRSYS ACRPRDCT 00000001 MSFT 01000013)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: HPET bfef0000 00038 (v01 ACRSYS ACRPRDCT 00000001 MSFT 01000013)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: SSDT bfeef000 004C4 (v01 PmRef CpuPm 00003000 INTL 20051117)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: SSDT bfeee000 00232 (v01 PmRef Cpu0Tst 00003000 INTL 20051117)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: SSDT bfeed000 000A0 (v01 PmRef Cpu1Tst 00003000 INTL 20051117)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] 2182MB HIGHMEM available.
    Apr 24 00:34:11 localhost kernel: [ 0.000000] 887MB LOWMEM available.
    Apr 24 00:34:11 localhost kernel: [ 0.000000] mapped low ram: 0 - 377fe000
    Apr 24 00:34:11 localhost kernel: [ 0.000000] low ram: 0 - 377fe000
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Zone PFN ranges:
    Apr 24 00:34:11 localhost kernel: [ 0.000000] DMA 0x00000010 -> 0x00001000
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Normal 0x00001000 -> 0x000377fe
    Apr 24 00:34:11 localhost kernel: [ 0.000000] HighMem 0x000377fe -> 0x000bfe70
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Movable zone start PFN for each node
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Early memory PFN ranges
    Apr 24 00:34:11 localhost kernel: [ 0.000000] 0: 0x00000010 -> 0x0000009f
    Apr 24 00:34:11 localhost kernel: [ 0.000000] 0: 0x00000100 -> 0x000bfcfd
    Apr 24 00:34:11 localhost kernel: [ 0.000000] 0: 0x000bfd08 -> 0x000bfd52
    Apr 24 00:34:11 localhost kernel: [ 0.000000] 0: 0x000bfd55 -> 0x000bfdbb
    Apr 24 00:34:11 localhost kernel: [ 0.000000] 0: 0x000bfdbf -> 0x000bfe70
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Using APIC driver default
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    Apr 24 00:34:11 localhost kernel: [ 0.000000] IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
    Apr 24 00:34:11 localhost kernel: [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Apr 24 00:34:11 localhost kernel: [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
    Apr 24 00:34:11 localhost kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Apr 24 00:34:11 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    Apr 24 00:34:11 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware
    Apr 24 00:34:11 localhost kernel: [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
    Apr 24 00:34:11 localhost kernel: [ 0.000000] PERCPU: Embedded 13 pages/cpu @f5800000 s30848 r0 d22400 u2097152
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 779760
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Kernel command line: acpi_backlight=vendor root=/dev/disk/by-uuid/69fbfc98-9ed3-4d5c-afcf-8d5842fdda76 ro quiet vga=791 splash
    Apr 24 00:34:11 localhost kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Initializing CPU#0
    Apr 24 00:34:11 localhost kernel: [ 0.000000] allocated 6288128 bytes of page_cgroup
    Apr 24 00:34:11 localhost kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Initializing HighMem for node 0 (000377fe:000bfe70)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Memory: 3103056k/3144128k available (3773k kernel code, 40548k reserved, 1435k data, 520k init, 2234752k highmem)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] virtual kernel memory layout:
    Apr 24 00:34:11 localhost kernel: [ 0.000000] fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] .init : 0xc0617000 - 0xc0699000 ( 520 kB)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] .data : 0xc04af7a9 - 0xc0616400 (1435 kB)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] .text : 0xc0100000 - 0xc04af7a9 (3773 kB)
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    Apr 24 00:34:11 localhost kernel: [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Preemptible hierarchical RCU implementation.
    Apr 24 00:34:11 localhost kernel: [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Verbose stalled-CPUs detection is disabled.
    Apr 24 00:34:11 localhost kernel: [ 0.000000] NR_IRQS:2304 nr_irqs:512 16
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Console: colour dummy device 80x25
    Apr 24 00:34:11 localhost kernel: [ 0.000000] console [tty0] enabled
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Fast TSC calibration using PIT
    Apr 24 00:34:11 localhost kernel: [ 0.000000] Detected 1995.066 MHz processor.
    Apr 24 00:34:11 localhost kernel: [ 0.003334] Calibrating delay loop (skipped), value calculated using timer frequency.. 3991.38 BogoMIPS (lpj=6650220)
    Apr 24 00:34:11 localhost kernel: [ 0.003339] pid_max: default: 32768 minimum: 301
    Apr 24 00:34:11 localhost kernel: [ 0.003364] Security Framework initialized
    Apr 24 00:34:11 localhost kernel: [ 0.003368] AppArmor: AppArmor disabled by boot time parameter
    Apr 24 00:34:11 localhost kernel: [ 0.003384] Mount-cache hash table entries: 512
    Apr 24 00:34:11 localhost kernel: [ 0.003522] Initializing cgroup subsys cpuacct
    Apr 24 00:34:11 localhost kernel: [ 0.003525] Initializing cgroup subsys memory
    Apr 24 00:34:11 localhost kernel: [ 0.003534] Initializing cgroup subsys devices
    Apr 24 00:34:11 localhost kernel: [ 0.003536] Initializing cgroup subsys freezer
    Apr 24 00:34:11 localhost kernel: [ 0.003538] Initializing cgroup subsys net_cls
    Apr 24 00:34:11 localhost kernel: [ 0.003541] Initializing cgroup subsys blkio
    Apr 24 00:34:11 localhost kernel: [ 0.003570] CPU: Physical Processor ID: 0
    Apr 24 00:34:11 localhost kernel: [ 0.003572] CPU: Processor Core ID: 0
    Apr 24 00:34:11 localhost kernel: [ 0.003574] mce: CPU supports 6 MCE banks
    Apr 24 00:34:11 localhost kernel: [ 0.003582] CPU0: Thermal monitoring enabled (TM1)
    Apr 24 00:34:11 localhost kernel: [ 0.003585] using mwait in idle threads.
    Apr 24 00:34:11 localhost kernel: [ 0.004442] ACPI: Core revision 20120111
    Apr 24 00:34:11 localhost kernel: [ 0.013343] ftrace: allocating 16621 entries in 33 pages
    Apr 24 00:34:11 localhost kernel: [ 0.023390] Enabling APIC mode: Flat. Using 1 I/O APICs
    Apr 24 00:34:11 localhost kernel: [ 0.023843] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Apr 24 00:34:11 localhost kernel: [ 0.057402] CPU0: Intel(R) Core(TM)2 Duo CPU T5750 @ 2.00GHz stepping 0d
    Apr 24 00:34:11 localhost kernel: [ 0.059996] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
    Apr 24 00:34:11 localhost kernel: [ 0.059996] PEBS disabled due to CPU errata.
    Apr 24 00:34:11 localhost kernel: [ 0.059996] ... version: 2
    Apr 24 00:34:11 localhost kernel: [ 0.059996] ... bit width: 40
    Apr 24 00:34:11 localhost kernel: [ 0.059996] ... generic registers: 2
    Apr 24 00:34:11 localhost kernel: [ 0.059996] ... value mask: 000000ffffffffff
    Apr 24 00:34:11 localhost kernel: [ 0.059996] ... max period: 000000007fffffff
    Apr 24 00:34:11 localhost kernel: [ 0.059996] ... fixed-purpose events: 3
    Apr 24 00:34:11 localhost kernel: [ 0.059996] ... event mask: 0000000700000003
    Apr 24 00:34:11 localhost kernel: [ 0.076781] NMI watchdog enabled, takes one hw-pmu counter.
    Apr 24 00:34:11 localhost kernel: [ 0.103346] Booting Node 0, Processors #1 Ok.
    Apr 24 00:34:11 localhost kernel: [ 0.006666] Initializing CPU#1
    Apr 24 00:34:11 localhost kernel: [ 0.116696] NMI watchdog enabled, takes one hw-pmu counter.
    Apr 24 00:34:11 localhost kernel: [ 0.123330] Brought up 2 CPUs
    Apr 24 00:34:11 localhost kernel: [ 0.123333] Total of 2 processors activated (7983.77 BogoMIPS).
    Apr 24 00:34:11 localhost kernel: [ 0.124595] devtmpfs: initialized
    Apr 24 00:34:11 localhost kernel: [ 0.124595] PM: Registering ACPI NVS region at bfe70000 (323584 bytes)
    Apr 24 00:34:11 localhost kernel: [ 0.124595] NET: Registered protocol family 16
    Apr 24 00:34:11 localhost kernel: [ 0.124608] ACPI: bus type pci registered
    Apr 24 00:34:11 localhost kernel: [ 0.124692] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Apr 24 00:34:11 localhost kernel: [ 0.124696] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    Apr 24 00:34:11 localhost kernel: [ 0.124698] PCI: Using MMCONFIG for extended config space
    Apr 24 00:34:11 localhost kernel: [ 0.124700] PCI: Using configuration type 1 for base access
    Apr 24 00:34:11 localhost kernel: [ 0.126695] bio: create slab <bio-0> at 0
    Apr 24 00:34:11 localhost kernel: [ 0.126708] ACPI: Added _OSI(Module Device)
    Apr 24 00:34:11 localhost kernel: [ 0.126708] ACPI: Added _OSI(Processor Device)
    Apr 24 00:34:11 localhost kernel: [ 0.126708] ACPI: Added _OSI(3.0 _SCP Extensions)
    Apr 24 00:34:11 localhost kernel: [ 0.126708] ACPI: Added _OSI(Processor Aggregator Device)
    Apr 24 00:34:11 localhost kernel: [ 0.132350] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    Apr 24 00:34:11 localhost kernel: [ 0.133660] ACPI: SSDT bfe74c90 0022C (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    Apr 24 00:34:11 localhost kernel: [ 0.134081] ACPI: Dynamic OEM Table Load:
    Apr 24 00:34:11 localhost kernel: [ 0.134085] ACPI: SSDT (null) 0022C (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    Apr 24 00:34:11 localhost kernel: [ 0.134239] ACPI: SSDT bfe73610 005D7 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    Apr 24 00:34:11 localhost kernel: [ 0.134641] ACPI: Dynamic OEM Table Load:
    Apr 24 00:34:11 localhost kernel: [ 0.134644] ACPI: SSDT (null) 005D7 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    Apr 24 00:34:11 localhost kernel: [ 0.134662] ACPI: SSDT bfe74f10 000C4 (v01 PmRef Cpu1Ist 00003000 INTL 20051117)
    Apr 24 00:34:11 localhost kernel: [ 0.134662] ACPI: Dynamic OEM Table Load:
    Apr 24 00:34:11 localhost kernel: [ 0.134662] ACPI: SSDT (null) 000C4 (v01 PmRef Cpu1Ist 00003000 INTL 20051117)
    Apr 24 00:34:11 localhost kernel: [ 0.134662] ACPI: SSDT bfe76d10 00083 (v01 PmRef Cpu1Cst 00003000 INTL 20051117)
    Apr 24 00:34:11 localhost kernel: [ 0.136866] ACPI: Dynamic OEM Table Load:
    Apr 24 00:34:11 localhost kernel: [ 0.136870] ACPI: SSDT (null) 00083 (v01 PmRef Cpu1Cst 00003000 INTL 20051117)
    Apr 24 00:34:11 localhost kernel: [ 0.143334] ACPI: EC: GPE storm detected, transactions will use polling mode
    Apr 24 00:34:11 localhost kernel: [ 0.143404] ACPI: Interpreter enabled
    Apr 24 00:34:11 localhost kernel: [ 0.143414] ACPI: (supports S0 S3 S4 S5)
    Apr 24 00:34:11 localhost kernel: [ 0.143438] ACPI: Using IOAPIC for interrupt routing
    Apr 24 00:34:11 localhost kernel: [ 0.377459] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
    Apr 24 00:34:11 localhost kernel: [ 0.377459] ACPI: No dock devices found.
    Apr 24 00:34:11 localhost kernel: [ 0.377459] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Apr 24 00:34:11 localhost kernel: [ 0.377459] ACPI Warning: For \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20120111/nspredef-359)
    Apr 24 00:34:11 localhost kernel: [ 0.377459] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Apr 24 00:34:11 localhost kernel: [ 0.377899] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    Apr 24 00:34:11 localhost kernel: [ 0.377902] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    Apr 24 00:34:11 localhost kernel: [ 0.377905] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    Apr 24 00:34:11 localhost kernel: [ 0.377910] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfebfffff]
    Apr 24 00:34:11 localhost kernel: [ 0.377957] PCI host bridge to bus 0000:00
    Apr 24 00:34:11 localhost kernel: [ 0.377960] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Apr 24 00:34:11 localhost kernel: [ 0.377962] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Apr 24 00:34:11 localhost kernel: [ 0.377965] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Apr 24 00:34:11 localhost kernel: [ 0.377967] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff]
    Apr 24 00:34:11 localhost kernel: [ 0.380997] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at ff2c (mask 0003)
    Apr 24 00:34:11 localhost kernel: [ 0.381002] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 0068 (mask 0007)
    Apr 24 00:34:11 localhost kernel: [ 0.381761] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    Apr 24 00:34:11 localhost kernel: [ 0.381840] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    Apr 24 00:34:11 localhost kernel: [ 0.381927] pci 0000:00:1c.1: PCI bridge to [bus 04-04]
    Apr 24 00:34:11 localhost kernel: [ 0.389997] pci 0000:00:1c.2: PCI bridge to [bus 05-05]
    Apr 24 00:34:11 localhost kernel: [ 0.390481] pci 0000:06:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    Apr 24 00:34:11 localhost kernel: [ 0.390497] pci 0000:00:1c.3: PCI bridge to [bus 06-06]
    Apr 24 00:34:11 localhost kernel: [ 0.391286] pci 0000:00:1e.0: PCI bridge to [bus 07-07] (subtractive decode)
    Apr 24 00:34:11 localhost kernel: [ 0.391929] ACPI Warning: For \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20120111/nspredef-359)
    Apr 24 00:34:11 localhost kernel: [ 0.391943] pci0000:00: Requesting ACPI _OSC control (0x1d)
    Apr 24 00:34:11 localhost kernel: [ 0.392004] ACPI Warning: For \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20120111/nspredef-359)
    Apr 24 00:34:11 localhost kernel: [ 0.392017] pci0000:00: ACPI _OSC request failed (AE_TYPE), returned control mask: 0x1d
    Apr 24 00:34:11 localhost kernel: [ 0.392019] ACPI _OSC control for PCIe not granted, disabling ASPM
    Apr 24 00:34:11 localhost kernel: [ 0.398940] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12)
    Apr 24 00:34:11 localhost kernel: [ 0.399009] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 10 *11 12)
    Apr 24 00:34:11 localhost kernel: [ 0.399076] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12)
    Apr 24 00:34:11 localhost kernel: [ 0.399142] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12)
    Apr 24 00:34:11 localhost kernel: [ 0.399208] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
    Apr 24 00:34:11 localhost kernel: [ 0.399275] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 *10 11 12)
    Apr 24 00:34:11 localhost kernel: [ 0.399341] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 *11 12)
    Apr 24 00:34:11 localhost kernel: [ 0.399407] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 9 10 *11 12)
    Apr 24 00:34:11 localhost kernel: [ 0.400007] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    Apr 24 00:34:11 localhost kernel: [ 0.400013] vgaarb: loaded
    Apr 24 00:34:11 localhost kernel: [ 0.400015] vgaarb: bridge control possible 0000:01:00.0
    Apr 24 00:34:11 localhost kernel: [ 0.400068] PCI: Using ACPI for IRQ routing
    Apr 24 00:34:11 localhost kernel: [ 0.411601] NetLabel: Initializing
    Apr 24 00:34:11 localhost kernel: [ 0.411604] NetLabel: domain hash size = 128
    Apr 24 00:34:11 localhost kernel: [ 0.411605] NetLabel: protocols = UNLABELED CIPSOv4
    Apr 24 00:34:11 localhost kernel: [ 0.411619] NetLabel: unlabeled traffic allowed by default
    Apr 24 00:34:11 localhost kernel: [ 0.411626] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    Apr 24 00:34:11 localhost kernel: [ 0.411634] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    Apr 24 00:34:11 localhost kernel: [ 0.411639] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    Apr 24 00:34:11 localhost kernel: [ 0.423327] Switching to clocksource hpet
    Apr 24 00:34:11 localhost kernel: [ 0.430835] pnp: PnP ACPI init
    Apr 24 00:34:11 localhost kernel: [ 0.430859] ACPI: bus type pnp registered
    Apr 24 00:34:11 localhost kernel: [ 0.431630] pnp 00:01: disabling [io 0x164e-0x164f] because it overlaps 0000:00:1c.3 BAR 13 [io 0x1000-0x1fff]
    Apr 24 00:34:11 localhost kernel: [ 0.431714] system 00:01: [io 0x0600-0x060f] has been reserved
    Apr 24 00:34:11 localhost kernel: [ 0.431718] system 00:01: [io 0x0610] has been reserved
    Apr 24 00:34:11 localhost kernel: [ 0.431721] system 00:01: [io 0x0800-0x080f] has been reserved
    Apr 24 00:34:11 localhost kernel: [ 0.431724] system 00:01: [io 0x0810-0x0817] has been reserved
    Apr 24 00:34:11 localhost kernel: [ 0.431727] system 00:01: [io 0x0400-0x047f] has been reserved
    Apr 24 00:34:11 localhost kernel: [ 0.431729] system 00:01: [io 0x0500-0x053f] has been reserved
    Apr 24 00:34:11 localhost kernel: [ 0.431733] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    Apr 24 00:34:11 localhost kernel: [ 0.431736] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Apr 24 00:34:11 localhost kernel: [ 0.431739] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
    Apr 24 00:34:11 localhost kernel: [ 0.431742] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
    Apr 24 00:34:11 localhost kernel: [ 0.431745] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
    Apr 24 00:34:11 localhost kernel: [ 0.431749] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    Apr 24 00:34:11 localhost kernel: [ 0.431752] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    Apr 24 00:34:11 localhost kernel: [ 0.431755] system 00:01: [mem 0x32000000-0x320000ff] could not be reserved
    Apr 24 00:34:11 localhost kernel: [ 0.546987] pnp: PnP ACPI: found 10 devices
    Apr 24 00:34:11 localhost kernel: [ 0.546988] ACPI: ACPI bus type pnp unregistered
    Apr 24 00:34:11 localhost kernel: [ 0.584492] pci 0000:01:00.0: no compatible bridge window for [mem 0xfffe0000-0xffffffff pref]
    Apr 24 00:34:11 localhost kernel: [ 0.584564] pci 0000:01:00.0: BAR 6: can't assign mem pref (size 0x20000)
    Apr 24 00:34:11 localhost kernel: [ 0.584568] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    Apr 24 00:34:11 localhost kernel: [ 0.584571] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
    Apr 24 00:34:11 localhost kernel: [ 0.584575] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xd2ffffff]
    Apr 24 00:34:11 localhost kernel: [ 0.584580] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
    Apr 24 00:34:11 localhost kernel: [ 0.584585] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
    Apr 24 00:34:11 localhost kernel: [ 0.584589] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    Apr 24 00:34:11 localhost kernel: [ 0.584596] pci 0000:00:1c.0: bridge window [mem 0xda300000-0xdb2fffff]
    Apr 24 00:34:11 localhost kernel: [ 0.584602] pci 0000:00:1c.0: bridge window [mem 0xd3000000-0xd3ffffff 64bit pref]
    Apr 24 00:34:11 localhost kernel: [ 0.584610] pci 0000:00:1c.1: PCI bridge to [bus 04-04]
    Apr 24 00:34:11 localhost kernel: [ 0.584614] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]
    Apr 24 00:34:11 localhost kernel: [ 0.584621] pci 0000:00:1c.1: bridge window [mem 0xd9300000-0xda2fffff]
    Apr 24 00:34:11 localhost kernel: [ 0.584627] pci 0000:00:1c.1: bridge window [mem 0xd4000000-0xd4ffffff 64bit pref]
    Apr 24 00:34:11 localhost kernel: [ 0.584636] pci 0000:00:1c.2: PCI bridge to [bus 05-05]
    Apr 24 00:34:11 localhost kernel: [ 0.584640] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff]
    Apr 24 00:34:11 localhost kernel: [ 0.584647] pci 0000:00:1c.2: bridge window [mem 0xd8200000-0xd92fffff]
    Apr 24 00:34:11 localhost kernel: [ 0.584653] pci 0000:00:1c.2: bridge window [mem 0xd5000000-0xd5ffffff 64bit pref]
    Apr 24 00:34:11 localhost kernel: [ 0.584661] pci 0000:00:1c.3: PCI bridge to [bus 06-06]
    Apr 24 00:34:11 localhost kernel: [ 0.584665] pci 0000:00:1c.3: bridge window [io 0x1000-0x1fff]
    Apr 24 00:34:11 localhost kernel: [ 0.584672] pci 0000:00:1c.3: bridge window [mem 0xd7100000-0xd81fffff]
    Apr 24 00:34:11 localhost kernel: [ 0.584678] pci 0000:00:1c.3: bridge window [mem 0xd6000000-0xd6ffffff 64bit pref]
    Apr 24 00:34:11 localhost kernel: [ 0.584687] pci 0000:00:1e.0: PCI bridge to [bus 07-07]
    Apr 24 00:34:11 localhost kernel: [ 0.584694] pci 0000:00:1e.0: bridge window [mem 0xd7000000-0xd70fffff]
    Apr 24 00:34:11 localhost kernel: [ 0.584867] NET: Registered protocol family 2
    Apr 24 00:34:11 localhost kernel: [ 0.584940] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    Apr 24 00:34:11 localhost kernel: [ 0.585196] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    Apr 24 00:34:11 localhost kernel: [ 0.585692] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    Apr 24 00:34:11 localhost kernel: [ 0.585905] TCP: Hash tables configured (established 131072 bind 65536)
    Apr 24 00:34:11 localhost kernel: [ 0.585908] TCP reno registered
    Apr 24 00:34:11 localhost kernel: [ 0.585911] UDP hash table entries: 512 (order: 2, 16384 bytes)
    Apr 24 00:34:11 localhost kernel: [ 0.585920] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    Apr 24 00:34:11 localhost kernel: [ 0.585985] NET: Registered protocol family 1
    Apr 24 00:34:11 localhost kernel: [ 0.586537] Unpacking initramfs...
    Apr 24 00:34:11 localhost kernel: [ 0.640183] Freeing initrd memory: 2172k freed
    Apr 24 00:34:11 localhost kernel: [ 0.641574] apm: BIOS not found.
    Apr 24 00:34:11 localhost kernel: [ 0.641853] audit: initializing netlink socket (disabled)
    Apr 24 00:34:11 localhost kernel: [ 0.641870] type=2000 audit(1335227628.639:1): initialized
    Apr 24 00:34:11 localhost kernel: [ 0.642322] highmem bounce pool size: 64 pages
    Apr 24 00:34:11 localhost kernel: [ 0.642327] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    Apr 24 00:34:11 localhost kernel: [ 0.644772] VFS: Disk quotas dquot_6.5.2
    Apr 24 00:34:11 localhost kernel: [ 0.644839] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    Apr 24 00:34:11 localhost kernel: [ 0.644953] msgmni has been set to 1700
    Apr 24 00:34:11 localhost kernel: [ 0.645165] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    Apr 24 00:34:11 localhost kernel: [ 0.645201] io scheduler noop registered
    Apr 24 00:34:11 localhost kernel: [ 0.645203] io scheduler deadline registered
    Apr 24 00:34:11 localhost kernel: [ 0.645210] io scheduler cfq registered (default)
    Apr 24 00:34:11 localhost kernel: [ 0.646108] vesafb: mode is 1024x768x16, linelength=2048, pages=1
    Apr 24 00:34:11 localhost kernel: [ 0.646110] vesafb: protected mode interface info at c000:b900
    Apr 24 00:34:11 localhost kernel: [ 0.646113] vesafb: pmi: set display start = c00cb963, set palette = c00cb9be
    Apr 24 00:34:11 localhost kernel: [ 0.646115] vesafb: pmi: ports = 3b4 3b5 3ba 3c0 3c1 3c4 3c5 3c6 3c7 3c8 3c9 3cc 3ce 3cf 3d0 3d1 3d2 3d3 3d4 3d5 3da
    Apr 24 00:34:11 localhost kernel: [ 0.646127] vesafb: scrolling: redraw
    Apr 24 00:34:11 localhost kernel: [ 0.646130] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0
    Apr 24 00:34:11 localhost kernel: [ 0.646741] vesafb: framebuffer at 0xd1000000, mapped to 0xf8080000, using 3072k, total 14336k
    Apr 24 00:34:11 localhost kernel: [ 0.675524] Console: switching to colour frame buffer device 128x48
    Apr 24 00:34:11 localhost kernel: [ 0.704189] fb0: VESA VGA frame buffer device
    Apr 24 00:34:11 localhost kernel: [ 0.704246] GHES: HEST is not enabled!
    Apr 24 00:34:11 localhost kernel: [ 0.704265] isapnp: Scanning for PnP cards...
    Apr 24 00:34:11 localhost kernel: [ 1.017410] isapnp: No Plug & Play device found
    Apr 24 00:34:11 localhost kernel: [ 1.017475] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Apr 24 00:34:11 localhost kernel: [ 1.018223] i8042: PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSS0] at 0x60,0x64 irq 1,12
    Apr 24 00:34:11 localhost kernel: [ 1.054544] serio: i8042 KBD port at 0x60,0x64 irq 1
    Apr 24 00:34:11 localhost kernel: [ 1.054581] serio: i8042 AUX port at 0x60,0x64 irq 12
    Apr 24 00:34:11 localhost kernel: [ 1.054707] mousedev: PS/2 mouse device common for all mice
    Apr 24 00:34:11 localhost kernel: [ 1.056794] rtc_cmos 00:03: RTC can wake from S4
    Apr 24 00:34:11 localhost kernel: [ 1.056937] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    Apr 24 00:34:11 localhost kernel: [ 1.056971] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
    Apr 24 00:34:11 localhost kernel: [ 1.056995] cpuidle: using governor ladder
    Apr 24 00:34:11 localhost kernel: [ 1.056997] cpuidle: using governor menu
    Apr 24 00:34:11 localhost kernel: [ 1.057241] TCP cubic registered
    Apr 24 00:34:11 localhost kernel: [ 1.057383] NET: Registered protocol family 10
    Apr 24 00:34:11 localhost kernel: [ 1.057919] NET: Registered protocol family 17
    Apr 24 00:34:11 localhost kernel: [ 1.057927] Registering the dns_resolver key type
    Apr 24 00:34:11 localhost kernel: [ 1.057944] Using IPI No-Shortcut mode
    Apr 24 00:34:11 localhost kernel: [ 1.058083] registered taskstats version 1
    Apr 24 00:34:11 localhost kernel: [ 1.058748] rtc_cmos 00:03: setting system clock to 2012-04-24 00:33:49 UTC (1335227629)
    Apr 24 00:34:11 localhost kernel: [ 1.058826] Initializing network drop monitor service
    Apr 24 00:34:11 localhost kernel: [ 1.058905] Freeing unused kernel memory: 520k freed
    Apr 24 00:34:11 localhost kernel: [ 1.059203] Write protecting the kernel text: 3776k
    Apr 24 00:34:11 localhost kernel: [ 1.059230] Write protecting the kernel read-only data: 1108k
    Apr 24 00:34:11 localhost [ 1.067199] udevd[37]: starting version 182
    Apr 24 00:34:11 localhost kernel: [ 1.070319] SCSI subsystem initialized
    Apr 24 00:34:11 localhost kernel: [ 1.074777] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 3 Gbps 0x7 impl SATA mode
    Apr 24 00:34:11 localhost kernel: [ 1.074781] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ccc ems
    Apr 24 00:34:11 localhost kernel: [ 1.080025] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Apr 24 00:34:11 localhost kernel: [ 1.088413] scsi0 : ahci
    Apr 24 00:34:11 localhost kernel: [ 1.088930] scsi1 : ahci
    Apr 24 00:34:11 localhost kernel: [ 1.089070] scsi2 : ahci
    Apr 24 00:34:11 localhost kernel: [ 1.089266] ata1: SATA max UDMA/133 abar m2048@0xdb304000 port 0xdb304100 irq 45
    Apr 24 00:34:11 localhost kernel: [ 1.089270] ata2: SATA max UDMA/133 abar m2048@0xdb304000 port 0xdb304180 irq 45
    Apr 24 00:34:11 localhost kernel: [ 1.089274] ata3: SATA max UDMA/133 abar m2048@0xdb304000 port 0xdb304200 irq 45
    Apr 24 00:34:11 localhost kernel: [ 1.410040] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Apr 24 00:34:11 localhost kernel: [ 1.410072] ata3: SATA link down (SStatus 0 SControl 300)
    Apr 24 00:34:11 localhost kernel: [ 1.410106] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Apr 24 00:34:11 localhost kernel: [ 1.410960] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    Apr 24 00:34:11 localhost kernel: [ 1.411178] ata2.00: ATA-8: Hitachi HTS543225L9A300, FBEOC40J, max UDMA/100
    Apr 24 00:34:11 localhost kernel: [ 1.411181] ata2.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    Apr 24 00:34:11 localhost kernel: [ 1.411308] ata1.00: ATA-8: Hitachi HTS542525K9SA00, BBFOC31P, max UDMA/133
    Apr 24 00:34:11 localhost kernel: [ 1.411312] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    Apr 24 00:34:11 localhost kernel: [ 1.412365] ata2.00: configured for UDMA/100
    Apr 24 00:34:11 localhost kernel: [ 1.412522] ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
    Apr 24 00:34:11 localhost kernel: [ 1.412871] ata1.00: configured for UDMA/133
    Apr 24 00:34:11 localhost kernel: [ 1.413016] scsi 0:0:0:0: Direct-Access ATA Hitachi HTS54252 BBFO PQ: 0 ANSI: 5
    Apr 24 00:34:11 localhost kernel: [ 1.413275] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    Apr 24 00:34:11 localhost kernel: [ 1.413324] sd 0:0:0:0: [sda] Write Protect is off
    Apr 24 00:34:11 localhost kernel: [ 1.413348] scsi 1:0:0:0: Direct-Access ATA Hitachi HTS54322 FBEO PQ: 0 ANSI: 5
    Apr 24 00:34:11 localhost kernel: [ 1.413360] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Apr 24 00:34:11 localhost kernel: [ 1.413548] sd 1:0:0:0: [sdb] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    Apr 24 00:34:11 localhost kernel: [ 1.413593] sd 1:0:0:0: [sdb] Write Protect is off
    Apr 24 00:34:11 localhost kernel: [ 1.413616] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Apr 24 00:34:11 localhost kernel: [ 1.499218] sda: sda1 sda2 sda3 < sda5 sda6 sda7 sda8 > sda4
    Apr 24 00:34:11 localhost kernel: [ 1.499872] sd 0:0:0:0: [sda] Attached SCSI disk
    Apr 24 00:34:11 localhost kernel: [ 1.643354] Refined TSC clocksource calibration: 1994.999 MHz.
    Apr 24 00:34:11 localhost kernel: [ 1.643360] Switching to clocksource tsc
    Apr 24 00:34:11 localhost kernel: [ 1.772943] sdb: sdb1
    Apr 24 00:34:11 localhost kernel: [ 1.773206] sd 1:0:0:0: [sdb] Attached SCSI disk
    Apr 24 00:34:11 localhost kernel: [ 1.836500] scsi3 : ata_piix
    Apr 24 00:34:11 localhost kernel: [ 1.837336] scsi4 : ata_piix
    Apr 24 00:34:11 localhost kernel: [ 1.838307] ata4: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x60e0 irq 14
    Apr 24 00:34:11 localhost kernel: [ 1.838311] ata5: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x60e8 irq 15
    Apr 24 00:34:11 localhost kernel: [ 2.007042] ata4.00: ATAPI: Optiarc BD ROM BC-5500A, 1.B4, max UDMA/33
    Apr 24 00:34:11 localhost kernel: [ 2.020253] ata4.00: configured for UDMA/33
    Apr 24 00:34:11 localhost kernel: [ 2.021487] scsi 3:0:0:0: CD-ROM Optiarc BD ROM BC-5500A 1.B4 PQ: 0 ANSI: 5
    Apr 24 00:34:11 localhost kernel: [ 2.022927] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    Apr 24 00:34:11 localhost kernel: [ 2.022930] cdrom: Uniform CD-ROM driver Revision: 3.20
    Apr 24 00:34:11 localhost kernel: [ 3.970538] EXT4-fs (sda6): mounting ext3 file system using the ext4 subsystem
    Apr 24 00:34:11 localhost kernel: [ 4.000569] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
    Apr 24 00:34:11 localhost [ 6.422864] udevd[167]: starting version 182
    Apr 24 00:34:11 localhost kernel: [ 6.969985] fuse init (API version 7.18)
    Apr 24 00:34:11 localhost kernel: [ 7.175465] Linux media interface: v0.10
    Apr 24 00:34:11 localhost kernel: [ 7.208820] Linux video capture interface: v2.00
    Apr 24 00:34:11 localhost kernel: [ 7.301563] usbcore: registered new interface driver usbfs
    Apr 24 00:34:11 localhost kernel: [ 7.301591] usbcore: registered new interface driver hub
    Apr 24 00:34:11 localhost kernel: [ 7.301649] usbcore: registered new device driver usb
    Apr 24 00:34:11 localhost kernel: [ 7.396791] usbcore: registered new interface driver uvcvideo
    Apr 24 00:34:11 localhost kernel: [ 7.396793] USB Video Class driver (1.1.1)
    Apr 24 00:34:11 localhost kernel: [ 7.478745] sd 0:0:0:0: Attached scsi generic sg0 type 0
    Apr 24 00:34:11 localhost kernel: [ 7.478796] sd 1:0:0:0: Attached scsi generic sg1 type 0
    Apr 24 00:34:11 localhost kernel: [ 7.478841] sr 3:0:0:0: Attached scsi generic sg2 type 5
    Apr 24 00:34:11 localhost kernel: [ 7.704161] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:03/PNP0C0C:00/input/input1
    Apr 24 00:34:11 localhost kernel: [ 7.704169] ACPI: Power Button [PWRB]
    Apr 24 00:34:11 localhost kernel: [ 7.704238] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:03/PNP0C0D:00/input/input2
    Apr 24 00:34:11 localhost kernel: [ 7.704281] ACPI: Lid Switch [LID0]
    Apr 24 00:34:11 localhost kernel: [ 7.704347] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:03/PNP0C0E:00/input/input3
    Apr 24 00:34:11 localhost kernel: [ 7.704351] ACPI: Sleep Button [SLPB]
    Apr 24 00:34:11 localhost kernel: [ 7.704428] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    Apr 24 00:34:11 localhost kernel: [ 7.704432] ACPI: Power Button [PWRF]
    Apr 24 00:34:11 localhost kernel: [ 7.757040] wmi: Mapper loaded
    Apr 24 00:34:11 localhost kernel: [ 7.764340] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:34/LNXVIDEO:00/input/input5
    Apr 24 00:34:11 localhost kernel: [ 7.764349] ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
    Apr 24 00:34:11 localhost kernel: [ 7.783603] Marking TSC unstable due to TSC halts in idle
    Apr 24 00:34:11 localhost kernel: [ 7.783978] Switching to clocksource hpet
    Apr 24 00:34:11 localhost kernel: [ 7.806735] thermal LNXTHERM:00: registered as thermal_zone0
    Apr 24 00:34:11 localhost kernel: [ 7.806738] ACPI: Thermal Zone [TZ01] (63 C)
    Apr 24 00:34:11 localhost kernel: [ 8.085198] IR NEC protocol handler initialized
    Apr 24 00:34:11 localhost kernel: [ 8.263816] iTCO_vendor_support: vendor-support=0
    Apr 24 00:34:11 localhost kernel: [ 8.338774] input: PC Speaker as /devices/platform/pcspkr/input/input6
    Apr 24 00:34:11 localhost kernel: [ 8.428261] Linux agpgart interface v0.103
    Apr 24 00:34:11 localhost kernel: [ 8.530372] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Apr 24 00:34:11 localhost kernel: [ 8.530446] ehci_hcd 0000:00:1a.7: EHCI Host Controller
    Apr 24 00:34:11 localhost kernel: [ 8.530479] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    Apr 24 00:34:11 localhost kernel: [ 8.530511] ehci_hcd 0000:00:1a.7: debug port 1
    Apr 24 00:34:11 localhost kernel: [ 8.534436] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xdb304c00
    Apr 24 00:34:11 localhost kernel: [ 8.543367] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    Apr 24 00:34:11 localhost kernel: [ 8.543569] hub 1-0:1.0: USB hub found
    Apr 24 00:34:11 localhost kernel: [ 8.543575] hub 1-0:1.0: 4 ports detected
    Apr 24 00:34:11 localhost kernel: [ 8.543738] ehci_hcd 0000:00:1d.7: EHCI Host Controller
    Apr 24 00:34:11 localhost kernel: [ 8.543751] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    Apr 24 00:34:11 localhost kernel: [ 8.543785] ehci_hcd 0000:00:1d.7: debug port 1
    Apr 24 00:34:11 localhost kernel: [ 8.547664] uhci_hcd: USB Universal Host Controller Interface driver
    Apr 24 00:34:11 localhost kernel: [ 8.548334] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xdb304800
    Apr 24 00:34:11 localhost kernel: [ 8.556719] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    Apr 24 00:34:11 localhost kernel: [ 8.557004] hub 2-0:1.0: USB hub found
    Apr 24 00:34:11 localhost kernel: [ 8.557010] hub 2-0:1.0: 6 ports detected
    Apr 24 00:34:11 localhost kernel: [ 8.557152] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    Apr 24 00:34:11 localhost kernel: [ 8.557191] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    Apr 24 00:34:11 localhost kernel: [ 8.557238] uhci_hcd 0000:00:1a.0: irq 16, io base 0x000060c0
    Apr 24 00:34:11 localhost kernel: [ 8.557465] hub 3-0:1.0: USB hub found
    Apr 24 00:34:11 localhost kernel: [ 8.557470] hub 3-0:1.0: 2 ports detected
    Apr 24 00:34:11 localhost kernel: [ 8.557617] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    Apr 24 00:34:11 localhost kernel: [ 8.557626] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    Apr 24 00:34:11 localhost kernel: [ 8.557667] uhci_hcd 0000:00:1a.1: irq 21, io base 0x000060a0
    Apr 24 00:34:11 localhost kernel: [ 8.558927] hub 4-0:1.0: USB hub found
    Apr 24 00:34:11 localhost kernel: [ 8.558932] hub 4-0:1.0: 2 ports detected
    Apr 24 00:34:11 localhost kernel: [ 8.559045] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    Apr 24 00:34:11 localhost kernel: [ 8.559056] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
    Apr 24 00:34:11 localhost kernel: [ 8.559087] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00006080
    Apr 24 00:34:11 localhost kernel: [ 8.560433] hub 5-0:1.0: USB hub found
    Apr 24 00:34:11 localhost kernel: [ 8.560439] hub 5-0:1.0: 2 ports detected
    Apr 24 00:34:11 localhost kernel: [ 8.560549] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    Apr 24 00:34:11 localhost kernel: [ 8.560559] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
    Apr 24 00:34:11 localhost kernel: [ 8.560601] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00006060
    Apr 24 00:34:11 localhost kernel: [ 8.560871] hub 6-0:1.0: USB hub found
    Apr 24 00:34:11 localhost kernel: [ 8.560876] hub 6-0:1.0: 2 ports detected
    Apr 24 00:34:11 localhost kernel: [ 8.560989] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    Apr 24 00:34:11 localhost kernel: [ 8.560998] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
    Apr 24 00:34:11 localhost kernel: [ 8.561028] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00006040
    Apr 24 00:34:11 localhost kernel: [ 8.561927] hub 7-0:1.0: USB hub found
    Apr 24 00:34:11 localhost kernel: [ 8.561932] hub 7-0:1.0: 2 ports detected
    Apr 24 00:34:11 localhost kernel: [ 8.863902] usb 2-4: new high-speed USB device number 2 using ehci_hcd
    Apr 24 00:34:11 localhost kernel: [ 9.332966] uvcvideo: Found UVC 1.00 device Acer Crystal Eye webcam (5986:0102)
    Apr 24 00:34:11 localhost kernel: [ 9.343597] ACPI: Battery Slot [BAT0] (battery present)
    Apr 24 00:34:11 localhost kernel: [ 9.370197] ACPI: AC Adapter [AC] (on-line)
    Apr 24 00:34:11 localhost kernel: [ 9.402840] acer_wmi: Acer Laptop ACPI-WMI Extras
    Apr 24 00:34:11 localhost kernel: [ 9.418212] sdhci: Secure Digital Host Controller Interface driver
    Apr 24 00:34:11 localhost kernel: [ 9.418215] sdhci: Copyright(c) Pierre Ossman
    Apr 24 00:34:11 localhost kernel: [ 9.453477] acer_wmi: Function bitmap for Communication Device: 0x11
    Apr 24 00:34:11 localhost kernel: [ 9.495148] input: Acer Crystal Eye webcam as /devices/pci0000:00/0000:00:1d.7/usb2/2-4/2-4:1.0/input/input7
    Apr 24 00:34:11 localhost kernel: [ 9.518007] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
    Apr 24 00:34:11 localhost kernel: [ 9.518110] iTCO_wdt: Found a ICH8M TCO device (Version=2, TCOBASE=0x0460)
    Apr 24 00:34:11 localhost kernel: [ 9.518202] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    Apr 24 00:34:11 localhost kernel: [ 9.528291] ene_ir: chip is 0x3909 - kbver = 0x24, rev = 0xc0
    Apr 24 00:34:11 localhost kernel: [ 9.528294] ene_ir: PLL freq = 1406
    Apr 24 00:34:11 localhost kernel: [ 9.528295] ene_ir: KB3926B detected
    Apr 24 00:34:11 localhost kernel: [ 9.530494] IR RC5(x) protocol handler initialized
    Apr 24 00:34:11 localhost kernel: [ 9.676786] firewire_ohci: Added fw-ohci device 0000:07:00.0, OHCI v1.10, 4 IR + 4 IT contexts, quirks 0x11
    Apr 24 00:34:11 localhost kernel: [ 9.693704] sdhci-pci 0000:07:00.1: SDHCI controller found [1180:0822] (rev 22)
    Apr 24 00:34:11 localhost kernel: [ 9.694758] sdhci-pci 0000:07:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Apr 24 00:34:11 localhost kernel: [ 9.695791] sdhci-pci 0000:07:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Apr 24 00:34:11 localhost kernel: [ 9.696672] sdhci-pci 0000:07:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Apr 24 00:34:11 localhost kernel: [ 9.697929] mmc0: SDHCI controller on PCI [0000:07:00.1] using DMA
    Apr 24 00:34:11 localhost kernel: [ 9.736965] tg3.c:v3.122 (December 7, 2011)
    Apr 24 00:34:11 localhost kernel: [ 9.755783] sdhci-pci 0000:07:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Apr 24 00:34:11 localhost kernel: [ 9.758116] r852: driver loaded successfully
    Apr 24 00:34:11 localhost kernel: [ 9.781066] tg3 0000:05:00.0: eth0: Tigon3 [partno(BCM95787m) rev b002] (PCI Express) MAC address 00:1b:38:dd:85:dd
    Apr 24 00:34:11 localhost kernel: [ 9.781071] tg3 0000:05:00.0: eth0: attached PHY is 5787 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[0])
    Apr 24 00:34:11 localhost kernel: [ 9.781075] tg3 0000:05:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
    Apr 24 00:34:11 localhost kernel: [ 9.781078] tg3 0000:05:00.0: eth0: dma_rwctrl[76180000] dma_mask[64-bit]
    Apr 24 00:34:11 localhost kernel: [ 9.814504] sdhci-pci 0000:07:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Apr 24 00:34:11 localhost kernel: [ 9.866470] psmouse serio1: synaptics: Touchpad model: 1, fw: 6.3, id: 0x1c0b1, caps: 0xa04713/0x204000/0x0
    Apr 24 00:34:11 localhost kernel: [ 9.871540] sdhci-pci 0000:07:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Apr 24 00:34:11 localhost kernel: [ 9.879913] r592: driver successfully loaded
    Apr 24 00:34:11 localhost kernel: [ 9.898559] cfg80211: Calling CRDA to update world regulatory domain
    Apr 24 00:34:11 localhost kernel: [ 9.928086] sdhci-pci 0000:07:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Apr 24 00:34:11 localhost kernel: [ 9.953749] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input8
    Apr 24 00:34:11 localhost kernel: [ 10.173390] usb 7-1: new full-speed USB device number 2 using uhci_hcd
    Apr 24 00:34:11 localhost kernel: [ 10.176818] firewire_core: created device fw0: GUID c74095a100023f83, S400
    Apr 24 00:34:11 localhost kernel: [ 10.340056] ath5k 0000:06:00.0: registered as 'phy0'
    Apr 24 00:34:11 localhost kernel: [ 10.529614] IR RC6 protocol handler initialized
    Apr 24 00:34:11 localhost kernel: [ 10.583365] usb 7-2: new full-speed USB device number 3 using uhci_hcd
    Apr 24 00:34:11 localhost kernel: [ 10.606907] IR JVC protocol handler initialized
    Apr 24 00:34:11 localhost kernel: [ 10.620943] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input9
    Apr 24 00:34:11 localhost kernel: [ 10.623377] Registered IR keymap rc-rc6-mce
    Apr 24 00:34:11 localhost kernel: [ 10.623510] input: ENE eHome Infrared Remote Receiver as /devices/virtual/rc/rc0/input10
    Apr 24 00:34:11 localhost kernel: [ 10.623642] rc0: ENE eHome Infrared Remote Receiver as /devices/virtual/rc/rc0
    Apr 24 00:34:11 localhost kernel: [ 10.626789] ene_ir: driver has been successfully loaded
    Apr 24 00:34:11 localhost kernel: [ 10.631524] IR Sony protocol handler initialized
    Apr 24 00:34:11 localhost kernel: [ 10.634142] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    Apr 24 00:34:11 localhost kernel: [ 10.634386] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    Apr 24 00:34:11 localhost kernel: [ 10.635543] input: HDA Intel Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
    Apr 24 00:34:11 localhost kernel: [ 10.785853] IR SANYO protocol handler initialized
    Apr 24 00:34:11 localhost kernel: [ 10.890590] ath5k phy0: Atheros AR2425 chip found (MAC: 0xe2, PHY: 0x70)
    Apr 24 00:34:11 localhost kernel: [ 11.043088] nvidia: module license 'NVIDIA' taints kernel.
    Apr 24 00:34:11 localhost kernel: [ 11.043093] Disabling lock debugging due to kernel taint
    Apr 24 00:34:11 localhost kernel: [ 11.051282] input: MCE IR Keyboard/Mouse (ene_ir) as /devices/virtual/input/input14
    Apr 24 00:34:11 localhost kernel: [ 11.051452] IR MCE Keyboard/mouse protocol handler initialized
    Apr 24 00:34:11 localhost kernel: [ 11.071340] nvidia 0000:01:00.0: power state changed by ACPI to D0
    Apr 24 00:34:11 localhost kernel: [ 11.071347] nvidia 0000:01:00.0: power state changed by ACPI to D0
    Apr 24 00:34:11 localhost kernel: [ 11.071365] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
    Apr 24 00:34:11 localhost kernel: [ 11.071624] NVRM: loading NVIDIA UNIX x86 Kernel Module 295.40 Thu Apr 5 21:28:09 PDT 2012
    Apr 24 00:34:11 localhost kernel: [ 11.130085] lirc_dev: IR Remote Control driver registered, major 250
    Apr 24 00:34:11 localhost kernel: [ 11.130707] rc rc0: lirc_dev: driver ir-lirc-codec (ene_ir) registered at minor = 0
    Apr 24 00:34:11 localhost kernel: [ 11.130710] IR LIRC bridge handler initialized
    Apr 24 00:34:11 localhost kernel: [ 13.005645] Bluetooth: Core ver 2.16
    Apr 24 00:34:11 localhost kernel: [ 13.005673] NET: Registered protocol family 31
    Apr 24 00:34:11 localhost kernel: [ 13.005676] Bluetooth: HCI device and connection manager initialized
    Apr 24 00:34:11 localhost kernel: [ 13.005679] Bluetooth: HCI socket layer initialized
    Apr 24 00:34:11 localhost kernel: [ 13.005682] Bluetooth: L2CAP socket layer initialized
    Apr 24 00:34:11 localhost kernel: [ 13.005687] Bluetooth: SCO socket layer initialized
    Apr 24 00:34:11 localhost kernel: [ 13.076520] cfg80211: World regulatory domain updated:
    Apr 24 00:34:11 localhost kernel: [ 13.076524] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
    Apr 24 00:34:11 localhost kernel: [ 13.076528] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    Apr 24 00:34:11 localhost kernel: [ 13.076531] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
    Apr 24 00:34:11 localhost kernel: [ 13.076534] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
    Apr 24 00:34:11 localhost kernel: [ 13.076537] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    Apr 24 00:34:11 localhost kernel: [ 13.076539] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    Apr 24 00:34:11 localhost kernel: [ 13.110705] usbcore: registered new interface driver btusb
    Apr 24 00:34:11 localhost kernel: [ 13.815752] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.2/usb7/7-1/7-1:1.0/input/input15
    Apr 24 00:34:11 localhost kernel: [ 13.815917] generic-usb 0003:046D:C52F.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1d.2-1/input0
    Apr 24 00:34:11 localhost kernel: [ 13.821299] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.2/usb7/7-1/7-1:1.1/input/input16
    Apr 24 00:34:11 localhost kernel: [ 13.821484] generic-usb 0003:046D:C52F.0002: input,hiddev0,hidraw1: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.2-1/input1
    Apr 24 00:34:11 localhost kernel: [ 13.821505] usbcore: registered new interface driver usbhid
    Apr 24 00:34:11 localhost kernel: [ 13.821507] usbhid: USB HID core driver
    Apr 24 00:34:11 localhost kernel: [ 14.425795] EXT4-fs (sda6): re-mounted. Opts: (null)
    Apr 24 00:34:11 localhost kernel: [ 15.149749] Adding 1494008k swap on /dev/sda8. Priority:-1 extents:1 across:1494008k
    Apr 24 00:34:14 localhost kernel: [ 25.822705] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Apr 24 00:34:19 localhost kernel: [ 31.424652] ADDRCONF(NETDEV_UP): eth0: link is not ready
    Apr 24 00:34:22 localhost bluetoothd[1274]: Bluetooth daemon 4.99
    Apr 24 00:34:22 localhost bluetoothd[1274]: Starting SDP server
    Apr 24 00:34:22 localhost kernel: [ 34.359472] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    Apr 24 00:34:22 localhost bluetoothd[1274]: Listening for HCI events on hci0
    Apr 24 00:34:22 localhost bluetoothd[1274]: HCI dev 0 up
    Apr 24 00:34:22 localhost kernel: [ 34.492247] Bluetooth: RFCOMM TTY layer initialized
    Apr 24 00:34:22 localhost kernel: [ 34.492253] Bluetooth: RFCOMM socket layer initialized
    Apr 24 00:34:22 localhost kernel: [ 34.492255] Bluetooth: RFCOMM ver 1.11
    Apr 24 00:34:23 localhost bluetoothd[1274]: Adapter /org/bluez/1274/hci0 has been enabled
    Apr 24 00:34:23 localhost kernel: [ 35.019073] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Apr 24 00:34:23 localhost kernel: [ 35.387146] pcieport 0000:00:1c.2: wake-up capability enabled by ACPI
    Apr 24 00:34:24 localhost kernel: [ 35.585419] ADDRCONF(NETDEV_UP): eth0: link is not ready
    Apr 24 00:34:24 localhost kernel: [ 35.905322] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    Apr 24 00:34:27 localhost kernel: [ 39.341184] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    Apr 24 00:34:28 localhost kernel: [ 39.739072] Intel AES-NI instructions are not detected.
    Apr 24 00:34:28 localhost dhcpcd[1363]: version 5.5.6 starting
    Apr 24 00:34:29 localhost dhcpcd[1363]: wlan0: sending IPv6 Router Solicitation
    Apr 24 00:34:29 localhost dhcpcd[1363]: wlan0: rebinding lease of 192.168.1.66
    Apr 24 00:34:29 localhost dhcpcd[1363]: wlan0: acknowledged 192.168.1.66 from 192.168.1.254
    Apr 24 00:34:29 localhost dhcpcd[1363]: wlan0: checking for 192.168.1.66
    Apr 24 00:34:33 localhost dhcpcd[1363]: wlan0: sending IPv6 Router Solicitation
    Apr 24 00:34:35 localhost dhcpcd[1363]: wlan0: leased 192.168.1.66 for 86400 seconds
    Apr 24 00:34:35 localhost dhcpcd[1363]: forked to background, child pid 1401
    Apr 24 00:34:36 localhost dbus[685]: [system] Activating service name='org.freedesktop.ConsoleKit' (using servicehelper)
    Apr 24 00:34:37 localhost dhcpcd[1401]: wlan0: sending IPv6 Router Solicitation
    Apr 24 00:34:37 localhost dbus[685]: [system] Activating service name='org.freedesktop.PolicyKit1' (using servicehelper)
    Apr 24 00:34:37 localhost polkitd[1476]: started daemon version 0.104 using authority implementation `local' version `0.104'
    Apr 24 00:34:37 localhost dbus[685]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
    Apr 24 00:34:37 localhost dbus[685]: [system] Successfully activated service 'org.freedesktop.ConsoleKit'
    Apr 24 00:34:41 localhost dhcpcd[1401]: wlan0: sending IPv6 Router Solicitation
    Apr 24 00:34:41 localhost dhcpcd[1401]: wlan0: no IPv6 Routers available
    Apr 24 00:34:50 localhost dbus[685]: [system] Activating service name='org.freedesktop.UPower' (using servicehelper)
    Apr 24 00:34:50 localhost dbus[685]: [system] Successfully activated service 'org.freedesktop.UPower'
    Apr 24 00:34:51 localhost dbus[685]: [system] Activating service name='org.freedesktop.UDisks' (using servicehelper)
    Apr 24 00:34:51 localhost dbus[685]: [system] Successfully activated service 'org.freedesktop.UDisks'
    Apr 24 00:34:52 localhost kernel: [ 64.334062] EXT4-fs (sda6): re-mounted. Opts: commit=0
    Apr 24 00:34:56 localhost dbus[685]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Apr 24 00:34:56 localhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Apr 24 00:34:56 localhost dbus[685]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Apr 24 00:34:56 localhost kernel: [ 68.405909] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
    Apr 24 00:35:03 localhost dbus[685]: [system] Activating service name='org.freedesktop.NetworkManager' (using servicehelper)
    Apr 24 00:35:03 localhost dbus[685]: [system] Activated service 'org.freedesktop.NetworkManager' failed: Launch helper exited with unknown return code 1
    Apr 24 00:35:13 localhost dbus[685]: [system] Activating service name='org.kde.powerdevil.backlighthelper' (using servicehelper)
    Apr 24 00:35:13 localhost org.kde.powerdevil.backlighthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Apr 24 00:35:13 localhost dbus[685]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
    Apr 24 00:35:28 localhost dbus[685]: [system] Activating service name='org.freedesktop.RealtimeKit1' (using servicehelper)
    Apr 24 00:35:29 localhost dbus[685]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
    Apr 23 23:35:29 localhost rtkit-daemon[1751]: Successfully made thread 1749 of process 1749 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Apr 24 00:35:36 localhost bluetoothd[1274]: HCI dev 0 down
    Apr 24 00:35:36 localhost bluetoothd[1274]: Adapter /org/bluez/1274/hci0 has been disabled
    Apr 24 00:35:36 localhost bluetoothd[1274]: HCI dev 0 unregistered
    Apr 24 00:35:36 localhost bluetoothd[1274]: Stopping hci0 event socket
    Apr 24 00:35:36 localhost bluetoothd[1274]: Unregister path: /org/bluez/1274/hci0
    Apr 24 00:35:36 localhost kernel: [ 107.596755] usb 7-2: USB disconnect, device number 3
    Apr 24 00:35:43 localhost dbus[685]: [system] Activating service name='org.freedesktop.NetworkManager' (using servicehelper)
    Apr 24 00:35:43 localhost dbus[685]: [system] Activated service 'org.freedesktop.NetworkManager' failed: Launch helper exited with unknown return code 1
    Apr 24 00:35:54 localhost dbus[685]: [system] Activating service name='org.freedesktop.NetworkManager' (using servicehelper)
    Apr 24 00:35:54 localhost dbus[685]: [system] Activated service 'org.freedesktop.NetworkManager' failed: Launch helper exited with unknown return code 1
    Apr 24 00:35:54 localhost dbus[685]: [system] Activating service name='org.freedesktop.NetworkManager' (using servicehelper)
    Apr 24 00:35:54 localhost dbus[685]: [system] Activated service 'org.freedesktop.NetworkManager' failed: Launch helper exited with unknown return code 1
    Apr 24 00:35:59 localhost dbus[685]: [system] Activating service name='org.freedesktop.NetworkManager' (using servicehelper)
    Apr 24 00:35:59 localhost dbus[685]: [system] Activated service 'org.freedesktop.NetworkManager' failed: Launch helper exited with unknown return code 1
    Apr 23 23:36:17 localhost rtkit-daemon[1751]: Successfully made thread 2050 of process 2050 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Apr 23 23:36:17 localhost rtkit-daemon[1751]: Successfully made thread 2053 of process 2053 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Apr 24 00:36:25 localhost dbus[685]: [system] Activating service name='org.freedesktop.NetworkManager' (using servicehelper)
    Apr 24 00:36:25 localhost dbus[685]: [system] Activated service 'org.freedesktop.NetworkManager' failed: Launch helper exited with unknown return code 1
    Apr 24 00:36:31 localhost dbus[685]: [system] Activating service name='org.freedesktop.NetworkManager' (using servicehelper)
    Apr 24 00:36:31 localhost dbus[685]: [system] Activated service 'org.freedesktop.NetworkManager' failed: Launch helper exited with unknown return code 1
    Apr 24 00:37:01 localhost kernel: [ 193.048355] wicd-client[1878]: segfault at 9d41000 ip b7045966 sp bfe0f450 error 4 in libglib-2.0.so.0.3000.2[b6ffd000+f6000]
    Apr 24 00:37:24 localhost kernel: [ 215.924465] wicd-client[3672]: segfault at 9249000 ip b703b966 sp bf84d370 error 4 in libglib-2.0.so.0.3000.2[b6ff3000+f6000]
    Apr 24 00:40:30 localhost dbus[685]: [system] Reloaded configuration
    Apr 24 00:40:31 localhost dbus[685]: [system] Reloaded configuration
    Apr 24 00:40:31 localhost dbus[685]: [system] Reloaded configuration
    Apr 24 00:40:31 localhost dbus[685]: [system] Reloaded configuration
    Apr 24 00:40:37 localhost kernel: [ 409.414850] wicd-client[8791]: segfault at a4b8000 ip b7056966 sp bfed1840 error 4 in libglib-2.0.so.0.3000.2[b700e000+f6000]
    Apr 24 00:41:24 localhost kernel: [ 455.626203] wicd-client[10007]: segfault at 9f2f000 ip b70cc966 sp bfe9c100 error 4 in libglib-2.0.so.0.3000.2[b7084000+f6000]
    Apr 24 00:41:46 localhost kernel: [ 478.212287] wicd-client[10567]: segfault at a58d000 ip b7061966 sp bf9a6960 error 4 in libglib-2.0.so.0.3000.2[b7019000+f6000]
    Apr 24 00:43:42 localhost dbus[685]: [system] Activating service name='org.kde.ksysguard.processlisthelper' (using servicehelper)
    Apr 24 00:43:42 localhost org.kde.ksysguard.processlisthelper: QDBusConnection: system D-Bus connection created before QCoreApplication. Application may misbehave.
    Apr 24 00:43:42 localhost dbus[685]: [system] Successfully activated service 'org.kde.ksysguard.processlisthelper'
    Apr 24 00:44:06 localhost dbus[685]: [system] Activating service name='org.wicd.daemon' (using servicehelper)
    Apr 24 00:44:06 localhost dbus[685]: [system] Activated service 'org.wicd.daemon' failed: Launch helper exited with unknown return code 1
    Apr 24 00:44:11 localhost dbus[685]: [system] Activating service name='org.freedesktop.NetworkManager' (using servicehelper)
    Apr 24 00:44:11 localhost dbus[685]: [system] Activated service 'org.freedesktop.NetworkManager' failed: Launch helper exited with unknown return code 1
    Apr 24 00:44:11 localhost kernel: [ 623.489051] wicd-client[14072]: segfault at 91f3000 ip b7000966 sp bf8dff40 error 4 in libglib-2.0.so.0.3000.2[b6fb8000+f6000]
    Apr 24 00:45:04 localhost kernel: [ 675.561949] wicd-client[15565]: segfault at a393000 ip b70b8966 sp bff30110 error 4 in libglib-2.0.so.0.3000.2[b7070000+f6000]
    Apr 24 00:45:33 localhost kernel: [ 704.622762] wicd-client[16320]: segfault at 4d0 ip b63d7dd4 sp bffee720 error 4 in l

  • How do you "eject" a camera or such device from the photos app after import?

    How do you "eject" a camera or such device from the photos app after import?

    Thanks for your answer. It certainly seemed that since there was no longer a control-click option in Photos for a mounted device that a hot dismount or eject would be OK. Should there be any caveats to the user who selected a Finder option not to show Hard disks, External discs or CDs DVDs and iPods--or is this still uniformly true across all devices (old iPads, Firewire, etc.)?
    This is only true for devices that are not accessible in the Finder. For iPhones, iPads, newer iPods. If a device shows up in Disk Utility as a mounted disk, you have to eject it properly.
    But the newer iOS devices are not mounted as a disk, that a user can write to or eject.
    For example, I just connected my iPhone 5s. It shows in Photos and iTunes in the sidebar, but Disk Utility does not show it as a mounted device, so there is no way to eject it.

  • [SOLVED] [GRUB error] "no such device" "vmlinuz-linux not found"

    SOLUTION AT POST #11
    I just completed the install process onto a new machine.  Grub starts but then returns these error messages.
    Booting 'Arch GNU/Linux, with Linux core repo kernel'
    error: no such device: ad4103fa-d940-47ca-8506-301d8071d467.
    Loading Linux core repo kernel ...
    error: file '/boot/vmlinuz-linux' not found.
    Loading initial ramdisk ...
    error: you need to load the kernel first.
    Press any key to continue...
    I installed Arch via a flashdrive (sdb), onto SATA port 1 (sda).  SDA has a fresh MBR.  Unfortunately, I have no way to post my grub config files.  What files must I modify to get GRUB to work properly?
    fstab: http://sprunge.us/SVMi
    grub.cfg: http://sprunge.us/hQCB
    Edit: Thread solved.
    Last edited by qKUqm3wtY4 (2013-01-31 03:36:43)

    SOLUTION
    by: jynnantonix
    Step 1: Start Arch via boot disc.
    Step 2: Connect to internet.
    Step 3: Mount partitions.
    # swapon dev/sdX
    # mount /dev/sdX /mnt
    # mount /dev/sdX /mnt/home
    # mount /dev/sdX /mnt/boot
    Step 4: Chroot
    # arch-chroot /mnt
    Step 5: Remake grub.conf
    # grub-mkconfig -o /boot/grub/grub.cfg
    Another Notable Tip by: jynnantonix
    If you need to post information from terminal to the internet, use the following:
    [insert command here] | curl -F 'sprunge=<-' http://sprunge.us
    example: ls -l /dev/disk/by-uuid/ | curl -F 'sprunge=<-' http://sprunge.us
    example: cat /boot/grub/grub.cfg | curl -F 'sprunge=<-' http://sprunge.us
    Last edited by qKUqm3wtY4 (2013-01-31 04:04:49)

  • Eth0: unknown interface: No such device

    Hi all
    I know that this problem was being solved here, but I am still stuck.
    During boot process I receive the message:
    eth0: unknown interface: No such device
    I have already configured /etc/rc.conf and module for Realtek Ethernet si also loaded.. I can see it in lsmod, so it's ok.
    Configuration:
    HP Compaq nc6120, 2.6.13-ARCH (default distriobution kernel)
    Thanks a lot for help.

    Hi
    When I write lsmode I can see there module for ethernet realtek...something like eth1234 (i don't know name of module exactly because I am out of my linux box).So I think that there is no error.
    I am still stuck with this problem ...:|

  • Error: no such device 36A84D5EA84D1DAD

    Hi,
    I have both win7 professional and ubuntu 11.10 on my t410i.
    Everything was ok, till I try onHackMe and it recognize some problems, it deleted my dlls and...After I restarted for finishing the task, my windows couldn't start....I deleted my c drive completely and restored my windows hardly to factory settings. Grub menu didn't change. And now both of Linux and windows works approximately good. But after I choose win7 in grub menu, before win startup I get this error:
    "Error: no such device 36A84D5EA84D1DAD
    Press any key to continue..."
    It passing automatically after seconds, but I want to know what is it and how I can solve it?

    HI shahrzad,   (This should probably be in the Linux forum)
    I'm guessing here, but this is probably because the UUID of the Windows partition has changed.
    You might be able to fix it by booting Ubuntu and running update-grub.
    Otherwise, try posting in a Ubuntu forum, or googling "ubuntu windows 7 grub Error: no such device uuid changed" or something similar.
    [edit] This is just one of the reasons I miss grub legacy.
    Good luck,
    Z.
    The large print: please read the Community Participation Rules before posting. Include as much information as possible: model, machine type, operating system, and a descriptive subject line. Do not include personal information: serial number, telephone number, email address, etc.  The fine print: I do not work for, nor do I speak for Lenovo. Unsolicited private messages will be ignored. ... GeezBlog
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Error: no such device: ece4aa52-a24f-4585-a448-f43320f58b05.

    So I was installing Arch Linux on my Toshiba Satellite and when I got to the reboot part rather than showing me the normal grub screen so I could pick linux it said"
    GRUB loading.
    Welcome to GRUB!
    error: no such device: ece4aa52-a24f-4585-a448-f43320f58b05.
    Entering rescue mode...
    grub rescue>
    "Can someone PLEASE help me fix this?

    Did you run:
    # grub-mkconfig -o /boot/grub/grub.cfg
    It is almost impossible to help you if it is not clear what you have actually done so far.
    I presume you were following the Beginner's Guide to the letter...

  • Virt-install cannot mount nfs directory

    Hi all,
    I'm trying to use ovms but I cannot create any virtual machine.
    I successfully installed OVMS; I disabled iptables to avoid network problems.
    I created a dvd from Oracle Unbreakable EL 5.0 cds on a different machine.
    The dvd image is shared by a linux CentOS box. The ISO image is inside /opt/tmp_os_isos/50 so I did
    service nfs start
    mkdir /mnt/dvd50
    chmod a+rwx /mnt/dvd50
    mount -o ro,loop /opt/tmp_os_isos/50/Enterprise-R5-GA-Server-i386-dvd.iso /mnt/dvd50/
    exportfs *:/mnt/dvd50
    and on the ovms server I did:
    [root@ovms ~]# virt-install
    What is the name of your virtual machine? giallo2
    How much RAM should be allocated (in megabytes)? 512
    What would you like to use as the disk (path)? /virtpcs/dischi/giallo
    How large would you like the disk (/virtpcs/dischi/giallo2) to be (in gigabytes)? 30
    Would you like to enable graphics support? (yes or no) no
    What is the install location? nfs:10.10.10.242:/mnt/dvd50
    And I always end up with the error
    That directory could not be mounted from the server.
    If I try to run
    [root@ovms ~]# mount.nfs 10.10.10.242:/mnt/dvd50 /mnt/50
    it works!
    I also tried to build adifferent dvd iso, or to uso a OEL 4.4 dvd iso (taken from an original working oracle dvd) but I always end up with the same error
    Where am I wrong?
    thanks, andrea

    I realized this problem was somehow related with the ovms installation: the pc I installed ovms on has two network card; when I installed ovms I configured eth0 via DHCP (eth0 is linked to the office network and to internet) and I configured eth1 with a static IP (eth 1 is connected to a "private" network made by 2 more pc).
    I also choosed to manage ovnms via eth1 (the network card witch has a statis ip), and everything regardind ovms has always been done via eth1.
    Now I reinstalled ovms and I choosed to manage it via eth0 (si I put a static ip address on eth0) and everything seems working: I'm just installing OEL5.0 via nfs without any problem (I hope... :-) )
    andrea

Maybe you are looking for