[SOLVED] [no] Problem [at all] with NTFS after switch to systemd

Hi.
I've recently switched to systemd (thanks for this great Wiki page!). All is right except automount of NFTS partions. In old config, I don't have any entry in fstab, but there is a rule for udev:
KERNEL!="sd[a-z][0-9]", GOTO="media_by_label_auto_mount_end"
# Import FS infos
IMPORT{program}="/sbin/blkid -o udev -p %N"
# Get a label if present, otherwise specify one
ENV{ID_FS_LABEL}!="", ENV{dir_name}="%E{ID_FS_LABEL}"
ENV{ID_FS_LABEL}=="", ENV{dir_name}="usbhd-%k"
# Global mount options
ACTION=="add", ENV{mount_options}="relatime"
# Filesystem-specific mount options
#ACTION=="add", ENV{ID_FS_TYPE}=="vfat|ntfs", ENV{mount_options}="$env{mount_options},utf8,gid=100,umask=002"
ACTION=="add", ENV{ID_FS_TYPE}=="vfat|ntfs", ENV{mount_options}="$env{mount_options},utf8,gid=100,uid=fran,umask=000"
# Mount the device
#ACTION=="add", RUN+="/bin/mkdir -p /media/%E{dir_name}", RUN+="/bin/mount -o $env{mount_options} /dev/%k /media/%E{dir_name}"
ACTION=="add", RUN+="/bin/mkdir -p /media/%E{dir_name}", RUN+="/bin/mount -t ntfs-3g -o $env{mount_options} /dev/%k /media/%E{dir_name}"
# Clean up after removal
ACTION=="remove", ENV{dir_name}!="", RUN+="/bin/umount -l /media/%E{dir_name}", RUN+="/bin/rmdir /media/%E{dir_name}"
# Exit
LABEL="media_by_label_auto_mount_end"
I think this rule should work with systemd. It seems to work, because:
[root@HermesT rules.d]# systemctl list-units | grep 'media'
media-Almacen.mount loaded active mounted /media/Almacen
media-COMPAQ.mount loaded active mounted /media/COMPAQ
media-SYSTEM.mount loaded active mounted /media/SYSTEM
But:
[root@HermesT media]# ls
ls: cannot access COMPAQ: Transport endpoint is not connected
ls: cannot access Almacen: Transport endpoint is not connected
ls: cannot access SYSTEM: Transport endpoint is not connected
Almacen COMPAQ MIO SYSTEM almacen hdusb usbhd-sda3 usbhd-sda4 usbhd-sdb1 usbhd-sdb2 usbhd-sdb5 usbhd-sdb6 usbhd-sdc1 usbhd-sdc2 usbhd-sdc5 usbhd-sdc6
¿some ideas?
Thanks.
Last edited by HermesT (2012-10-27 20:20:41)

Thanks aking9:
It seems there is no difference whether  fstab entry (a very old one, comented a long time ago) is active or not. None of both below helps to solve it.
/dev/sda5 /media/Almacen ntfs-3g defaults,users,umask=002 0 0
#/dev/sda5 /media/Almacen ntfs-3g defaults,users,locale=es_ES.UTF-8,umask=002 0 0
Despite of great work done by Arch team, systemd is an "esoteric" world for me.
Where can I now configure such thing?
Added:
journalctl log for ntfs-3g.
First, fstab with locale (deprecated?). Second fstab with nls. Third, no fstab entry:
Oct 26 18:30:04 HermesT ntfs-3g[700]: Unmounting /dev/sda5 (Almacen)
Oct 26 18:30:31 HermesT ntfs-3g[225]: Version 2012.1.15 external FUSE 29
Oct 26 18:30:31 HermesT ntfs-3g[225]: Mounted /dev/sda5 (Read-Write, label "Almacen", NTFS 3.1)
Oct 26 18:30:31 HermesT ntfs-3g[225]: Cmdline options: rw,noexec,nosuid,nodev,locale=es_ES.UTF-8,umask=002,users
Oct 26 18:30:31 HermesT ntfs-3g[225]: Mount options: rw,noexec,nosuid,nodev,users,allow_other,nonempty,relatime,fsname=/dev/sda5,blkdev,blksize=4096,default_permissions
Oct 26 18:30:31 HermesT ntfs-3g[225]: Global ownership and permissions enforced, configuration type 7
Oct 26 19:10:41 HermesT ntfs-3g[225]: Unmounting /dev/sda5 (Almacen)
Oct 26 19:57:45 HermesT ntfs-3g[229]: [101B blob data]
Oct 26 20:06:53 HermesT ntfs-3g[229]: Unmounting /dev/sda5 (Almacen)
Oct 26 20:07:15 HermesT ntfs-3g[279]: Version 2012.1.15 external FUSE 29
Oct 26 20:07:15 HermesT ntfs-3g[279]: Mounted /dev/sda5 (Read-Write, label "Almacen", NTFS 3.1)
Oct 26 20:07:15 HermesT ntfs-3g[279]: Cmdline options: rw,noexec,nosuid,nodev,nls=utf8,umask=002,users
Oct 26 20:07:15 HermesT ntfs-3g[279]: Mount options: rw,noexec,nosuid,nodev,nls=utf8,users,allow_other,nonempty,relatime,fsname=/dev/sda5,blkdev,blksize=4096,default_permissions
Oct 26 20:07:15 HermesT ntfs-3g[279]: Global ownership and permissions enforced, configuration type 7
Oct 26 20:08:37 HermesT ntfs-3g[279]: [101B blob data]
Oct 26 20:24:30 HermesT ntfs-3g[279]: Unmounting /dev/sda5 (Almacen)
Oct 26 20:26:05 HermesT ntfs-3g[795]: Version 2012.1.15 external FUSE 29
Oct 26 20:26:05 HermesT ntfs-3g[795]: Mounted /dev/sda5 (Read-Write, label "Almacen", NTFS 3.1)
Oct 26 20:26:05 HermesT ntfs-3g[795]: Cmdline options: rw,nodev,nosuid,uid=1002,gid=100,dmask=0077,fmask=0177,uhelper=udisks
Oct 26 20:26:05 HermesT ntfs-3g[795]: Mount options: rw,nodev,nosuid,uhelper=udisks,allow_other,nonempty,relatime,fsname=/dev/sda5,blkdev,blksize=4096,default_permissions
Oct 26 20:26:05 HermesT ntfs-3g[795]: Global ownership and permissions enforced, configuration type 7
None of them solved the problem.
Last edited by HermesT (2012-10-26 18:58:02)

Similar Messages

  • [SOLVED] (Auto)mounting in KDE not working after switch to systemd

    After I switched to systemd (everything else works fine now) I cannot mount any disk (CD/DVD/USB disk) with KDE 4.9.2.
    I only get the error message "cannot mount the following device: [...]".
    This is also the case when logged in as root, so it's probably not a problem with permissions.
    Manually mounting works fine.
    These lines show up in syslog when attaching a USB disk:
    Nov  3 12:04:49 localhost kernel: [  310.752533] sd 5:0:0:0: [sdb] Attached SCSI removable disk
    Nov  3 12:04:49 localhost udisks-daemon[752]: **** ADDING /sys/devices/pci0000:00/0000:00:1d.7/usb2/2-2/2-2:1.0/host5/target5:0:0/5:0:0:0/block/sdb
    Nov  3 12:04:49 localhost udisks-daemon[752]: **** UPDATING /sys/devices/pci0000:00/0000:00:1d.7/usb2/2-2/2-2:1.0/host5/target5:0:0/5:0:0:0/block/sdb
    Nov  3 12:04:49 localhost udisks-daemon[752]: **** ADDED /sys/devices/pci0000:00/0000:00:1d.7/usb2/2-2/2-2:1.0/host5/target5:0:0/5:0:0:0/block/sdb
    Nov  3 12:04:49 localhost udisks-daemon[752]: **** EMITTING ADDED for /sys/devices/pci0000:00/0000:00:1d.7/usb2/2-2/2-2:1.0/host5/target5:0:0/5:0:0:0/block/sdb
    Nov  3 12:04:49 localhost udisks-daemon[752]: **** ADDING /sys/devices/pci0000:00/0000:00:1d.7/usb2/2-2/2-2:1.0/host5/target5:0:0/5:0:0:0/block/sdb/sdb1
    Nov  3 12:04:49 localhost udisks-daemon[752]: **** UPDATING /sys/devices/pci0000:00/0000:00:1d.7/usb2/2-2/2-2:1.0/host5/target5:0:0/5:0:0:0/block/sdb/sdb1
    Nov  3 12:04:49 localhost udisks-daemon[752]: **** ADDED /sys/devices/pci0000:00/0000:00:1d.7/usb2/2-2/2-2:1.0/host5/target5:0:0/5:0:0:0/block/sdb/sdb1
    Nov  3 12:04:49 localhost udisks-daemon[752]: **** EMITTING ADDED for /sys/devices/pci0000:00/0000:00:1d.7/usb2/2-2/2-2:1.0/host5/target5:0:0/5:0:0:0/block/sdb/sdb1
    Nov  3 12:04:51 localhost udisks-daemon[752]: **** USING MOUNT OPTIONS 'uhelper=udisks,nodev,nosuid,uid=1000,gid=1001,shortname=mixed,dmask=0077,utf8=1,showexec,flush' FOR DEVICE /dev/sdb1
    The error is only displayed in KDE, does not appear in the log.
    I have no idea where to look for a missing or wrong setting, so I would appreciate any advice.
    If you need more information about my system, feel free to ask.
    Last edited by iromeister (2012-12-12 17:39:47)

    I'm not sure I really agree with IgnorantGuru in that I used to use a script which mounted my floppy with udisk --sorry old school--and with the systemd change, I now only had to change my script back to the KISS principle of mount and umount, without udisk, to make it work.  I don't understand all the complaints about the direction arch is going.  To me it's the same as it's always been.  Arch is for competent linux users, simple as that.  If you don't want to do the work and figure it out--as best you can--on your own, then the forum is your friend. 
    edit: @alwaysanoob:  Recently, with the change away from consolekit to logind, check to see if your polkit.service is active as many posts are showing that the polkit upgrade is not always activated due to conflicting group id's.  I myself had this problem as polkit was trying to use group id 102 which was already taken by an old install of gdm--which I had to remove--before the polkit.service could be started properly after a reinstall of polkit
    Last edited by bgc1954 (2012-11-05 05:03:48)

  • After installing Mavericks (from Mountain Lion) on my iMac 20"  mid 2007 I cannot read musical cd on the internal drive neither on external. No problems at all with my macbook air.

    When I put a musical CD into the reader (no matter if it is the internal Matshita or an external drive) the system write a message like :" this computer cannot read the disk" (in italian "il disco inserito non è leggibile da questo computer").
    I have also a macbook air : no problem at all with the same CD and the same external reader.
    Please help me.....

    Followup: on a business trip. Booked ahead for Genius Bar appointment. Fixed in half an hour. His hardware test found nothing wrong with the MacBook. He flashed Mountain Lion onto the laptop with no hiccups. Right there in the store the MB connected to iCloud and I had all my personal information back. Back in the hotel room it only took me 3 hours to fully reinstall all my purchased software over the hotel's wired LAN from the App Store and third party sites, without needing a single DVD like in the bad old days. Even re-installing MS Office was painless. I just searched with Google, then the MS page I clicked on served up a form with my information on it automatically and sent me an email with the product key when I clicked download. Obviously their server recognized this device. I cloned the MB to a small PassPort backup portable external hard drive and then used the MacBook normally  in meetings next day. Very impressive service. We've come a long way from portable computing two decades ago.
    Still a mystery why the installation would not complete at home, but problem resolved.

  • How do i solve latency problems in all areas?

    how do i solve latency problems in all areas?

    You can't. There's always going to be some latency - the trick is to minimize it so that it's not distracting.
    I assume you've got some latency when you're recording? If so, reduce your I/O buffer settings in your preferences to the point where your system works happily - on most new/faster systems you should be able to get down to 64 or 128 samples.
    Another solution is to not use software monitoring. If your interface supports it, use direct monitoring so that you're not monitoring the input through Logic but rather direct from the source.
    Reduce the use of latency-inducing plug ins when you're recording.
    What specifically are you experiencing?

  • HT4623 why my device  had "no service" even I already put my sim card..I have follow a few instruction from you tube how to solve this problem but all failed. Please help me .TQ

    why my device  had "no service" ..I have follow a few instruction from you tube how to solve this problem but all failed. Please help me .TQ

    See if anything in this support document help http://support.apple.com/kb/ts4429

  • I lost all my bookmarks,after switching to 3.5 silent how can i get them back?

    i lost all my bookmarks,after switching to 3.5 silent how can i get them back?

    Clarification:
    I believe now you potentially lose all extensions, plug-ins when you use the new reset function, but you will let me know.
    If that is the case, your find corrupt file method maybe better. However, I reviewed the two help articles and there appear to be more files than just the delete search.json file and a possible search.sqlite file in the Firefox Profile Folder. I am confused. Then I have to find the folders. I think help articles mentioned how to find the profile containing the files, but not sure.

  • I915 power consumption issue after switch to systemd?

    After switching to systemd I noticed a massive increase of power consumption on my Thinkpad X220 (i5 Sandy Bridge).
    The strange thing is, that after some reboots it randomly seems to catch the i915 power saving mode and the consumption gets from ~24W to ~7W at idle. But only after several reboots.
    Adding the good old i915.i915_enable_rc6=1 to the boot parameters doesn't make any differences. But looking at the powertop detail outputs it seems to be a i915 issue.
    Using the latest linux kernel from core (3.6.4) and latest intel drivers (2.20.12).

    I started to get suspicious because I have only ever had the issue in my office. Last week, when I encrypted my drive, my machine wrote to disk for more than 14 hours solid. I then did all the set up and all the restoring from backup etc. with no issue whatsoever. Lenovo ran the thing for 48 hours straight with no problem. But once in my office...
    So I asked the local IT people if they could think of anything other than overheating and explained the issue. They took my laptop yesterday , booted it from a hardware testing CD and ran it for a couple of hours sitting on top of a hot computer in the server room which is definitely hot. (It has a whole bunch of computers, I guess.) No issue. They then ran stress tests for a while in the same place. No problem. Highest recorded temp: 65C.
    The head of IT then took my power adapter to a more general IT service to be tested and inspected. They looked at it, they opened the plug to check the fuse, they tested it. No problem. Of course, the guy also explained why he was asking and the other IT person said, "Oh, is that on level 1?" "Yes..." So apparently there was another machine (a Mac), I think, doing just the same thing in an office in my part of the building. Testing showed that the power spikes and when the power spikes, the laptop shut down as a safety measure. Solution: they installed a UPS for that one laptop. They didn't tell anybody else, including the local IT people.
    What the local IT people were going to do was to install equipment to monitor the power in my office and see if anything weird was causing my laptop to react. However, that was when this was an extremely-unlikely-but-we-are-getting-desperate-for-theories scenario. Clearly, that theory no longer seems wildly implausible at all. So the current hypothesis is that it is most likely that my machine is also reacting to the spikes in power by shutting itself off. (I'm not sure why it should have just started doing this but who knows what the state of the electricals is and how that might vary?)
    I have been told that a surge protector will do no good. (They've given me one anyway but apparently it will not deal with spikes in phase 3 power or something - I didn't understand this bit but the head IT person said he didn't understand it either but the electricals IT person showed him with graphs on the whiteboard. So it must be true.)
    The current plan is to try to get the UPS from central IT which was provided for the other laptop since that person's discipline has since moved to another floor of the building so the UPS probably went back to central IT. They are going to ask during a meeting tomorrow about this possibility. Otherwise, they are planning to order a UPS for me on Monday.
    I'm somewhat surprised that the abrupt shutdowns haven't screwed my data. I've lost work but not seen fs corruption. I didn't take my laptop today. I'll need it next week but I do not plan to plug it in in my office until I have a UPS.
    I'm pretty annoyed, to be honest. I've wasted hours on this and got incredibly stressed about it. The IT people have also wasted a (smaller) amount of time. I hoped to have a new draft of an article I'm working on written by the end of reading week but that didn't happen due to all of this. And they *knew*. It would be different if this was an unknown problem just discovered - of course, one could understand that. But there's a known problem which can cause this type of problem and presumably could well damage equipment without these sorts of safety shutdown features and they don't tell anybody.
    And, no, I doubt very much indeed that a damaged personal machine would be considered the institution's liability. (Maybe if it was a student's machine and the student was required to use it or something but even then...)
    I can't believe it does much good to their equipment either.
    The local IT people did know there was an issue with some burnt out devices but that was about eight years ago and only got mentioned as a outside possibility when other diagnostics turned up no result.
    What gets me is that the proposed solution will only solve the issue for me - not for anybody else in my part of the building on level 1.

  • Geolocation stopped working in Firefox 24 after update (Win7 64). Downgraded to FF 23.0.1 solved the problem. Same with other FF installation at another PC.

    Visiting this page: https://developers.google.com/maps/documentation/javascript/examples/map-geolocation or any other website using geolocation to track my location, shows a blank map and no prompt "Share location: Allow, Block, Not now".
    This happened since upgrading to FF 24 (Desktop Win7 64). Downgrading to FF 23.0.1, solves the problem: FF prior to 24 supports geolocation with no problem. Tried in both my desktop and laptop with separate FF installations, using different plugins.
    Thank you in advance.
    [ NOTE: Now using Firefox 23.0.1, the problem only occurs after upgrading to Firefox 24 ]

    Still doesnt work in Firefox 24 or 25. Works like a charm in 23.0.1

  • Ipod classic won't sync to itunes on PC but no problem at all with MAC

    Hi,
    i have this problem for almost a year now. i have tried restoring my ipod (using both itunes & ipod restore option) i have uninstalled and reinstalled itunes, checked it with different computers and different operating systems (XP and windows 7) and the problem is still not solved.
    Here is the problem:
    if i'm connecting my ipod to mac, i can restore it and sync it with no problem at all. but when i'm connecting the same ipod to a PC, i than need to restore my ipod, which is fine, but after restoring, my ipod will not sync to itunes either on a PC or mac. but if again i'n restoring my ipod on mac, i can than sync again with no problem at all (but than i need to restore it on PC and again it can't be synced). any suggestion as to why is it happening? i'm using the latest version of itunes.
    Thanks,
    Flora

    One question; was there any music on the iPod before now, and if so, what happened to it?
    Check to make sure that Sync Music is selected on the Device/Music pane and that you have selected music to be added to the iPod.

  • Problems to pay with CC, after my bank changed authorisation by sms. All payments declined from app store or in games, can someone help?

    Pls help me if u had similar problem, my bank set possibiloty to have limits with all payments over net or phone, and also set higher security for eaxh such payment by code and sms, i did retyped many times this night my payment data as here as over computer, i have allowed payments for internet and also enough money on acc, i never had problems till now. Can anybody help pls? It is in a hurry i need make purchase till evening today.

    If it is still slow after removing Symantec, you may need a RAM upgrade. Yosemite can run very poorly on older machines with only 4 GB RAM.

  • [SOLVED] Graphics problem in laptop with dual NVIDIA cards

    I'm trying to install Arch on an Lenovo IdeaPad Y510. The laptop have 2 NVIDIA GT755M.
    The second graphics card is removable. If I remove that card I can see with lspci that there also is a intel graphics chip. If the second card is mounted lspci only shows me one GT 755m.
    The problem is that I cannot start X. I have installed gdm and gnome and when booted normally the screen goes blank and the cpu-fan speeds up and after a while the computer reboots.
    This is the log for that boot:
    May 09 22:21:01 arch kernel: [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
    May 09 22:21:01 arch kernel: [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
    May 09 22:21:02 arch gdm-Xorg-:0[382]: (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    May 09 22:21:02 arch gdm-Xorg-:0[382]: (==) NVIDIA(0): RGB weight 888
    May 09 22:21:02 arch gdm-Xorg-:0[382]: (==) NVIDIA(0): Default visual is TrueColor
    May 09 22:21:02 arch gdm-Xorg-:0[382]: (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    May 09 22:21:02 arch gdm-Xorg-:0[382]: (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration" "true"
    May 09 22:21:02 arch gdm-Xorg-:0[382]: (**) NVIDIA(0): Enabling 2D acceleration
    May 09 22:21:02 arch kernel: nvidia 0000:01:00.0: irq 49 for MSI/MSI-X
    May 09 22:21:02 arch systemd-logind[368]: Watching system buttons on /dev/input/event13 (Video Bus)
    May 09 22:21:02 arch kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131218/nsarguments-95)
    May 09 22:21:02 arch kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131218/nsarguments-95)
    May 09 22:21:02 arch kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131218/nsarguments-95)
    May 09 22:21:02 arch kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131218/nsarguments-95)
    May 09 22:21:02 arch kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131218/nsarguments-95)
    May 09 22:21:02 arch kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131218/nsarguments-95)
    May 09 22:21:02 arch kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131218/nsarguments-95)
    May 09 22:21:02 arch kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131218/nsarguments-95)
    May 09 22:21:02 arch kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131218/nsarguments-95)
    May 09 22:21:10 arch kernel: NVRM: GPU at 0000:01:00.0 has fallen off the bus.
    May 09 22:21:10 arch gdm-Xorg-:0[382]: (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA GPU at PCI:1:0:0. Please
    May 09 22:21:10 arch gdm-Xorg-:0[382]: (EE) NVIDIA(GPU-0): check your system's kernel log for additional error
    May 09 22:21:10 arch gdm-Xorg-:0[382]: (EE) NVIDIA(GPU-0): messages and refer to Chapter 8: Common Problems in the
    May 09 22:21:10 arch gdm-Xorg-:0[382]: (EE) NVIDIA(GPU-0): README for additional information.
    May 09 22:21:10 arch gdm-Xorg-:0[382]: (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA graphics device!
    May 09 22:21:10 arch gdm-Xorg-:0[382]: (EE) NVIDIA(0): Failing initialization of X screen 0
    May 09 22:21:10 arch gdm-Xorg-:0[382]: (II) UnloadModule: "nvidia"
    May 09 22:21:10 arch gdm-Xorg-:0[382]: (II) UnloadSubModule: "wfb"
    May 09 22:21:10 arch gdm-Xorg-:0[382]: (II) UnloadSubModule: "fb"
    May 09 22:21:10 arch gdm-Xorg-:0[382]: (EE) Screen(s) found, but none have a usable configuration.
    May 09 22:21:10 arch gdm-Xorg-:0[382]: (EE)
    May 09 22:21:10 arch gdm-Xorg-:0[382]: Fatal server error:
    May 09 22:21:10 arch gdm-Xorg-:0[382]: (EE) no screens found(EE)
    May 09 22:21:10 arch gdm-Xorg-:0[382]: (EE)
    May 09 22:21:10 arch gdm-Xorg-:0[382]: Please consult the The X.Org Foundation support
    May 09 22:21:10 arch gdm-Xorg-:0[382]: at http://wiki.x.org
    May 09 22:21:10 arch gdm-Xorg-:0[382]: for help.
    May 09 22:21:10 arch gdm-Xorg-:0[382]: (EE) Please also check the log file at "/dev/null" for additional information.
    May 09 22:21:10 arch gdm-Xorg-:0[382]: (EE)
    May 09 22:21:10 arch kernel: NVRM: RmInitAdapter failed! (0x25:0x28:1150)
    May 09 22:21:10 arch kernel: NVRM: rm_init_adapter failed for device bearing minor number 0
    May 09 22:21:10 arch kernel: NVRM: nvidia_frontend_open: minor 0, module->open() failed, error -5
    May 09 22:21:10 arch gdm-Xorg-:0[382]: (EE) Server terminated with error (1). Closing log file.
    May 09 22:21:11 arch gdm[377]: Child process 382 was already dead.
    How do I set video.allow_duplicates=1 ?
    When the computer reboots I start with runlevel 3 and then tries a startx. This gives me the following /var/log/Xorg.0.log:
    [ 231.105] (II) NVIDIA GLX Module 337.12 Fri Apr 4 14:34:00 PDT 2014
    [ 231.107] Loading extension GLX
    [ 231.107] (II) LoadModule: "nvidia"
    [ 231.108] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 231.114] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 231.114] compiled for 4.0.2, module version = 1.0.0
    [ 231.114] Module class: X.Org Video Driver
    [ 231.115] (II) NVIDIA dlloader X Driver 337.12 Fri Apr 4 14:13:45 PDT 2014
    [ 231.115] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 231.115] (--) using VT number 2
    [ 231.130] (II) Loading sub module "fb"
    [ 231.130] (II) LoadModule: "fb"
    [ 231.130] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 231.132] (II) Module fb: vendor="X.Org Foundation"
    [ 231.132] compiled for 1.15.1, module version = 1.0.0
    [ 231.132] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 231.132] (WW) Unresolved symbol: fbGetGCPrivateKey
    [ 231.132] (II) Loading sub module "wfb"
    [ 231.132] (II) LoadModule: "wfb"
    [ 231.132] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 231.134] (II) Module wfb: vendor="X.Org Foundation"
    [ 231.134] compiled for 1.15.1, module version = 1.0.0
    [ 231.134] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 231.134] (II) Loading sub module "ramdac"
    [ 231.134] (II) LoadModule: "ramdac"
    [ 231.134] (II) Module "ramdac" already built-in
    [ 231.690] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    [ 231.690] (==) NVIDIA(0): RGB weight 888
    [ 231.690] (==) NVIDIA(0): Default visual is TrueColor
    [ 231.690] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 231.693] (**) NVIDIA(0): Enabling 2D acceleration
    [ 240.591] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA GPU at PCI:1:0:0. Please
    [ 240.591] (EE) NVIDIA(GPU-0): check your system's kernel log for additional error
    [ 240.591] (EE) NVIDIA(GPU-0): messages and refer to Chapter 8: Common Problems in the
    [ 240.591] (EE) NVIDIA(GPU-0): README for additional information.
    [ 240.591] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA graphics device!
    [ 240.591] (EE) NVIDIA(0): Failing initialization of X screen 0
    [ 240.591] (II) UnloadModule: "nvidia"
    [ 240.591] (II) UnloadSubModule: "wfb"
    [ 240.591] (II) UnloadSubModule: "fb"
    [ 240.591] (EE) Screen(s) found, but none have a usable configuration.
    [ 240.591] (EE)
    Fatal server error:
    [ 240.591] (EE) no screens found(EE)
    [ 240.591] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 240.591] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 240.591] (EE)
    [ 240.608] (EE) Server terminated with error (1). Closing log file.
    I've tried without a xorg.conf and with one generated by nvidia-xconfig but they give the same result.
    Where do I find the README mentioned in the log?
    Anyone knows what the problem is?
    I tried Ubuntu before installing Arch and that worked (with NVIDIA drivers version 331) so it should be possible to get this machine working.
    Any help is appreciated!
    Last edited by bitbjorn (2014-05-20 19:10:58)

    I've given up on the nvidia-drivers and try with nouveau-driver. Still no success.
    Screen is black at bootup. I can, however, login and type reboot and the computer reboots (although I cant see anything).
    If I add nomodeset to bootline I can see the login-prompt and login, if I then run startx I get the following in /var/log/Xorg.0.log:
    [drm] KMS not enabled
    This link https://wiki.archlinux.org/index.php/ke … de_setting  does not help very much, I've tried the "Early KMS start" thing but I still have the same problem.
    If I have gdm enabled with
    systemctl enable gdm.service
    and boot the computer the screen is blank. If I login with ssh I can see that gdm is started.
    Journalctl -b -0 from the ssh-session gives this:
    [bjorn@arch ~]$ journalctl -b -0
    -- Logs begin at Wed 2014-05-07 00:30:45 CEST, end at Sun 2014-05-11 11:58:50 CEST. --
    May 11 11:58:32 arch systemd-journal[219]: Runtime journal is using 8.0M (max allowed 799.9M, trying to leave 1.1G free of 7.8G avail
    May 11 11:58:32 arch systemd-journal[219]: Runtime journal is using 8.0M (max allowed 799.9M, trying to leave 1.1G free of 7.8G avail
    May 11 11:58:32 arch kernel: Initializing cgroup subsys cpuset
    May 11 11:58:32 arch kernel: Initializing cgroup subsys cpu
    May 11 11:58:32 arch kernel: Initializing cgroup subsys cpuacct
    May 11 11:58:32 arch kernel: Linux version 3.14.3-1-ARCH (nobody@var-lib-archbuild-testing-x86_64-tobias) (gcc version 4.9.0 (GCC) )
    May 11 11:58:32 arch kernel: Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=4a950c38-be98-4678-9a12-9caebece5745 rw quiet
    May 11 11:58:32 arch kernel: e820: BIOS-provided physical RAM map:
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000006efff] usable
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x000000000006f000-0x000000000006ffff] reserved
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x0000000000070000-0x0000000000087fff] usable
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] reserved
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x0000000000100000-0x000000006e6effff] usable
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x000000006e6f0000-0x000000006faeffff] reserved
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x000000006faf0000-0x000000008eebefff] usable
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x000000008eebf000-0x000000008f0befff] type 20
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x000000008f0bf000-0x000000008f6befff] reserved
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x000000008f6bf000-0x000000008f7befff] ACPI NVS
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x000000008f7bf000-0x000000008f7fefff] ACPI data
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x000000008f7ff000-0x000000008f7fffff] usable
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x000000008f800000-0x000000008fffffff] reserved
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x00000000feb00000-0x00000000feb0ffff] reserved
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fee00fff] reserved
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x00000000ffb80000-0x00000000ffffffff] reserved
    May 11 11:58:32 arch kernel: BIOS-e820: [mem 0x0000000100000000-0x000000046effffff] usable
    May 11 11:58:32 arch kernel: NX (Execute Disable) protection: active
    May 11 11:58:32 arch kernel: efi: EFI v2.31 by INSYDE Corp.
    May 11 11:58:32 arch kernel: efi: ACPI=0x8f7fe000 ACPI 2.0=0x8f7fe014 SMBIOS=0x8f6bef98
    May 11 11:58:32 arch kernel: efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem01: type=7, attr=0xf, range=[0x0000000000001000-0x000000000006f000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem02: type=0, attr=0xf, range=[0x000000000006f000-0x0000000000070000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem03: type=7, attr=0xf, range=[0x0000000000070000-0x0000000000080000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem04: type=3, attr=0xf, range=[0x0000000000080000-0x0000000000082000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem05: type=7, attr=0xf, range=[0x0000000000082000-0x0000000000088000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem06: type=6, attr=0x800000000000000f, range=[0x0000000000088000-0x000000000009f000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem07: type=0, attr=0xf, range=[0x000000000009f000-0x00000000000a0000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem08: type=2, attr=0xf, range=[0x0000000000100000-0x000000000105b000) (15MB)
    May 11 11:58:32 arch kernel: efi: mem09: type=7, attr=0xf, range=[0x000000000105b000-0x0000000002000000) (15MB)
    May 11 11:58:32 arch kernel: efi: mem10: type=2, attr=0xf, range=[0x0000000002000000-0x0000000002f5b000) (15MB)
    May 11 11:58:32 arch kernel: efi: mem11: type=7, attr=0xf, range=[0x0000000002f5b000-0x0000000037622000) (838MB)
    May 11 11:58:32 arch kernel: efi: mem12: type=2, attr=0xf, range=[0x0000000037622000-0x0000000037b09000) (4MB)
    May 11 11:58:32 arch kernel: efi: mem13: type=7, attr=0xf, range=[0x0000000037b09000-0x000000004a79d000) (300MB)
    May 11 11:58:32 arch kernel: efi: mem14: type=2, attr=0xf, range=[0x000000004a79d000-0x000000006cb00000) (547MB)
    May 11 11:58:32 arch kernel: efi: mem15: type=4, attr=0xf, range=[0x000000006cb00000-0x000000006cb20000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem16: type=7, attr=0xf, range=[0x000000006cb20000-0x000000006d6f1000) (11MB)
    May 11 11:58:32 arch kernel: efi: mem17: type=4, attr=0xf, range=[0x000000006d6f1000-0x000000006e6f0000) (15MB)
    May 11 11:58:32 arch kernel: efi: mem18: type=0, attr=0xf, range=[0x000000006e6f0000-0x000000006faf0000) (20MB)
    May 11 11:58:32 arch kernel: efi: mem19: type=7, attr=0xf, range=[0x000000006faf0000-0x000000006fce2000) (1MB)
    May 11 11:58:32 arch kernel: efi: mem20: type=1, attr=0xf, range=[0x000000006fce2000-0x000000006fcff000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem21: type=7, attr=0xf, range=[0x000000006fcff000-0x00000000730e5000) (51MB)
    May 11 11:58:32 arch kernel: efi: mem22: type=4, attr=0xf, range=[0x00000000730e5000-0x0000000073123000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem23: type=7, attr=0xf, range=[0x0000000073123000-0x0000000073124000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem24: type=4, attr=0xf, range=[0x0000000073124000-0x00000000732d5000) (1MB)
    May 11 11:58:32 arch kernel: efi: mem25: type=7, attr=0xf, range=[0x00000000732d5000-0x00000000732d6000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem26: type=4, attr=0xf, range=[0x00000000732d6000-0x00000000733e8000) (1MB)
    May 11 11:58:32 arch kernel: efi: mem27: type=7, attr=0xf, range=[0x00000000733e8000-0x00000000733e9000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem28: type=4, attr=0xf, range=[0x00000000733e9000-0x000000007461b000) (18MB)
    May 11 11:58:32 arch kernel: efi: mem29: type=7, attr=0xf, range=[0x000000007461b000-0x000000007461d000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem30: type=4, attr=0xf, range=[0x000000007461d000-0x000000007461e000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem31: type=7, attr=0xf, range=[0x000000007461e000-0x0000000074620000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem32: type=4, attr=0xf, range=[0x0000000074620000-0x000000007463c000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem33: type=7, attr=0xf, range=[0x000000007463c000-0x000000007463d000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem34: type=4, attr=0xf, range=[0x000000007463d000-0x0000000074646000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem35: type=7, attr=0xf, range=[0x0000000074646000-0x0000000074648000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem36: type=4, attr=0xf, range=[0x0000000074648000-0x000000007466f000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem37: type=7, attr=0xf, range=[0x000000007466f000-0x0000000074671000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem38: type=4, attr=0xf, range=[0x0000000074671000-0x000000007480b000) (1MB)
    May 11 11:58:32 arch kernel: efi: mem39: type=7, attr=0xf, range=[0x000000007480b000-0x000000007480f000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem40: type=4, attr=0xf, range=[0x000000007480f000-0x0000000074810000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem41: type=7, attr=0xf, range=[0x0000000074810000-0x0000000074813000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem42: type=4, attr=0xf, range=[0x0000000074813000-0x000000007688f000) (32MB)
    May 11 11:58:32 arch kernel: efi: mem43: type=7, attr=0xf, range=[0x000000007688f000-0x000000008ea5e000) (385MB)
    May 11 11:58:32 arch kernel: efi: mem44: type=2, attr=0xf, range=[0x000000008ea5e000-0x000000008ea68000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem45: type=3, attr=0xf, range=[0x000000008ea68000-0x000000008eebf000) (4MB)
    May 11 11:58:32 arch kernel: efi: mem46: type=5, attr=0x800000000000000f, range=[0x000000008eebf000-0x000000008f0bf000) (2MB)
    May 11 11:58:32 arch kernel: efi: mem47: type=6, attr=0x800000000000000f, range=[0x000000008f0bf000-0x000000008f2bf000) (2MB)
    May 11 11:58:32 arch kernel: efi: mem48: type=0, attr=0xf, range=[0x000000008f2bf000-0x000000008f6bf000) (4MB)
    May 11 11:58:32 arch kernel: efi: mem49: type=10, attr=0xf, range=[0x000000008f6bf000-0x000000008f7bf000) (1MB)
    May 11 11:58:32 arch kernel: efi: mem50: type=9, attr=0xf, range=[0x000000008f7bf000-0x000000008f7ff000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem51: type=4, attr=0xf, range=[0x000000008f7ff000-0x000000008f800000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem52: type=7, attr=0xf, range=[0x0000000100000000-0x000000046f000000) (14064MB)
    May 11 11:58:32 arch kernel: efi: mem53: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem54: type=0, attr=0x0, range=[0x000000008f800000-0x0000000090000000) (8MB)
    May 11 11:58:32 arch kernel: efi: mem55: type=11, attr=0x8000000000000001, range=[0x00000000e0000000-0x00000000f0000000) (256MB)
    May 11 11:58:32 arch kernel: efi: mem56: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb10000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem57: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem58: type=11, attr=0x8000000000000001, range=[0x00000000fed00000-0x00000000fed1c000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem59: type=11, attr=0x8000000000000000, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem60: type=11, attr=0x8000000000000001, range=[0x00000000fed20000-0x00000000fee01000) (0MB)
    May 11 11:58:32 arch kernel: efi: mem61: type=11, attr=0x8000000000000001, range=[0x00000000ffb80000-0x0000000100000000) (4MB)
    May 11 11:58:32 arch kernel: SMBIOS 2.7 present.
    May 11 11:58:32 arch kernel: DMI: LENOVO 20217/VIQY0Y1, BIOS 74CN44WW(V3.05) 09/18/2013
    May 11 11:58:32 arch kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    May 11 11:58:32 arch kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    May 11 11:58:32 arch kernel: No AGP bridge found
    May 11 11:58:32 arch kernel: e820: last_pfn = 0x46f000 max_arch_pfn = 0x400000000
    May 11 11:58:32 arch kernel: MTRR default type: uncachable
    May 11 11:58:32 arch kernel: MTRR fixed ranges enabled:
    May 11 11:58:32 arch kernel: 00000-9FFFF write-back
    May 11 11:58:32 arch kernel: A0000-BFFFF uncachable
    May 11 11:58:32 arch kernel: C0000-E7FFF write-protect
    May 11 11:58:32 arch kernel: E8000-EFFFF write-combining
    May 11 11:58:32 arch kernel: F0000-FFFFF write-protect
    May 11 11:58:32 arch kernel: MTRR variable ranges enabled:
    May 11 11:58:32 arch kernel: 0 base 0000000000 mask 7800000000 write-back
    May 11 11:58:32 arch kernel: 1 base 008F800000 mask 7FFF800000 uncachable
    May 11 11:58:32 arch kernel: 2 base 0090000000 mask 7FF0000000 uncachable
    May 11 11:58:32 arch kernel: 3 base 00A0000000 mask 7FE0000000 uncachable
    May 11 11:58:32 arch kernel: 4 base 00C0000000 mask 7FC0000000 uncachable
    May 11 11:58:32 arch kernel: 5 disabled
    May 11 11:58:32 arch kernel: 6 disabled
    May 11 11:58:32 arch kernel: 7 disabled
    May 11 11:58:32 arch kernel: 8 disabled
    May 11 11:58:32 arch kernel: 9 disabled
    May 11 11:58:32 arch kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    May 11 11:58:32 arch kernel: e820: update [mem 0x8f800000-0xffffffff] usable ==> reserved
    May 11 11:58:32 arch kernel: e820: last_pfn = 0x8f800 max_arch_pfn = 0x400000000
    May 11 11:58:32 arch kernel: Scanning 1 areas for low memory corruption
    May 11 11:58:32 arch kernel: Base memory trampoline at [ffff880000082000] 82000 size 24576
    May 11 11:58:32 arch kernel: Using GB pages for direct mapping
    May 11 11:58:32 arch kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    May 11 11:58:32 arch kernel: [mem 0x00000000-0x000fffff] page 4k
    May 11 11:58:32 arch kernel: BRK [0x02b39000, 0x02b39fff] PGTABLE
    May 11 11:58:32 arch kernel: BRK [0x02b3a000, 0x02b3afff] PGTABLE
    May 11 11:58:32 arch kernel: BRK [0x02b3b000, 0x02b3bfff] PGTABLE
    May 11 11:58:32 arch kernel: init_memory_mapping: [mem 0x46ee00000-0x46effffff]
    May 11 11:58:32 arch kernel: [mem 0x46ee00000-0x46effffff] page 2M
    May 11 11:58:32 arch kernel: BRK [0x02b3c000, 0x02b3cfff] PGTABLE
    May 11 11:58:32 arch kernel: init_memory_mapping: [mem 0x46c000000-0x46edfffff]
    May 11 11:58:32 arch kernel: [mem 0x46c000000-0x46edfffff] page 2M
    May 11 11:58:32 arch kernel: init_memory_mapping: [mem 0x400000000-0x46bffffff]
    May 11 11:58:32 arch kernel: [mem 0x400000000-0x43fffffff] page 1G
    May 11 11:58:32 arch kernel: [mem 0x440000000-0x46bffffff] page 2M
    May 11 11:58:32 arch kernel: init_memory_mapping: [mem 0x00100000-0x6e6effff]
    May 11 11:58:32 arch kernel: [mem 0x00100000-0x001fffff] page 4k
    May 11 11:58:32 arch kernel: [mem 0x00200000-0x6e5fffff] page 2M
    May 11 11:58:32 arch kernel: [mem 0x6e600000-0x6e6effff] page 4k
    May 11 11:58:32 arch kernel: init_memory_mapping: [mem 0x6faf0000-0x8eebefff]
    May 11 11:58:32 arch kernel: [mem 0x6faf0000-0x6fbfffff] page 4k
    May 11 11:58:32 arch kernel: [mem 0x6fc00000-0x8edfffff] page 2M
    May 11 11:58:32 arch kernel: [mem 0x8ee00000-0x8eebefff] page 4k
    May 11 11:58:32 arch kernel: BRK [0x02b3d000, 0x02b3dfff] PGTABLE
    May 11 11:58:32 arch kernel: BRK [0x02b3e000, 0x02b3efff] PGTABLE
    May 11 11:58:32 arch kernel: init_memory_mapping: [mem 0x8f7ff000-0x8f7fffff]
    May 11 11:58:32 arch kernel: [mem 0x8f7ff000-0x8f7fffff] page 4k
    May 11 11:58:32 arch kernel: init_memory_mapping: [mem 0x100000000-0x3ffffffff]
    May 11 11:58:32 arch kernel: [mem 0x100000000-0x3ffffffff] page 1G
    May 11 11:58:32 arch kernel: RAMDISK: [mem 0x37622000-0x37b08fff]
    May 11 11:58:32 arch kernel: ACPI: RSDP 000000008f7fe014 000024 (v02 LENOVO)
    May 11 11:58:32 arch kernel: ACPI: XSDT 000000008f7fe210 0000B4 (v01 LENOVO CB-01 00000001 01000013)
    May 11 11:58:32 arch kernel: ACPI: FACP 000000008f7f7000 00010C (v05 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: DSDT 000000008f7e7000 00C690 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: FACS 000000008f7ba000 000040
    May 11 11:58:32 arch kernel: ACPI: SLIC 000000008f7fd000 000176 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: UEFI 000000008f7fc000 000236 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: FPDT 000000008f7fa000 000044 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: MSDM 000000008f7f9000 000055 (v03 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: ASF! 000000008f7f8000 0000A5 (v32 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: HPET 000000008f7f6000 000038 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: APIC 000000008f7f5000 00008C (v03 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: MCFG 000000008f7f4000 00003C (v01 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: SSDT 000000008f7e6000 000838 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: BOOT 000000008f7e4000 000028 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: ASPT 000000008f7e2000 000034 (v07 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: DBGP 000000008f7e1000 000034 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: SSDT 000000008f7d9000 000539 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: SSDT 000000008f7d8000 000AD8 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: SSDT 000000008f7d4000 00326E (v01 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: SSDT 000000008f7d1000 0012FF (v01 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: BGRT 000000008f7d3000 000038 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    May 11 11:58:32 arch kernel: ACPI: Local APIC address 0xfee00000
    May 11 11:58:32 arch kernel: No NUMA configuration found
    May 11 11:58:32 arch kernel: Faking a node at [mem 0x0000000000000000-0x000000046effffff]
    May 11 11:58:32 arch kernel: Initmem setup node 0 [mem 0x00000000-0x46effffff]
    May 11 11:58:32 arch kernel: NODE_DATA [mem 0x46eff7000-0x46effbfff]
    May 11 11:58:32 arch kernel: [ffffea0000000000-ffffea0011bfffff] PMD -> [ffff88045e600000-ffff88046e5fffff] on node 0
    May 11 11:58:32 arch kernel: Zone ranges:
    May 11 11:58:32 arch kernel: DMA [mem 0x00001000-0x00ffffff]
    May 11 11:58:32 arch kernel: DMA32 [mem 0x01000000-0xffffffff]
    May 11 11:58:32 arch kernel: Normal [mem 0x100000000-0x46effffff]
    May 11 11:58:32 arch kernel: Movable zone start for each node
    May 11 11:58:32 arch kernel: Early memory node ranges
    May 11 11:58:32 arch kernel: node 0: [mem 0x00001000-0x0006efff]
    May 11 11:58:32 arch kernel: node 0: [mem 0x00070000-0x00087fff]
    May 11 11:58:32 arch kernel: node 0: [mem 0x00100000-0x6e6effff]
    May 11 11:58:32 arch kernel: node 0: [mem 0x6faf0000-0x8eebefff]
    May 11 11:58:32 arch kernel: node 0: [mem 0x8f7ff000-0x8f7fffff]
    May 11 11:58:32 arch kernel: node 0: [mem 0x100000000-0x46effffff]
    May 11 11:58:32 arch kernel: On node 0 totalpages: 4180550
    May 11 11:58:32 arch kernel: DMA zone: 64 pages used for memmap
    May 11 11:58:32 arch kernel: DMA zone: 24 pages reserved
    May 11 11:58:32 arch kernel: DMA zone: 3974 pages, LIFO batch:0
    May 11 11:58:32 arch kernel: DMA32 zone: 9003 pages used for memmap
    May 11 11:58:32 arch kernel: DMA32 zone: 576192 pages, LIFO batch:31
    May 11 11:58:32 arch kernel: Normal zone: 56256 pages used for memmap
    May 11 11:58:32 arch kernel: Normal zone: 3600384 pages, LIFO batch:31
    May 11 11:58:32 arch kernel: ACPI: PM-Timer IO Port: 0x1808
    May 11 11:58:32 arch kernel: ACPI: Local APIC address 0xfee00000
    May 11 11:58:32 arch kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    May 11 11:58:32 arch kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    May 11 11:58:32 arch kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    May 11 11:58:32 arch kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    May 11 11:58:32 arch kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] enabled)
    May 11 11:58:32 arch kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
    May 11 11:58:32 arch kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
    May 11 11:58:32 arch kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    May 11 11:58:32 arch kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    May 11 11:58:32 arch kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    May 11 11:58:32 arch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    May 11 11:58:32 arch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    May 11 11:58:32 arch kernel: ACPI: IRQ0 used by override.
    May 11 11:58:32 arch kernel: ACPI: IRQ2 used by override.
    May 11 11:58:32 arch kernel: ACPI: IRQ9 used by override.
    May 11 11:58:32 arch kernel: Using ACPI (MADT) for SMP configuration information
    May 11 11:58:32 arch kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
    May 11 11:58:32 arch kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
    May 11 11:58:32 arch kernel: nr_irqs_gsi: 40
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0x0006f000-0x0006ffff]
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0x00088000-0x000bffff]
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0x6e6f0000-0x6faeffff]
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0x8eebf000-0x8f0befff]
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0x8f0bf000-0x8f6befff]
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0x8f6bf000-0x8f7befff]
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0x8f7bf000-0x8f7fefff]
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0x8f800000-0x8fffffff]
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0x90000000-0xdfffffff]
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0xf0000000-0xfeafffff]
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0xfeb00000-0xfeb0ffff]
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0xfeb10000-0xfebfffff]
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0xfed00000-0xfee00fff]
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0xfee01000-0xffb7ffff]
    May 11 11:58:32 arch kernel: PM: Registered nosave memory: [mem 0xffb80000-0xffffffff]
    May 11 11:58:32 arch kernel: e820: [mem 0x90000000-0xdfffffff] available for PCI devices
    May 11 11:58:32 arch kernel: Booting paravirtualized kernel on bare hardware
    May 11 11:58:32 arch kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    May 11 11:58:32 arch kernel: PERCPU: Embedded 29 pages/cpu @ffff88046ec00000 s87040 r8192 d23552 u262144
    May 11 11:58:32 arch kernel: pcpu-alloc: s87040 r8192 d23552 u262144 alloc=1*2097152
    May 11 11:58:32 arch kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    May 11 11:58:32 arch kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4115203
    May 11 11:58:32 arch kernel: Policy zone: Normal
    May 11 11:58:32 arch kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=4a950c38-be98-4678-9a12-9caebece5745 rw quiet
    May 11 11:58:32 arch kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    May 11 11:58:32 arch kernel: xsave: enabled xstate_bv 0x7, cntxt size 0x340
    May 11 11:58:32 arch kernel: Checking aperture...
    May 11 11:58:32 arch kernel: No AGP bridge found
    May 11 11:58:32 arch kernel: Calgary: detecting Calgary via BIOS EBDA area
    May 11 11:58:32 arch kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    May 11 11:58:32 arch kernel: Memory: 16298272K/16722200K available (5230K kernel code, 857K rwdata, 1632K rodata, 1120K init, 1288K b
    May 11 11:58:32 arch kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    May 11 11:58:32 arch kernel: Preemptible hierarchical RCU implementation.
    May 11 11:58:32 arch kernel: RCU dyntick-idle grace-period acceleration is enabled.
    May 11 11:58:32 arch kernel: Dump stacks of tasks blocking RCU-preempt GP.
    May 11 11:58:32 arch kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    May 11 11:58:32 arch kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
    May 11 11:58:32 arch kernel: NR_IRQS:8448 nr_irqs:744 16
    May 11 11:58:32 arch kernel: Console: colour dummy device 80x25
    May 11 11:58:32 arch kernel: console [tty0] enabled
    May 11 11:58:32 arch kernel: allocated 67108864 bytes of page_cgroup
    May 11 11:58:32 arch kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    May 11 11:58:32 arch kernel: hpet clockevent registered
    May 11 11:58:32 arch kernel: tsc: Fast TSC calibration using PIT
    May 11 11:58:32 arch kernel: tsc: Detected 2394.453 MHz processor
    May 11 11:58:32 arch kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4790.44 BogoMIPS (lpj=7981510
    May 11 11:58:32 arch kernel: pid_max: default: 32768 minimum: 301
    May 11 11:58:32 arch kernel: ACPI: Core revision 20131218
    May 11 11:58:32 arch kernel: ACPI: All ACPI Tables successfully acquired
    May 11 11:58:32 arch kernel: Security Framework initialized
    May 11 11:58:32 arch kernel: Yama: becoming mindful.
    May 11 11:58:32 arch kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    May 11 11:58:32 arch kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    May 11 11:58:32 arch kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
    May 11 11:58:32 arch kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
    May 11 11:58:32 arch kernel: Initializing cgroup subsys memory
    May 11 11:58:32 arch kernel: Initializing cgroup subsys devices
    May 11 11:58:32 arch kernel: Initializing cgroup subsys freezer
    May 11 11:58:32 arch kernel: Initializing cgroup subsys net_cls
    May 11 11:58:32 arch kernel: Initializing cgroup subsys blkio
    May 11 11:58:32 arch kernel: CPU: Physical Processor ID: 0
    May 11 11:58:32 arch kernel: CPU: Processor Core ID: 0
    May 11 11:58:32 arch kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    May 11 11:58:32 arch kernel: mce: CPU supports 9 MCE banks
    May 11 11:58:32 arch kernel: CPU0: Thermal monitoring enabled (TM1)
    May 11 11:58:32 arch kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
    Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
    tlb_flushall_shift: 6
    May 11 11:58:32 arch kernel: Freeing SMP alternatives memory: 20K (ffffffff819f0000 - ffffffff819f5000)
    May 11 11:58:32 arch kernel: ftrace: allocating 20028 entries in 79 pages
    May 11 11:58:32 arch kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    May 11 11:58:32 arch kernel: smpboot: CPU0: Intel(R) Core(TM) i7-4700MQ CPU @ 2.40GHz (fam: 06, model: 3c, stepping: 03)
    May 11 11:58:32 arch kernel: TSC deadline timer enabled
    May 11 11:58:32 arch kernel: Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    May 11 11:58:32 arch kernel: ... version: 3
    May 11 11:58:32 arch kernel: ... bit width: 48
    May 11 11:58:32 arch kernel: ... generic registers: 4
    May 11 11:58:32 arch kernel: ... value mask: 0000ffffffffffff
    May 11 11:58:32 arch kernel: ... max period: 0000ffffffffffff
    May 11 11:58:32 arch kernel: ... fixed-purpose events: 3
    May 11 11:58:32 arch kernel: ... event mask: 000000070000000f
    May 11 11:58:32 arch kernel: x86: Booting SMP configuration:
    May 11 11:58:32 arch kernel: .... node #0, CPUs: #1
    May 11 11:58:32 arch kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    May 11 11:58:32 arch kernel: #2 #3 #4 #5 #6 #7
    May 11 11:58:32 arch kernel: x86: Booted up 1 node, 8 CPUs
    May 11 11:58:32 arch kernel: smpboot: Total of 8 processors activated (38326.55 BogoMIPS)
    May 11 11:58:32 arch kernel: devtmpfs: initialized
    May 11 11:58:32 arch kernel: PM: Registering ACPI NVS region [mem 0x8f6bf000-0x8f7befff] (1048576 bytes)
    May 11 11:58:32 arch kernel: pinctrl core: initialized pinctrl subsystem
    May 11 11:58:32 arch kernel: RTC time: 9:58:25, date: 05/11/14
    May 11 11:58:32 arch kernel: NET: Registered protocol family 16
    May 11 11:58:32 arch kernel: cpuidle: using governor ladder
    May 11 11:58:32 arch kernel: cpuidle: using governor menu
    May 11 11:58:32 arch kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    May 11 11:58:32 arch kernel: ACPI: bus type PCI registered
    May 11 11:58:32 arch kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    May 11 11:58:32 arch kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    May 11 11:58:32 arch kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    May 11 11:58:32 arch kernel: PCI: Using configuration type 1 for base access
    May 11 11:58:32 arch kernel: bio: create slab <bio-0> at 0
    May 11 11:58:32 arch kernel: ACPI: Added _OSI(Module Device)
    May 11 11:58:32 arch kernel: ACPI: Added _OSI(Processor Device)
    May 11 11:58:32 arch kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    May 11 11:58:32 arch kernel: ACPI: Added _OSI(Processor Aggregator Device)
    May 11 11:58:32 arch kernel: ACPI: Executed 1 blocks of module-level executable AML code
    May 11 11:58:32 arch kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    May 11 11:58:32 arch kernel: ACPI: SSDT 000000008f658c18 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20130117)
    May 11 11:58:32 arch kernel: ACPI: Dynamic OEM Table Load:
    May 11 11:58:32 arch kernel: ACPI: SSDT (null) 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20130117)
    May 11 11:58:32 arch kernel: ACPI: SSDT 000000008f658618 0005AA (v01 PmRef ApIst 00003000 INTL 20130117)
    May 11 11:58:32 arch kernel: ACPI: Dynamic OEM Table Load:
    May 11 11:58:32 arch kernel: ACPI: SSDT (null) 0005AA (v01 PmRef ApIst 00003000 INTL 20130117)
    May 11 11:58:32 arch kernel: ACPI: SSDT 000000008f657d98 000119 (v01 PmRef ApCst 00003000 INTL 20130117)
    May 11 11:58:32 arch kernel: ACPI: Dynamic OEM Table Load:
    May 11 11:58:32 arch kernel: ACPI: SSDT (null) 000119 (v01 PmRef ApCst 00003000 INTL 20130117)
    May 11 11:58:32 arch kernel: ACPI: Interpreter enabled
    May 11 11:58:32 arch kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131218/hwxface-580)
    May 11 11:58:32 arch kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131218/hwxface-580)
    May 11 11:58:32 arch kernel: ACPI: (supports S0 S3 S4 S5)
    May 11 11:58:32 arch kernel: ACPI: Using IOAPIC for interrupt routing
    May 11 11:58:32 arch kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    May 11 11:58:32 arch kernel: ACPI: No dock devices found.
    May 11 11:58:32 arch kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
    May 11 11:58:32 arch kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    May 11 11:58:32 arch kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
    May 11 11:58:32 arch kernel: PCI host bridge to bus 0000:00
    May 11 11:58:32 arch kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: root bus resource [mem 0x90000000-0xfeafffff]
    May 11 11:58:32 arch kernel: pci 0000:00:00.0: [8086:0c04] type 00 class 0x060000
    May 11 11:58:32 arch kernel: pci 0000:00:01.0: [8086:0c01] type 01 class 0x060400
    May 11 11:58:32 arch kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    May 11 11:58:32 arch kernel: pci 0000:00:01.0: System wakeup disabled by ACPI
    May 11 11:58:32 arch kernel: pci 0000:00:01.1: [8086:0c05] type 01 class 0x060400
    May 11 11:58:32 arch kernel: pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
    May 11 11:58:32 arch kernel: pci 0000:00:01.1: System wakeup disabled by ACPI
    May 11 11:58:32 arch kernel: pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330
    May 11 11:58:32 arch kernel: pci 0000:00:14.0: reg 0x10: [mem 0xd5200000-0xd520ffff 64bit]
    May 11 11:58:32 arch kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
    May 11 11:58:32 arch kernel: pci 0000:00:14.0: System wakeup disabled by ACPI
    May 11 11:58:32 arch kernel: pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
    May 11 11:58:32 arch kernel: pci 0000:00:16.0: reg 0x10: [mem 0xd5214000-0xd521400f 64bit]
    May 11 11:58:32 arch kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    May 11 11:58:32 arch kernel: pci 0000:00:1a.0: [8086:8c2d] type 00 class 0x0c0320
    May 11 11:58:32 arch kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xd5219000-0xd52193ff]
    May 11 11:58:32 arch kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    May 11 11:58:32 arch kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
    May 11 11:58:32 arch kernel: pci 0000:00:1b.0: [8086:8c20] type 00 class 0x040300
    May 11 11:58:32 arch kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xd5210000-0xd5213fff 64bit]
    May 11 11:58:32 arch kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    May 11 11:58:32 arch kernel: pci 0000:00:1c.0: [8086:8c16] type 01 class 0x060400
    May 11 11:58:32 arch kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    May 11 11:58:32 arch kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
    May 11 11:58:32 arch kernel: pci 0000:00:1c.4: [8086:8c18] type 01 class 0x060400
    May 11 11:58:32 arch kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    May 11 11:58:32 arch kernel: pci 0000:00:1d.0: [8086:8c26] type 00 class 0x0c0320
    May 11 11:58:32 arch kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xd5218000-0xd52183ff]
    May 11 11:58:32 arch kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    May 11 11:58:32 arch kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
    May 11 11:58:32 arch kernel: pci 0000:00:1f.0: [8086:8c49] type 00 class 0x060100
    May 11 11:58:32 arch kernel: pci 0000:00:1f.2: [8086:8c03] type 00 class 0x010601
    May 11 11:58:32 arch kernel: pci 0000:00:1f.2: reg 0x10: [io 0x6048-0x604f]
    May 11 11:58:32 arch kernel: pci 0000:00:1f.2: reg 0x14: [io 0x6054-0x6057]
    May 11 11:58:32 arch kernel: pci 0000:00:1f.2: reg 0x18: [io 0x6040-0x6047]
    May 11 11:58:32 arch kernel: pci 0000:00:1f.2: reg 0x1c: [io 0x6050-0x6053]
    May 11 11:58:32 arch kernel: pci 0000:00:1f.2: reg 0x20: [io 0x6020-0x603f]
    May 11 11:58:32 arch kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xd5217000-0xd52177ff]
    May 11 11:58:32 arch kernel: pci 0000:00:1f.2: PME# supported from D3hot
    May 11 11:58:32 arch kernel: pci 0000:00:1f.3: [8086:8c22] type 00 class 0x0c0500
    May 11 11:58:32 arch kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xd5215000-0xd52150ff 64bit]
    May 11 11:58:32 arch kernel: pci 0000:00:1f.3: reg 0x20: [io 0x6000-0x601f]
    May 11 11:58:32 arch kernel: pci 0000:01:00.0: [10de:0fcd] type 00 class 0x030000
    May 11 11:58:32 arch kernel: pci 0000:01:00.0: reg 0x10: [mem 0xd3000000-0xd3ffffff]
    May 11 11:58:32 arch kernel: pci 0000:01:00.0: reg 0x14: [mem 0xa0000000-0xafffffff 64bit pref]
    May 11 11:58:32 arch kernel: pci 0000:01:00.0: reg 0x1c: [mem 0xb0000000-0xb1ffffff 64bit pref]
    May 11 11:58:32 arch kernel: pci 0000:01:00.0: reg 0x24: [io 0x5000-0x507f]
    May 11 11:58:32 arch kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
    May 11 11:58:32 arch kernel: pci 0000:01:00.1: [10de:0e1b] type 00 class 0x040300
    May 11 11:58:32 arch kernel: pci 0000:01:00.1: reg 0x10: [mem 0xd4000000-0xd4003fff]
    May 11 11:58:32 arch kernel: pci 0000:00:01.0: PCI bridge to [bus 01-06]
    May 11 11:58:32 arch kernel: pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
    May 11 11:58:32 arch kernel: pci 0000:00:01.0: bridge window [mem 0xd3000000-0xd4ffffff]
    May 11 11:58:32 arch kernel: pci 0000:00:01.0: bridge window [mem 0xa0000000-0xbfffffff 64bit pref]
    May 11 11:58:32 arch kernel: pci 0000:07:00.0: [10de:0fcd] type 00 class 0x030200
    May 11 11:58:32 arch kernel: pci 0000:07:00.0: reg 0x10: [mem 0xd2000000-0xd2ffffff]
    May 11 11:58:32 arch kernel: pci 0000:07:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
    May 11 11:58:32 arch kernel: pci 0000:07:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    May 11 11:58:32 arch kernel: pci 0000:07:00.0: reg 0x24: [io 0x4000-0x407f]
    May 11 11:58:32 arch kernel: pci 0000:07:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
    May 11 11:58:32 arch kernel: pci 0000:00:01.1: PCI bridge to [bus 07]
    May 11 11:58:32 arch kernel: pci 0000:00:01.1: bridge window [io 0x4000-0x4fff]
    May 11 11:58:32 arch kernel: pci 0000:00:01.1: bridge window [mem 0xd2000000-0xd2ffffff]
    May 11 11:58:32 arch kernel: pci 0000:00:01.1: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    May 11 11:58:32 arch kernel: pci 0000:08:00.0: [1969:10a1] type 00 class 0x020000
    May 11 11:58:32 arch kernel: pci 0000:08:00.0: reg 0x10: [mem 0xd5100000-0xd513ffff 64bit]
    May 11 11:58:32 arch kernel: pci 0000:08:00.0: reg 0x18: [io 0x3000-0x307f]
    May 11 11:58:32 arch kernel: pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    May 11 11:58:32 arch kernel: pci 0000:00:1c.0: PCI bridge to [bus 08]
    May 11 11:58:32 arch kernel: pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    May 11 11:58:32 arch kernel: pci 0000:00:1c.0: bridge window [mem 0xd5100000-0xd51fffff]
    May 11 11:58:32 arch kernel: pci 0000:09:00.0: [8086:0888] type 00 class 0x028000
    May 11 11:58:32 arch kernel: pci 0000:09:00.0: reg 0x10: [mem 0xd5000000-0xd5001fff 64bit]
    May 11 11:58:32 arch kernel: pci 0000:09:00.0: PME# supported from D0 D3hot D3cold
    May 11 11:58:32 arch kernel: pci 0000:00:1c.4: PCI bridge to [bus 09]
    May 11 11:58:32 arch kernel: pci 0000:00:1c.4: bridge window [mem 0xd5000000-0xd50fffff]
    May 11 11:58:32 arch kernel: acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    May 11 11:58:32 arch kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    May 11 11:58:32 arch kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    May 11 11:58:32 arch kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    May 11 11:58:32 arch kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    May 11 11:58:32 arch kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    May 11 11:58:32 arch kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    May 11 11:58:32 arch kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    May 11 11:58:32 arch kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    May 11 11:58:32 arch kernel: ACPI: Enabled 7 GPEs in block 00 to 3F
    May 11 11:58:32 arch kernel: ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    May 11 11:58:32 arch kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    May 11 11:58:32 arch kernel: vgaarb: loaded
    May 11 11:58:32 arch kernel: vgaarb: bridge control possible 0000:01:00.0
    May 11 11:58:32 arch kernel: PCI: Using ACPI for IRQ routing
    May 11 11:58:32 arch kernel: PCI: pci_cache_line_size set to 64 bytes
    May 11 11:58:32 arch kernel: e820: reserve RAM buffer [mem 0x0006f000-0x0006ffff]
    May 11 11:58:32 arch kernel: e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
    May 11 11:58:32 arch kernel: e820: reserve RAM buffer [mem 0x6e6f0000-0x6fffffff]
    May 11 11:58:32 arch kernel: e820: reserve RAM buffer [mem 0x8eebf000-0x8fffffff]
    May 11 11:58:32 arch kernel: e820: reserve RAM buffer [mem 0x8f800000-0x8fffffff]
    May 11 11:58:32 arch kernel: e820: reserve RAM buffer [mem 0x46f000000-0x46fffffff]
    May 11 11:58:32 arch kernel: NetLabel: Initializing
    May 11 11:58:32 arch kernel: NetLabel: domain hash size = 128
    May 11 11:58:32 arch kernel: NetLabel: protocols = UNLABELED CIPSOv4
    May 11 11:58:32 arch kernel: NetLabel: unlabeled traffic allowed by default
    May 11 11:58:32 arch kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    May 11 11:58:32 arch kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    May 11 11:58:32 arch kernel: Switched to clocksource hpet
    May 11 11:58:32 arch kernel: pnp: PnP ACPI init
    May 11 11:58:32 arch kernel: ACPI: bus type PNP registered
    May 11 11:58:32 arch kernel: pnp 00:00: [dma 4]
    May 11 11:58:32 arch kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
    May 11 11:58:32 arch kernel: pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
    May 11 11:58:32 arch kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    May 11 11:58:32 arch kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    May 11 11:58:32 arch kernel: system 00:04: [io 0x0680-0x069f] has been reserved
    May 11 11:58:32 arch kernel: system 00:04: [io 0xffff] has been reserved
    May 11 11:58:32 arch kernel: system 00:04: [io 0xffff] has been reserved
    May 11 11:58:32 arch kernel: system 00:04: [io 0xffff] has been reserved
    May 11 11:58:32 arch kernel: system 00:04: [io 0x0400-0x0453] has been reserved
    May 11 11:58:32 arch kernel: system 00:04: [io 0x0800-0x08fe] has been reserved
    May 11 11:58:32 arch kernel: system 00:04: [io 0x0900-0x09fe] has been reserved
    May 11 11:58:32 arch kernel: system 00:04: [io 0x0a00-0x0afe] has been reserved
    May 11 11:58:32 arch kernel: system 00:04: [io 0x0b00-0x0bfe] has been reserved
    May 11 11:58:32 arch kernel: system 00:04: [io 0x1800-0x18fe] could not be reserved
    May 11 11:58:32 arch kernel: system 00:04: [io 0x164e-0x164f] has been reserved
    May 11 11:58:32 arch kernel: system 00:04: [io 0x0d60-0x0d63] has been reserved
    May 11 11:58:32 arch kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    May 11 11:58:32 arch kernel: system 00:05: [io 0x0800-0x087f] has been reserved
    May 11 11:58:32 arch kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    May 11 11:58:32 arch kernel: pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    May 11 11:58:32 arch kernel: system 00:07: [io 0x1854-0x1857] has been reserved
    May 11 11:58:32 arch kernel: system 00:07: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    May 11 11:58:32 arch kernel: pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active)
    May 11 11:58:32 arch kernel: pnp 00:09: Plug and Play ACPI device, IDs ETD060b PNP0f13 (active)
    May 11 11:58:32 arch kernel: system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
    May 11 11:58:32 arch kernel: system 00:0a: [mem 0xfed10000-0xfed17fff] has been reserved
    May 11 11:58:32 arch kernel: system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
    May 11 11:58:32 arch kernel: system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
    May 11 11:58:32 arch kernel: system 00:0a: [mem 0xe0000000-0xefffffff] has been reserved
    May 11 11:58:32 arch kernel: system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
    May 11 11:58:32 arch kernel: system 00:0a: [mem 0xfed90000-0xfed93fff] has been reserved
    May 11 11:58:32 arch kernel: system 00:0a: [mem 0xff000000-0xffffffff] could not be reserved
    May 11 11:58:32 arch kernel: system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
    May 11 11:58:32 arch kernel: system 00:0a: [mem 0x90020000-0x90020fff] has been reserved
    May 11 11:58:32 arch kernel: system 00:0a: [mem 0x90010000-0x9001ffff] has been reserved
    May 11 11:58:32 arch kernel: system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    May 11 11:58:32 arch kernel: pnp: PnP ACPI: found 11 devices
    May 11 11:58:32 arch kernel: ACPI: bus type PNP unregistered
    May 11 11:58:32 arch kernel: pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
    May 11 11:58:32 arch kernel: pci 0000:07:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
    May 11 11:58:32 arch kernel: pci 0000:01:00.0: BAR 6: assigned [mem 0xb2000000-0xb207ffff pref]
    May 11 11:58:32 arch kernel: pci 0000:00:01.0: PCI bridge to [bus 01-06]
    May 11 11:58:32 arch kernel: pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
    May 11 11:58:32 arch kernel: pci 0000:00:01.0: bridge window [mem 0xd3000000-0xd4ffffff]
    May 11 11:58:32 arch kernel: pci 0000:00:01.0: bridge window [mem 0xa0000000-0xbfffffff 64bit pref]
    May 11 11:58:32 arch kernel: pci 0000:07:00.0: BAR 6: can't assign mem pref (size 0x80000)
    May 11 11:58:32 arch kernel: pci 0000:00:01.1: PCI bridge to [bus 07]
    May 11 11:58:32 arch kernel: pci 0000:00:01.1: bridge window [io 0x4000-0x4fff]
    May 11 11:58:32 arch kernel: pci 0000:00:01.1: bridge window [mem 0xd2000000-0xd2ffffff]
    May 11 11:58:32 arch kernel: pci 0000:00:01.1: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    May 11 11:58:32 arch kernel: pci 0000:00:1c.0: PCI bridge to [bus 08]
    May 11 11:58:32 arch kernel: pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    May 11 11:58:32 arch kernel: pci 0000:00:1c.0: bridge window [mem 0xd5100000-0xd51fffff]
    May 11 11:58:32 arch kernel: pci 0000:00:1c.4: PCI bridge to [bus 09]
    May 11 11:58:32 arch kernel: pci 0000:00:1c.4: bridge window [mem 0xd5000000-0xd50fffff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
    May 11 11:58:32 arch kernel: pci_bus 0000:00: resource 19 [mem 0x90000000-0xfeafffff]
    May 11 11:58:32 arch kernel: pci_bus 0000:01: resource 0 [io 0x5000-0x5fff]
    May 11 11:58:32 arch kernel: pci_bus 0000:01: resource 1 [mem 0xd3000000-0xd4ffffff]
    May 11 11:58:32 arch kernel: pci_bus 0000:01: resource 2 [mem 0xa0000000-0xbfffffff 64bit pref]
    May 11 11:58:32 arch kernel: pci_bus 0000:07: resource 0 [io 0x4000-0x4fff]
    May 11 11:58:32 arch kernel: pci_bus 0000:07: resource 1 [mem 0xd2000000-0xd2ffffff]
    May 11 11:58:32 arch kernel: pci_bus 0000:07: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    May 11 11:58:32 arch kernel: pci_bus 0000:08: resource 0 [io 0x3000-0x3fff]
    May 11 11:58:32 arch kernel: pci_bus 0000:08: resource 1 [mem 0xd5100000-0xd51fffff]
    May 11 11:58:32 arch kernel: pci_bus 0000:09: resource 1 [mem 0xd5000000-0xd50fffff]
    May 11 11:58:32 arch kernel: NET: Registered protocol family 2
    May 11 11:58:32 arch kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    May 11 11:58:32 arch kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    May 11 11:58:32 arch kernel: TCP: Hash tables configured (established 131072 bind 65536)
    May 11 11:58:32 arch kernel: TCP: reno registered
    May 11 11:58:32 arch kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes)
    May 11 11:58:32 arch kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
    May 11 11:58:32 arch kernel: NET: Registered protocol family 1
    May 11 11:58:32 arch kernel: pci 0000:08:00.0: set MSI_INTX_DISABLE_BUG flag
    May 11 11:58:32 arch kernel: PCI: CLS 64 bytes, default 64
    May 11 11:58:32 arch kernel: Unpacking initramfs...
    May 11 11:58:32 arch kernel: Freeing initrd memory: 5020K (ffff880037622000 - ffff880037b09000)
    May 11 11:58:32 arch kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    May 11 11:58:32 arch kernel: software IO TLB [mem 0x8aa68000-0x8ea68000] (64MB) mapped at [ffff88008aa68000-ffff88008ea67fff]
    May 11 11:58:32 arch kernel: Simple Boot Flag at 0x44 set to 0x1
    May 11 11:58:32 arch kernel: RAPL PMU detected, hw unit 2^-14 Joules, API unit is 2^-32 Joules, 3 fixed counters 655360 ms ovfl timer
    May 11 11:58:32 arch kernel: Scanning for low memory corruption every 60 seconds
    May 11 11:58:32 arch kernel: futex hash table entries: 2048 (order: 5, 131072 bytes)
    May 11 11:58:32 arch kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    May 11 11:58:32 arch kernel: zbud: loaded
    May 11 11:58:32 arch kernel: VFS: Disk quotas dquot_6.5.2
    May 11 11:58:32 arch kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    May 11 11:58:32 arch kernel: msgmni has been set to 31994
    May 11 11:58:32 arch kernel: Key type big_key registered
    May 11 11:58:32 arch kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    May 11 11:58:32 arch kernel: io scheduler noop registered
    May 11 11:58:32 arch kernel: io scheduler deadline registered
    May 11 11:58:32 arch kernel: io scheduler cfq registered (default)
    May 11 11:58:32 arch kernel: pcieport 0000:00:01.0: device [8086:0c01] has invalid IRQ; check vendor BIOS
    May 11 11:58:32 arch kernel: pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    May 11 11:58:32 arch kernel: pcieport 0000:00:01.1: device [8086:0c05] has invalid IRQ; check vendor BIOS
    May 11 11:58:32 arch kernel: pcieport 0000:00:01.1: irq 41 for MSI/MSI-X
    May 11 11:58:32 arch kernel: pcieport 0000:00:1c.0: device [8086:8c16] has invalid IRQ; check vendor BIOS
    May 11 11:58:32 arch kernel: pcieport 0000:00:1c.0: irq 42 for MSI/MSI-X
    May 11 11:58:32 arch kernel: pcieport 0000:00:1c.4: device [8086:8c18] has invalid IRQ; check vendor BIOS
    May 11 11:58:32 arch kernel: pcieport 0000:00:1c.4: irq 43 for MSI/MSI-X
    May 11 11:58:32 arch kernel: pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
    May 11 11:58:32 arch kernel: pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
    May 11 11:58:32 arch kernel: pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
    May 11 11:58:32 arch kernel: pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
    May 11 11:58:32 arch kernel: pcieport 0000:00:01.1: Signaling PME through PCIe PME interrupt
    May 11 11:58:32 arch kernel: pci 0000:07:00.0: Signaling PME through PCIe PME interrupt
    May 11 11:58:32 arch kernel: pcie_pme 0000:00:01.1:pcie01: service driver pcie_pme loaded
    May 11 11:58:32 arch kernel: pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    May 11 11:58:32 arch kernel: pci 0000:08:00.0: Signaling PME through PCIe PME interrupt
    May 11 11:58:32 arch kernel: pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    May 11 11:58:32 arch kernel: pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
    May 11 11:58:32 arch kernel: pci 0000:09:00.0: Signaling PME through PCIe PME interrupt
    May 11 11:58:32 arch kernel: pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
    May 11 11:58:32 arch kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    May 11 11:58:32 arch kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    May 11 11:58:32 arch kernel: efifb: probing for efifb
    May 11 11:58:32 arch kernel: efifb: framebuffer at 0xa0000000, mapped to 0xffffc90011c00000, using 8128k, total 8128k
    May 11 11:58:32 arch kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
    May 11 11:58:32 arch kernel: efifb: scrolling: redraw
    May 11 11:58:32 arch kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    May 11 11:58:32 arch kernel: Console: switching to colour frame buffer device 240x67
    May 11 11:58:32 arch kernel: fb0: EFI VGA frame buffer device
    May 11 11:58:32 arch kernel: intel_idle: MWAIT substates: 0x42120
    May 11 11:58:32 arch kernel: intel_idle: v0.4 model 0x3C
    May 11 11:58:32 arch kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
    May 11 11:58:32 arch kernel: GHES: HEST is not enabled!
    May 11 11:58:32 arch kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    May 11 11:58:32 arch kernel: Linux agpgart interface v0.103
    May 11 11:58:32 arch kernel: rtc_cmos 00:06: RTC can wake from S4
    May 11 11:58:32 arch kernel: rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    May 11 11:58:32 arch kernel: rtc_cmos 00:06: alarms up to one month, 242 bytes nvram, hpet irqs
    May 11 11:58:32 arch kernel: Intel P-state driver initializing.
    May 11 11:58:32 arch kernel: Intel pstate controlling: cpu 0
    May 11 11:58:32 arch kernel: Intel pstate controlling: cpu 1
    May 11 11:58:32 arch kernel: Intel pstate controlling: cpu 2
    May 11 11:58:32 arch kernel: Intel pstate controlling: cpu 3
    May 11 11:58:32 arch kernel: Intel pstate controlling: cpu 4
    May 11 11:58:32 arch kernel: Intel pstate controlling: cpu 5
    May 11 11:58:32 arch kernel: Intel pstate controlling: cpu 6
    May 11 11:58:32 arch kernel: Intel pstate controlling: cpu 7
    May 11 11:58:32 arch kernel: ledtrig-cpu: registered to indicate activity on CPUs
    May 11 11:58:32 arch kernel: TCP: cubic registered
    May 11 11:58:32 arch kernel: NET: Registered protocol family 10
    May 11 11:58:32 arch kernel: NET: Registered protocol family 17
    May 11 11:58:32 arch kernel: registered taskstats version 1
    May 11 11:58:32 arch kernel: Magic number: 14:215:980
    May 11 11:58:32 arch kernel: rtc_cmos 00:06: setting system clock to 2014-05-11 09:58:26 UTC (1399802306)
    May 11 11:58:32 arch kernel: PM: Hibernation image not present or could not be loaded.
    May 11 11:58:32 arch kernel: Freeing unused kernel memory: 1120K (ffffffff818d8000 - ffffffff819f0000)
    May 11 11:58:32 arch kernel: Write protecting the kernel read-only data: 8192k
    May 11 11:58:32 arch kernel: Freeing unused kernel memory: 904K (ffff88000251e000 - ffff880002600000)
    May 11 11:58:32 arch kernel: Freeing unused kernel memory: 416K (ffff880002798000 - ffff880002800000)
    May 11 11:58:32 arch kernel: random: systemd-tmpfile urandom read with 1 bits of entropy available
    May 11 11:58:32 arch systemd-udevd[78]: starting version 212
    May 11 11:58:32 arch kernel: [drm] Initialized drm 1.1.0 20060810
    May 11 11:58:32 arch kernel: wmi: Mapper loaded
    May 11 11:58:32 arch kernel: ACPI: Video Device [PEGP] (multi-head: yes rom: yes post: no)
    May 11 11:58:32 arch kernel: acpi device:4e: registered as cooling_device0
    May 11 11:58:32 arch kernel: ACPI Error: [\_SB_.PCI0.LPCB.EC0_.BLVL] Namespace lookup failure, AE_NOT_FOUND (20131218/psargs-359)
    May 11 11:58:32 arch kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PEG0.PEGP.DD01._BQC] (Node ffff88045e068d48), AE_N
    May 11 11:58:32 arch kernel: ACPI Warning: Evaluating _BQC failed (20131218/video-648)
    May 11 11:58:32 arch kernel: tsc: Refined TSC clocksource calibration: 2394.454 MHz
    May 11 11:58:32 arch kernel: ACPI Error: [\_SB_.PCI0.LPCB.EC0_.BLVL] Namespace lookup failure, AE_NOT_FOUND (20131218/psargs-359)
    May 11 11:58:32 arch kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PEG0.PEGP.DD01._BCM] (Node ffff88045e068d70), AE_N
    May 11 11:58:32 arch kernel: ACPI Error: Evaluating _BCM failed (20131218/video-382)
    May 11 11:58:32 arch kernel: ACPI Error: [\_SB_.PCI0.LPCB.EC0_.BLVL] Namespace lookup failure, AE_NOT_FOUND (20131218/psargs-359)
    May 11 11:58:32 arch kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PEG0.PEGP.DD02._BQC] (Node ffff88045e068eb0), AE_N
    May 11 11:58:32 arch kernel: ACPI Warning: Evaluating _BQC failed (20131218/video-648)
    May 11 11:58:32 arch kernel: ACPI Error: [\_SB_.PCI0.LPCB.EC0_.BLVL] Namespace lookup failure, AE_NOT_FOUND (20131218/psargs-359)
    May 11 11:58:32 arch kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PEG0.PEGP.DD02._BCM] (Node ffff88045e068ed8), AE_N
    May 11 11:58:32 arch kernel: ACPI Error: Evaluating _BCM failed (20131218/video-382)
    May 11 11:58:32 arch kernel: Switched to clocksource tsc
    May 11 11:58:32 arch kernel: ACPI Error: [\_SB_.PCI0.LPCB.EC0_.BLVL] Namespace lookup failure, AE_NOT_FOUND (20131218/psargs-359)
    May 11 11:58:32 arch kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PEG0.PEGP.DD03._BQC] (Node ffff88045e06d050), AE_N
    May 11 11:58:32 arch kernel: ACPI Warning: Evaluating _BQC failed (20131218/video-648)
    May 11 11:58:32 arch kernel: ACPI Error: [\_SB_.PCI0.LPCB.EC0_.BLVL] Namespace lookup failure, AE_NOT_FOUND (20131218/psargs-359)
    May 11 11:58:32 arch kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PEG0.PEGP.DD03._BCM] (Node ffff88045e06d078), AE_N
    May 11 11:58:32 arch kernel: ACPI Error: Evaluating _BCM failed (20131218/video-382)
    May 11 11:58:32 arch kernel: ACPI Error: [\_SB_.PCI0.LPCB.EC0_.BLVL] Namespace lookup failure, AE_NOT_FOUND (20131218/psargs-359)
    May 11 11:58:32 arch kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PEG0.PEGP.DD04._BQC] (Node ffff88045e06d1e0), AE_N
    May 11 11:58:32 arch kernel: ACPI Warning: Evaluating _BQC failed (20131218/video-648)
    May 11 11:58:32 arch kernel: ACPI Error: [\_SB_.PCI0.LPCB.EC0_.BLVL] Namespace lookup failure, AE_NOT_FOUND (20131218/psargs-359)
    May 11 11:58:32 arch kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PEG0.PEGP.DD04._BCM] (Node ffff88045e06d208), AE_N
    May 11 11:58:32 arch kernel: ACPI Error: Evaluating _BCM failed (20131218/video-382)
    May 11 11:58:32 arch kernel: ACPI Error: [\_SB_.PCI0.LPCB.EC0_.BLVL] Namespace lookup failure, AE_NOT_FOUND (20131218/psargs-359)
    May 11 11:58:32 arch kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PEG0.PEGP.DD05._BQC] (Node ffff88045e06d370), AE_N
    May 11 11:58:32 arch kernel: ACPI Warning: Evaluating _BQC failed (20131218/video-648)
    May 11 11:58:32 arch kernel: ACPI Error: [\_SB_.PCI0.LPCB.EC0_.BLVL] Namespace lookup failure, AE_NOT_FOUND (20131218/psargs-359)
    May 11 11:58:32 arch kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PEG0.PEGP.DD05._BCM] (Node ffff88045e06d398), AE_N
    May 11 11:58:32 arch kernel: ACPI Error: Evaluating _BCM failed (20131218/video-382)
    May 11 11:58:32 arch kernel: ACPI Error: [\_SB_.PCI0.LPCB.EC0_.BLVL] Namespace lookup failure, AE_NOT_FOUND (20131218/psargs-359)
    May 11 11:58:32 arch kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PEG0.PEGP.DD06._BQC] (Node ffff88045e06d500), AE_N
    May 11 11:58:32 arch kernel: ACPI Warning: Evaluating _BQC failed (20131218/video-648)
    May 11 11:58:32 arch kernel: ACPI Error: [\_SB_.PCI0.LPCB.EC0_.BLVL] Namespace lookup failure, AE_NOT_FOUND (20131218/psargs-359)
    May 11 11:58:32 arch kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PEG0.PEGP.DD06._BCM] (Node ffff88045e06d528), AE_N
    May 11 11:58:32 arch kernel: ACPI Error: Evaluating _BCM failed (20131218/video-382)
    May 11 11:58:32 arch kernel: ACPI Error: [\_SB_.PCI0.LPCB.EC0_.BLVL] Namespace lookup failure, AE_NOT_FOUND (20131218/psargs-359)
    May 11 11:58:32 arch kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PEG0.PEGP.DD07._BQC] (Node ffff88045e06d690), AE_N
    May 11 11:58:32 arch kernel: ACPI Warning: Evaluating _BQC failed (20131218/video-648)
    May 11 11:58:32 arch kernel: ACPI Error: [\_SB_.PCI0.LPCB.EC0_.BLVL] Namespace lookup failure, AE_NOT_FOUND (20131218/psargs-359)
    May 11 11:58:32 arch kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PEG0.PEGP.DD07._BCM] (Node ffff88045e06d6b8), AE_N
    May 11 11:58:32 arch kernel: ACPI Error: Evaluating _BCM failed (20131218/video-382)
    May 11 11:58:32 arch kernel: input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:4d/LNXVIDEO:00/input/input0
    May 11 11:58:32 arch kernel: [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module paramete
    May 11 11:58:32 arch kernel: [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module paramete
    May 11 11:58:32 arch kernel: [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module paramete
    May 11 11:58:32 arch kernel: [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module paramete
    May 11 11:58:32 arch kernel: [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module paramete
    May 11 11:58:32 arch kernel: input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0C:00/input/input1
    May 11 11:58:32 arch kernel: ACPI: Power Button [PWRB]
    May 11 11:58:32 arch kernel: input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0E:00/input/input2
    May 11 11:58:32 arch kernel: ACPI: Sleep Button [SLPB]
    May 11 11:58:32 arch kernel: input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input3
    May 11 11:58:32 arch kernel: ACPI: Lid Switch [LID0]
    May 11 11:58:32 arch kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    May 11 11:58:32 arch kernel: ACPI: Power Button [PWRF]
    May 11 11:58:32 arch kernel: MXM: GUID detected in BIOS
    May 11 11:58:32 arch kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Pack
    May 11 11:58:32 arch kernel: ACPI: \_SB_.PCI0.PEG0.PEGP: failed to evaluate _DSM
    May 11 11:58:32 arch kernel: checking generic (a0000000 7f0000) vs hw (a0000000 10000000)
    May 11 11:58:32 arch kernel: fb: conflicting fb hw usage nouveaufb vs EFI VGA - removing generic driver
    May 11 11:58:32 arch kernel: Console: switching to colour dummy device 80x25
    May 11 11:58:32 arch kernel: nouveau [ DEVICE][0000:01:00.0] BOOT0 : 0x0e70d0a2
    May 11 11:58:32 arch kernel: nouveau [ DEVICE][0000:01:00.0] Chipset: GK107 (NVE7)
    May 11 11:58:32 arch kernel: nouveau [ DEVICE][0000:01:00.0] Family : NVE0
    May 11 11:58:32 arch kernel: nouveau [ VBIOS][0000:01:00.0] checking PRAMIN for image...
    May 11 11:58:32 arch kernel: nouveau [ VBIOS][0000:01:00.0] ... signature not found
    May 11 11:58:32 arch kernel: nouveau [ VBIOS][0000:01:00.0] checking PROM for image...
    May 11 11:58:32 arch kernel: nouveau [ VBIOS][0000:01:00.0] ... signature not found
    May 11 11:58:32 arch kernel: nouveau [ VBIOS][0000:01:00.0] checking ACPI for image...
    May 11 11:58:32 arch kernel: nouveau [ VBIOS][0000:01:00.0] ... signature not found
    May 11 11:58:32 arch kernel: nouveau [ VBIOS][0000:01:00.0] checking PCIROM for image...
    May 11 11:58:32 arch kernel: nouveau 0000:01:00.0: Invalid ROM contents
    May 11 11:58:32 arch kernel: nouveau [ VBIOS][0000:01:00.0] ... signature not found
    May 11 11:58:32 arch kernel: nouveau [ VBIOS][0000:01:00.0] checking PLATFORM for image...
    May 11 11:58:32 arch kernel: nouveau [ VBIOS][0000:01:00.0] ... signature not found
    May 11 11:58:32 arch kernel: nouveau E[ VBIOS][0000:01:00.0] unable to locate usable image
    May 11 11:58:32 arch kernel: nouveau E[ DEVICE][0000:01:00.0] failed to create 0x10000001, -22
    May 11 11:58:32 arch kernel: nouveau E[ DRM] failed to create 0x80000080, -22
    May 11 11:58:32 arch kernel: nouveau: probe of 0000:01:00.0 failed with error -22
    May 11 11:58:32 arch kernel: nouveau 0000:07:00.0: enabling device (0006 -> 0007)
    May 11 11:58:32 arch kernel: [drm] hdmi device not found 7 0 1
    May 11 11:58:32 arch kernel: nouveau [ DEVICE][0000:07:00.0] BOOT0 : 0x0e70d0a2
    May 11 11:58:32 arch kernel: nouveau [ DEVICE][0000:07:00.0] Chipset: GK107 (NVE7)
    May 11 11:58:32 arch kernel: nouveau [ DEVICE][0000:07:00.0] Family : NVE0
    May 11 11:58:32 arch kernel: nouveau [ VBIOS][0000:07:00.0] checking PRAMIN for image...
    May 11 11:58:32 arch kernel: nouveau [ VBIOS][0000:07:00.0] ... signature not found
    May 11 11:58:32 arch kernel: nouveau [ VBIOS][0000:07:00.0] checking PROM for image...
    May 11 11:58:32 arch kernel: nouveau [ VBIOS][0000:07:00.0] ... appears to be valid
    May 11 11:58:32 arch kernel: nouveau [ VBIOS][0000:07:00.0] using image from PROM
    May 11 11:58:32 arch kernel: nouveau [ VBIOS][0000:07:00.0] BIT signature found
    May 11 11:58:32 arch kernel: nouveau [ VBIOS][0000:07:00.0] version 80.07.a8.00.32
    May 11 11:58:32 arch kernel: nouveau [ DEVINIT][0000

  • Problem to connect with BBLink after 10.1.0.4181 OS Update

    Hi everybody,
    I have a little problem since i updated my Z10 with OS 10.1.0.4181
    Phone always works fine but i lost all things inside the phone ( messages, phone nbrs,etc....), but this isn't main problem. Big problem is that my phone can't sync with BBLink and it is not recognized by BBlink.
    Could somebody find an issue or give me THE trick to do, please?
    Thanks in advance for all infos
    PS: Sorry for potentials mistakes, i'm French.

    Hello Lence198,
    Welcome to the BlackBerry Support Community.
    Have you tried reinserting your battery and using different cables?
    If so, the following article may assist your with detecting your BlackBerry Z10 smartphone within the BlackBerry Link on your computer:
    http://www.blackberry.com/btsc/KB33535
    Let us know if this helps.
    Thank you.
    -FB
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click "Accept as a Solution" for posts that have solved your issue(s)!

  • Can somebody solve a problem of jsp with xml

    I have written the following code to generate a web page.
    the application will get some data from a xml file and show it in the web page.
    The problem is it is showing null for all the xml properties.
    When i used the java scriplet as a seperate java file, it seems to be running fine.
    Can somebody help me:-
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
    <%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
    <%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
    <%@ page import="java.io.*" %>
    <%@ page import="java.util.*" %>
    <%@ page import="org.w3c.dom.*" %>
    <%@ page import="org.xml.sax.*" %>
    <%@ page import="javax.xml.transform.TransformerFactory" %>
    <%@ page import="javax.xml.transform.Transformer" %>
    <%@ page import="javax.xml.transform.TransformerException" %>
    <%@ page import="javax.xml.transform.dom.DOMSource" %>
    <%@ page import="javax.xml.transform.stream.StreamResult" %>
    <%@ page import="javax.xml.transform.*" %>
    <%@ page import="javax.xml.parsers.*" %>
    <%@ page import="javax.xml.*" %>
    <%@ page import="javax.xml.transform.stream.StreamSource" %>
    <%!
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    %>
    <html>
    <head>
    <title>Main Page</title>
    <link rel="stylesheet" href="Styles1.css" type="text/css">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body leftmargin="0" topmargin="0">
    <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                   <td>
                        <table width="100%" height="50" border="0" cellspacing="0" cellpadding="0">
                             <tr>
                                  <td>
                                  </td>
                             </tr>
                        </table>
                        <table width="100%" height="17" bgcolor="#FFCC00" border="0" cellspacing="0" cellpadding="6">
                             <tr>
                                  <td>
    <%
    try
    DocumentBuilder builder = factory.newDocumentBuilder();
    System.out.println("Builder: "+builder);
    Document document = builder.parse("config.xml");
    System.out.println("Document: What happened "+document);
    document.getDocumentElement().normalize();
    Node ParentNode = document.getDocumentElement();
    System.out.println("Node: "+ParentNode);
    //NodeList list = document.getElementsByTagName("TimeSheet");
    for(Node child= ParentNode.getFirstChild(); child != null; child = child.getNextSibling())
    try{
    if(child.getNodeType()==Node.ELEMENT_NODE)
    String Vals = child.getFirstChild().getNodeValue().toString();
    System.out.println("Hi: "+Vals);
    %>
                                  <%=Vals%> |
    <%
    catch (NullPointerException nex)
    System.out.println("Null Exception : "+nex);
    catch (Exception ex)
    System.out.println("Exception : "+ex);
    %> <a href="Log-out |
                                  </td>
                             </tr>
                        </table>
                        </td>
              </tr>
         </table>
    </body>
    </html>
    I wil be thankful for that
    Ottran

    Hi can anyone solve the above problem

  • Problem with battery after switching to SSD drive

    HI
    (macbook pro late 2011 13 inch, 2.7 Mhz, 8 Giga ram OS Yosemite)
    I have replaced my hard drive to a new SSD drive (Samsung 850EVO 500 GB).
    Before that my battery worked wonderfully- when fully charged I could work normally (Wifi and "normal" use) for 4-6 hours.
    Immediately after replacing I can "squeeze" at most only 3-4 hours of working.
    Any one has encountered similar problem? what did I do wrong? I must say I did this upgrade for my brother's computer, exactly the same computer and he has the same problem but even worst.  
    (I ran a test with iStat pro and got "85% health battery"). 
    Thanks for the help!
    Dror

    I don't see a new topic link anywhere so please forgive me.
    I just got my mac today and ive searched through the forums and typed in advanced searches and I cannot seem to find a answer. I cant even register my mini because something is wrong with the serial number I been on the internet and usually when i'd get done for the day on the internet I would do a disk clean up and defrag my pc. My question is there any way I can do a disk clean up and defrag on a mac? Please help
    Oh and I have another question. I read about some kinda feature that allows me to use my mac mini to share a internet connection with a another computer. But im not too sure if they were just talking about a network or whatever. But could I do so if I wanted to connect a ps3 to my mini with a ethernet cord and use the mini's wifi feature to share the internet?

  • [Solved] Several problems after switch to systemd

    After many issues with today's update (like broken locale, broken suspend2ram, broken shutdown/restart, broken autologin, broken CPU clocking, broken fan control and broken wicd) I'm stuck with three of them, the most important being wicd.
    Autologin is working now and after login I have to enter a password for wicd (which was not the case before the update). After entering the password I get the dbus connection error: https://wiki.archlinux.org/index.php/wi … or_message If I kill wicd (which is runnig directly after boot, but not running properly), starting and stopping and starting again with systemctl works fine. But the autostart mostly fails for some reason (in rare cases it works though). I'm quite new to systemd and don't even know hot to open the new journal in a proper editor to search for errors efficiently.
    The second thing is that the locale is being reset to C or POSIX I suppose, at least it's not German as it should be and also is set in /etc/locale.conf.
    The third thing is that the Thinkpad fan control fails to start, too. I created a .conf file to load the thinkpad_acpi module which seems to work. If I start /usr/sbin/tpfand manually, the fan control works. But here also the autostart fails.
    Sorry for the confused description containing about nothing on error or debug information, but I don't really know where to start digging and get useful information about systemd.
    Thanks for any hint,
    PhotonX
    Last edited by PhotonX (2012-09-02 10:21:10)

    Aw, I think that's something I should be able to think of.
    Here is the log, but the last piece is just trying to fix things:
    [2012-08-27 14:25] synchronizing package lists
    [2012-08-27 14:26] Running 'pacman -S core/wireless_tools core/initscripts core/hwids core/libgssglue extra/xorg-server extra/xorg-server-common extra/xf86-video-intel extra/xorg-server-devel'
    [2012-08-27 14:26] upgraded wireless_tools (29-6 -> 29-7)
    [2012-08-27 14:26] upgraded initscripts (2012.08.2-1 -> 2012.08.3-1)
    [2012-08-27 14:26] upgraded hwids (20120730-1 -> 20120815-1)
    [2012-08-27 14:26] upgraded libgssglue (0.3-1 -> 0.4-1)
    [2012-08-27 14:26] upgraded xorg-server-common (1.12.3.901-1 -> 1.12.4-1)
    [2012-08-27 14:26] upgraded xorg-server (1.12.3.901-1 -> 1.12.4-1)
    [2012-08-27 14:26] upgraded xf86-video-intel (2.20.4-1 -> 2.20.5-1)
    [2012-08-27 14:26] upgraded xorg-server-devel (1.12.3.901-1 -> 1.12.4-1)
    [2012-08-27 14:27] Running 'pacman -U /tmp/yaourt-tmp-photon/PKGDEST.SLU/orta-gtk-theme-1.4.1-8-any.pkg.tar.xz'
    [2012-08-27 14:27] ==> to install chrom(e/ium) themes, just run
    [2012-08-27 14:27] orta-install-chrome-themes
    [2012-08-27 14:27]
    [2012-08-27 14:27] or to remove
    [2012-08-27 14:27] orta-install-chrome-themes --remove
    [2012-08-27 14:27]
    [2012-08-27 14:27] upgraded orta-gtk-theme (1.4.1-7 -> 1.4.1-8)
    [2012-08-29 13:32] Running 'pacman -Syy'
    [2012-08-29 13:32] synchronizing package lists
    [2012-08-29 13:33] Running 'pacman -S -u'
    [2012-08-29 13:33] starting full system upgrade
    [2012-08-29 13:34] upgraded ethtool (1:3.4-1 -> 1:3.5-1)
    [2012-08-29 13:34] upgraded firefox (14.0.1-1 -> 15.0-1)
    [2012-08-29 13:35] upgraded firefox-i18n-de (14.0.1-1 -> 15.0-1)
    [2012-08-29 13:35] upgraded gc (7.2-1 -> 7.2.d-1)
    [2012-08-29 13:35] upgraded hspell (1.1-2 -> 1.2-1)
    [2012-08-29 13:35] upgraded libatasmart (0.18-2 -> 0.19-1)
    [2012-08-29 13:35] upgraded libwbclient (3.6.7-1 -> 3.6.7-2)
    [2012-08-29 13:35] >>> Updating module dependencies. Please wait ...
    [2012-08-29 13:35] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2012-08-29 13:35] ==> Building image from preset: 'default'
    [2012-08-29 13:35] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2012-08-29 13:35] ==> Starting build: 3.5.3-1-ARCH
    [2012-08-29 13:35] -> Running build hook: [base]
    [2012-08-29 13:35] -> Running build hook: [udev]
    [2012-08-29 13:35] -> Running build hook: [autodetect]
    [2012-08-29 13:35] -> Running build hook: [pata]
    [2012-08-29 13:35] -> Running build hook: [scsi]
    [2012-08-29 13:35] -> Running build hook: [sata]
    [2012-08-29 13:35] -> Running build hook: [filesystems]
    [2012-08-29 13:35] -> Running build hook: [usbinput]
    [2012-08-29 13:35] -> Running build hook: [fsck]
    [2012-08-29 13:35] ==> Generating module dependencies
    [2012-08-29 13:35] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2012-08-29 13:35] ==> Image generation successful
    [2012-08-29 13:35] ==> Building image from preset: 'fallback'
    [2012-08-29 13:35] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2012-08-29 13:35] ==> Starting build: 3.5.3-1-ARCH
    [2012-08-29 13:35] -> Running build hook: [base]
    [2012-08-29 13:35] -> Running build hook: [udev]
    [2012-08-29 13:35] -> Running build hook: [pata]
    [2012-08-29 13:35] -> Running build hook: [scsi]
    [2012-08-29 13:35] -> Running build hook: [sata]
    [2012-08-29 13:35] -> Running build hook: [filesystems]
    [2012-08-29 13:35] -> Running build hook: [usbinput]
    [2012-08-29 13:35] -> Running build hook: [fsck]
    [2012-08-29 13:35] ==> Generating module dependencies
    [2012-08-29 13:35] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2012-08-29 13:36] ==> Image generation successful
    [2012-08-29 13:36] upgraded linux (3.4.9-1 -> 3.5.3-1)
    [2012-08-29 13:36] upgraded linux-headers (3.4.9-1 -> 3.5.3-1)
    [2012-08-29 13:36] upgraded lirc-utils (1:0.9.0-22 -> 1:0.9.0-26)
    [2012-08-29 13:36] upgraded sane (1.0.22-9 -> 1.0.23-1)
    [2012-08-29 13:36] upgraded smbclient (3.6.7-1 -> 3.6.7-2)
    [2012-08-29 13:36] upgraded syslinux (4.05-6 -> 4.05-7)
    [2012-08-29 13:37] upgraded tp_smapi (0.41-3 -> 0.41-5)
    [2012-08-29 13:37] upgraded udisks (1.0.4-4 -> 1.0.4-5)
    [2012-08-29 13:58] Running 'pacman -S --asdeps --needed extra/python-gobject'
    [2012-08-29 13:58] installed python-cairo (1.10.0-1)
    [2012-08-29 13:58] installed python-gobject (3.2.2-1)
    [2012-08-29 13:59] Running 'pacman -U /tmp/yaourt-tmp-photon/PKGDEST.WKI/orta-gtk-theme-1.4.1-9.2.1-any.pkg.tar.xz'
    [2012-08-29 13:59] ==> to install chrom(e/ium) themes, just run
    [2012-08-29 13:59] orta-install-chrome-themes
    [2012-08-29 13:59]
    [2012-08-29 13:59] or to remove
    [2012-08-29 13:59] orta-install-chrome-themes --remove
    [2012-08-29 13:59]
    [2012-08-29 13:59] upgraded orta-gtk-theme (1.4.1-8 -> 1.4.1-9.2.1)
    [2012-08-29 14:00] Running 'pacman -U /tmp/yaourt-tmp-photon/PKGDEST.u1D/xfce4-places-plugin-1.4.0-1-i686.pkg.tar.xz'
    [2012-08-29 14:00] upgraded xfce4-places-plugin (1.3.0-3 -> 1.4.0-1)
    [2012-08-29 14:20] Running 'pacman -S community/python2-configglue'
    [2012-08-29 14:20] installed python2-configglue (1.0.3-1)
    [2012-08-29 14:21] Running 'pacman -R python2-configparser'
    [2012-08-29 14:21] Running 'pacman -R python2-configglue'
    [2012-08-29 14:21] removed python2-configglue (1.0.3-1)
    [2012-08-29 16:58] Running 'pacman -S community/mupdf'
    [2012-08-29 16:59] installed jbig2dec (0.11-5)
    [2012-08-29 16:59] installed mupdf (1.1-1)
    [2012-08-31 13:11] Running 'pacman -Sy'
    [2012-08-31 13:11] synchronizing package lists
    [2012-08-31 13:12] Running 'pacman -S -u'
    [2012-08-31 13:12] starting full system upgrade
    [2012-08-31 13:15] Running 'pacman -Sy'
    [2012-08-31 13:15] synchronizing package lists
    [2012-08-31 13:15] Running 'pacman -S -u'
    [2012-08-31 13:15] starting full system upgrade
    [2012-08-31 13:17] removed libsystemd (188-2)
    [2012-08-31 13:17] removed systemd-tools (188-2)
    [2012-08-31 13:17] Generating locales...
    [2012-08-31 13:17] de_DE.UTF-8... done
    [2012-08-31 13:17] en_US.UTF-8... done
    [2012-08-31 13:17] ru_RU.UTF-8... done
    [2012-08-31 13:17] Generation complete.
    [2012-08-31 13:17] upgraded glibc (2.16.0-3 -> 2.16.0-4)
    [2012-08-31 13:17] upgraded libdrm (2.4.38-1 -> 2.4.39-1)
    [2012-08-31 13:17] upgraded libglapi (8.0.4-2 -> 8.0.4-3)
    [2012-08-31 13:18] upgraded libgl (8.0.4-2 -> 8.0.4-3)
    [2012-08-31 13:18] upgraded ati-dri (8.0.4-2 -> 8.0.4-3)
    [2012-08-31 13:18] upgraded cracklib (2.8.18-2 -> 2.8.19-1)
    [2012-08-31 13:18] error: problem occurred while upgrading filesystem
    [2012-08-31 13:18] upgraded filesystem (2012.7-1 -> 2012.8-1)
    [2012-08-31 13:19] Running 'pacman -Sy'
    [2012-08-31 13:19] synchronizing package lists
    [2012-08-31 13:19] Running 'pacman -S -u'
    [2012-08-31 13:19] starting full system upgrade
    [2012-08-31 13:20] upgraded gdk-pixbuf2 (2.26.2-1 -> 2.26.3-1)
    [2012-08-31 13:20] upgraded gnutls (3.0.22-1 -> 3.1.0-1)
    [2012-08-31 13:21] upgraded hedgewars (0.9.17-3 -> 0.9.17-4)
    [2012-08-31 13:21] upgraded imagemagick (6.7.8.9-1 -> 6.7.9.2-1)
    [2012-08-31 13:21] ln -s '/usr/lib/systemd/system/[email protected]' '/etc/systemd/system/getty.target.wants/[email protected]'
    [2012-08-31 13:21] :: Append 'init=/bin/systemd' to your kernel command line in your
    [2012-08-31 13:21] bootloader to replace sysvinit with systemd
    [2012-08-31 13:21] installed systemd (189-3)
    [2012-08-31 13:21] upgraded initscripts (2012.08.3-1 -> 2012.08.3-2)
    [2012-08-31 13:21] upgraded intel-dri (8.0.4-2 -> 8.0.4-3)
    [2012-08-31 13:21] upgraded libwebkit (1.8.2-1 -> 1.8.3-1)
    [2012-08-31 13:21] upgraded mesa (8.0.4-2 -> 8.0.4-3)
    [2012-08-31 13:21] upgraded pkg-config (0.27-1 -> 0.27.1-1)
    [2012-08-31 13:21] upgraded svga-dri (8.0.4-2 -> 8.0.4-3)
    [2012-08-31 13:21] upgraded unetbootin (578-1 -> 581-1)
    [2012-08-31 13:22] Running 'pacman -Sy'
    [2012-08-31 13:22] synchronizing package lists
    [2012-08-31 13:24] Running 'pacman -Syu'
    [2012-08-31 13:24] synchronizing package lists
    [2012-08-31 13:42] Running 'pacman -U /tmp/yaourt-tmp-photon/PKGDEST.K4x/jre-7.7-1-i686.pkg.tar.xz'
    [2012-08-31 13:44] upgraded jre (7.6-1 -> 7.7-1)
    [2012-08-31 13:44] Running 'pacman -U /tmp/yaourt-tmp-photon/PKGDEST.OwW/orta-gtk-theme-1.4.1-9.4-any.pkg.tar.xz'
    [2012-08-31 13:44] ==> to install chrom(e/ium) themes, just run
    [2012-08-31 13:44] orta-install-chrome-themes
    [2012-08-31 13:44]
    [2012-08-31 13:44] or to remove
    [2012-08-31 13:44] orta-install-chrome-themes --remove
    [2012-08-31 13:44]
    [2012-08-31 13:44] upgraded orta-gtk-theme (1.4.1-9.2.1 -> 1.4.1-9.4)
    [2012-08-31 14:08] Running 'pacman -Sy'
    [2012-08-31 14:08] synchronizing package lists
    [2012-08-31 15:29] Running 'pacman -U libsystemd-188-2-i686.pkg.tar.xz systemd-tools-188-2-i686.pkg.tar.xz'
    [2012-08-31 15:29] removed systemd (189-3)
    [2012-08-31 15:29] installed libsystemd (188-2)
    [2012-08-31 15:29] installed systemd-tools (188-2)
    [2012-08-31 15:35] Running 'pacman -U initscripts-2012.08.3-1-any.pkg.tar.xz'
    [2012-08-31 15:35] upgraded initscripts (2012.08.3-2 -> 2012.08.3-1)
    [2012-08-31 15:40] Running 'pacman -U wireless_tools-29-6-i686.pkg.tar.xz initscripts-2012.08.2-1-any.pkg.tar.xz'
    [2012-08-31 15:40] upgraded wireless_tools (29-7 -> 29-6)
    [2012-08-31 15:40] upgraded initscripts (2012.08.3-1 -> 2012.08.2-1)
    [2012-08-31 15:46] Running 'pacman -U ethtool-1:3.4-1-i686.pkg.tar.xz'
    [2012-08-31 15:46] upgraded ethtool (1:3.5-1 -> 1:3.4-1)
    [2012-08-31 15:47] Running 'pacman -U syslinux-4.05-6-i686.pkg.tar.xz linux-3.4.9-1-i686.pkg.tar.xz linux-headers-3.4.9-1-i686.pkg.tar.xz'
    [2012-08-31 15:49] Running 'pacman -U syslinux-4.05-6-i686.pkg.tar.xz'
    [2012-08-31 15:49] upgraded syslinux (4.05-7 -> 4.05-6)
    [2012-08-31 21:53] Running 'pacman -U filesystem-2012.7-1-any.pkg.tar.xz'
    [2012-08-31 21:53] error: problem occurred while upgrading filesystem
    [2012-08-31 21:53] upgraded filesystem (2012.8-1 -> 2012.7-1)
    [2012-08-31 21:53] Running 'pacman -U filesystem-2012.7-1-any.pkg.tar.xz'
    [2012-08-31 21:53] error: problem occurred while upgrading filesystem
    [2012-08-31 21:53] upgraded filesystem (2012.7-1 -> 2012.7-1)
    [2012-08-31 21:55] Running 'pacman -U filesystem-2012.7-1-any.pkg.tar.xz'
    [2012-08-31 21:55] upgraded filesystem (2012.7-1 -> 2012.7-1)
    [2012-08-31 21:57] Running 'pacman -Sy'
    [2012-08-31 21:57] synchronizing package lists
    [2012-08-31 21:59] Running 'pacman -S extra/ethtool'
    [2012-08-31 21:59] upgraded ethtool (1:3.4-1 -> 1:3.5-1)
    [2012-08-31 21:13] Running 'pacman -S core/systemd-sysvcompat'
    [2012-08-31 21:13] Running 'pacman -S core/systemd'
    [2012-08-31 21:14] removed libsystemd (188-2)
    [2012-08-31 21:14] removed systemd-tools (188-2)
    [2012-08-31 21:14] :: Append 'init=/bin/systemd' to your kernel command line in your
    [2012-08-31 21:14] bootloader to replace sysvinit with systemd
    [2012-08-31 21:14] installed systemd (189-3)
    [2012-08-31 21:15] Running 'pacman -S community/systemd-arch-units'
    [2012-08-31 21:15] installed systemd-arch-units (20120704-5)
    [2012-08-31 21:24] Running 'pacman -S core/initscripts'
    [2012-08-31 21:25] upgraded initscripts (2012.08.2-1 -> 2012.08.3-2)
    [2012-08-31 22:28] Running 'pacman -Sy'
    [2012-08-31 22:28] synchronizing package lists
    [2012-08-31 22:29] Running 'pacman -S core/syslinux'
    [2012-08-31 22:29] upgraded syslinux (4.05-6 -> 4.05-7)
    [2012-08-31 22:31] Running 'pacman -Sy'
    [2012-08-31 22:31] synchronizing package lists
    [2012-08-31 22:31] Running 'pacman -S core/wireless_tools'
    [2012-08-31 22:31] upgraded wireless_tools (29-6 -> 29-7)
    [2012-08-31 22:33] Running 'pacman -Sy'
    [2012-08-31 22:33] synchronizing package lists
    [2012-08-31 22:34] Running 'pacman -S -u'
    [2012-08-31 22:34] starting full system upgrade
    [2012-08-31 22:34] upgraded filesystem (2012.7-1 -> 2012.8-1)
    [2012-08-31 22:37] Running 'pacman -S core/systemd-sysvcompat'
    [2012-08-31 22:37] Running 'pacman -R initscripts sysvinit'
    [2012-08-31 22:37] warning: /etc/rc.conf saved as /etc/rc.conf.pacsave
    [2012-08-31 22:37] warning: /etc/inittab saved as /etc/inittab.pacsave
    [2012-08-31 22:37] removed initscripts (2012.08.3-2)
    [2012-08-31 22:37] removed sysvinit (2.88-6)
    [2012-08-31 22:37] Running 'pacman -S core/systemd-sysvcompat'
    [2012-08-31 22:37] installed systemd-sysvcompat (189-3)
    [2012-08-31 23:09] Running 'pacman -R wicd'
    [2012-08-31 23:09] Running 'pacman -R wicd wicd-gtk'
    [2012-08-31 23:09] removed wicd-gtk (1.7.2.4-3)
    [2012-08-31 23:09] removed wicd (1.7.2.4-3)
    [2012-08-31 23:10] Running 'pacman -S extra/wicd-gtk'
    [2012-08-31 23:10]
    [2012-08-31 23:10] ==> You need to restart the dbus service after
    [2012-08-31 23:10] ==> upgrading wicd.
    [2012-08-31 23:10] ==> Disable networkmanager,dhcdbd or other networking
    [2012-08-31 23:10] ==> utility and add 'wicd' to DAEMONS
    [2012-08-31 23:10] ==> in /etc/rc.conf
    [2012-08-31 23:10] ==> 'dbus' HAS to be before 'wicd' in rc.conf in the
    [2012-08-31 23:10] ==> DAEMONS array.
    [2012-08-31 23:10] ==> Wireless Interface Connection Daemon
    [2012-08-31 23:10]
    [2012-08-31 23:10] ==> To run: wicd-cli or wicd-curses
    [2012-08-31 23:10] installed wicd (1.7.2.4-3)
    [2012-08-31 23:10]
    [2012-08-31 23:10] ==> You need to restart the dbus service after
    [2012-08-31 23:10] ==> upgrading wicd.
    [2012-08-31 23:10] ==> Disable networkmanager,dhcdbd or other networking
    [2012-08-31 23:10] ==> utility and add 'wicd' to DAEMONS
    [2012-08-31 23:10] ==> in /etc/rc.conf
    [2012-08-31 23:10] ==> 'dbus' HAS to be before 'wicd' in rc.conf in the
    [2012-08-31 23:10] ==> DAEMONS array.
    [2012-08-31 23:10] ==> Wireless Interface Connection Daemon
    [2012-08-31 23:10]
    [2012-08-31 23:10] ==> To run: wicd-cli or wicd-curses
    [2012-08-31 23:10] installed wicd-gtk (1.7.2.4-3)

Maybe you are looking for

  • Help me choose a motherboard [please]!

    Hi, I live in Canada and would like to buy a motherboard from MSI. I just want someone to direct me to the least expensive motherboard that has a socket for the E6300 Core 2 Duo CPU, 4 slots for DDR2 RAM, SATA and PATA compatibility, PCI Express 16x

  • How to do Printing in Java Web Dynpro?

    Hi, I have displayed a window in Java Web Dynro of some user data. And I want to add a Print button so that the user can print the information. I do not want to use Adobe PDF for such printing. Can I achieve what I want through coding in Java in Web

  • Marketing forecast Report

    Hi All, Does anybody know of any marketing forecast standard reports that might be out there? thanks Teku

  • Change invoice status on old sales order?

    Hi, We are trying to archive old sales order but we got problem with some old sales orders. The sales orders aren't invoiced (for different reasons) so we can't archive them (Overall status: Being processed). Since the sale orders are very old we don

  • Required BADI to add custom fields in the Basic Data screen in MM01

    Hi,       I got a requirement like this. I have to add 3 custom fields and one button in the standard transaction i.e., MM01, MM02, MM03. There is one field like producu heirarchy in the Basic Data in that field i will enter some values i want to dis