EXT4 errors while mounting a USB in initramfs on a specific computer

Hi,
I'm having trouble booting a newly installed Archlinux on a USB key on an old HP Compaq computer.
I am getting EXT4 errors in the regular initramfs, but they blink really fast on the screen so I can't read them properly.
It boots fine with the fallback initramfs, and dmesg shows that there are no problems while mounting.
The system boots without any problem on both initramfs with QEMU on my Windows.
My mkinitcpio.conf :
# vim:set ft=sh
# MODULES
# The following modules are loaded before any boot hooks are
# run. Advanced users may wish to specify all system modules
# in this array. For instance:
# MODULES="piix ide_disk reiserfs"
MODULES=""
# BINARIES
# This setting includes any additional binaries a given user may
# wish into the CPIO image. This is run last, so it may be used to
# override the actual binaries included by a given hook
# BINARIES are dependency parsed, so you may safely ignore libraries
BINARIES=""
# FILES
# This setting is similar to BINARIES above, however, files are added
# as-is and are not parsed in any way. This is useful for config files.
FILES=""
# HOOKS
# This is the most important setting in this file. The HOOKS control the
# modules and scripts added to the image, and what happens at boot time.
# Order is important, and it is recommended that you do not change the
# order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
# help on a given hook.
# 'base' is _required_ unless you know precisely what you are doing.
# 'udev' is _required_ in order to automatically load modules
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
# Examples:
## This setup specifies all modules in the MODULES setting above.
## No raid, lvm2, or encrypted root is needed.
# HOOKS="base"
## This setup will autodetect all modules for your system and should
## work as a sane default
# HOOKS="base udev autodetect block filesystems"
## This setup will generate a 'full' image which supports most systems.
## No autodetection is done.
# HOOKS="base udev block filesystems"
## This setup assembles a pata mdadm array with an encrypted root FS.
## Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
# HOOKS="base udev block mdadm encrypt filesystems"
## This setup loads an lvm2 volume group on a usb device.
# HOOKS="base udev block lvm2 filesystems"
## NOTE: If you have /usr on a separate partition, you MUST include the
# usr, fsck and shutdown hooks.
HOOKS="base udev autodetect modconf block filesystems fsck keyboard"
# COMPRESSION
# Use this to compress the initramfs image. By default, gzip compression
# is used. Use 'cat' to create an uncompressed image.
#COMPRESSION="gzip"
#COMPRESSION="bzip2"
#COMPRESSION="lzma"
#COMPRESSION="xz"
#COMPRESSION="lzop"
#COMPRESSION="lz4"
# COMPRESSION_OPTIONS
# Additional options for the compressor
#COMPRESSION_OPTIONS=""
I'm really puzzled about this, since I initially thought that the HP Compaq simply had problems with my USB key, but since it boots fine with the fallback initramfs, I think that it is the initramfs' fault, but it is the default one, so I currently have no clues about this.
I've also checked the USB key multiple times with fsck, and that doesn't seem to be the cause of the problem.

The thing is, the block module and the filesystem module are both loaded in my regular initramfs, and the presence of ext4 errors while mounting my USB key (it uses ext4) signifies that the system is actually using the right tool to do what it's supposed to.
The system has been installed via VirtualBox so the autodetect module may have messed things up. Going to recreate an initramfs image without it.
EDIT : It worked, sorry for bothering you guys, I could've found it sooner.
Anyway, as a note for others, if you plan on installing on a USB key to use it on other computers, remove the autodetect module from the initramfs, otherwise the required modules won't always be there.
Last edited by FreeSalad (2014-03-10 15:56:22)

Similar Messages

  • Error while mounting Standby database

    Hi all,
    I am getting ORA-01102: cannot mount database in EXCLUSIVE mode error when truying to mount the standby database.
    SQL>alter database mount standby database ;
    If anyone faced the same issue please guide me.
    Thanks and Regards
    Salih KM

    This is script for Standby..
    Primary Server Configuration
    1.In the TNSNAMES.ORA of Primary DB add the entry of the Standby DB
    IRCSSTDB(This is the service name in Primary DB to connect to Standby DB) =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = IRDBACK)(PORT = 1512))
    (CONNECT_DATA =
    (SERVICE_NAME = IRCS(This is the actual INSTANCE name of Running DB on Standby DB)
    2. There is no need to Make any Changes in the Listener.ora of PRIMARY DB
    Keep LISTENER.ORA of Primary as it is
    Copy Listener.ora from Primary DB to Standby DB and make following changes
    Delete All the Extra Existing listeners.
    (These Updations are for the STANDBY DB)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = IRDBACK)(PORT = 1521))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /ora01/app/oracle/product/9.2.0)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = IRCS)
    (ORACLE_HOME = /ora01/app/oracle/product/9.2.0))
    3.In the INIT.ORA of Primary DB add Following…
    log_archive_dest_2 = "service=STBY optional/Mandatory scope=BOTH"
    log_archive_dest_2 = Enable
    log_archive_min_succeed_dest = 2
    We can add this Dynamically with the SQL*PLUS..
    Standby DB Server Configuration
    1.In the TNSNAMES.ORA of Standby DB add the entry of the Primary DB
    primary1(ISSL)(This is the service name in Standby DB to connect to Primary DB)=
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp) (PORT=1521) (HOST=PRIMARY MACHINE NAME))
    (CONNECT_DATA=(SERVICE_NAME=IRCS(This is the actual INSTANCE name of Running DB on Primary DB)
    2.Copy Listener.ora from Primary DB to Standby DB and make following changes
    Same as Above
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = IRDBACK)(PORT = 1521))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /ora01/app/oracle/product/9.2.0)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = IRCS)
    (ORACLE_HOME = /ora01/app/oracle/product/9.2.0))
    3. Connect to Idle instance..
    1.C:\ oradim –NEW –SID ircs –INTPWD pwdfilename –STARTMODE auto –pfile E:\oracle\oradata\pfile\init.ora
    2.     C:\ set oracle_sid=IRCS
    3.     C:\ sqlplus /nolog
    4.     SQL:>connect sys/ircl as SYSDBA
    5.     SQL:>startup nomount pfile= E:\oracle\oradata\pfile\init.ora
    6.     SQL:> alter database mount standby database;
    7. SQL :> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE;
    4. we can also add these parameter in INIT.ORA of Standby DB
    1.standby_archive_dest= /u00/app/oracle/admin/sec/arch (Same path as in
    (log_archive_dest_1) in init.ora
    2. Fal_client=standby1 (Service Name)
    3. Fal_server=primary1 (Service Name)
    Troubleshooting….
    1. Check Init.ora of Primary DB
    2. Try to open Standby Database in normal mode try to connect it with normal user from different Machine.
    3.check *.logs file on Standby Database
    4.Check v$archive_dest on Primary DB
    5. lsnrctl services <listener name>….For Checking Listener, for service

  • Script error while mounting Portal Drive

    Hello All!
    There is a command in KM navigation iViews which can be used to mount the Portal Drive to the chosen folder. This command lets you download a file named .davmount and if you open it, Portal Drive connects automatically to this folder. Now the problem:
    As I open this file, a standard windows message box opens and tells me:"Für die Dateierweiterung '.js' gibt es kein Skriptmodul". I don't know exactly what message would be in english, but it should be something like "There is no script module for file extention '.js'". Well, if I now install the Windows Scripting Host, everything works. Until I reboot my computer. After rebooting I get the same error. Now i can install WSH again and it works, butI don't want to install WSH everytime. Well, not rebooting the computer is also not the solution I'm looking for
    It seems that this problem regards rather Windows/Mircosoft than KM, but perhaps is anybody out there, experiencing the same problem or having a suggestion to solve this issue.
    Best regards and thanks for help,
    Christian

    I found a solution. In the Windows Explorer, I changed in "Extras" -> "Ordneroptionen" (Folderoptions?) -> "Dateitypen" (Fileextensions?) -> DAVMOUNT the call for the Application from wscript "C:\Programme\SAP\PortalDrive\davmount.js" "%1" to wscript.exe //E:jscript "C:\Programme\SAP\PortalDrive\davmount.js" "%1" and now it works. I hope this can help everybody with similar Problems.
    Regards Christian

  • Install RAC:ORA-15063 error while mount diskgroup

    I have two nodes(linux1,linux2),but when I run DBCA on the computer of linux2 to create database,occur ORA-15063 error ,the detail information:
    could not mount the diskgroup on remote node linux1 using connection service linux1:21521+ASM1.Ensure that the listener is running on this node and the asm istance is registered to the listener.receive follow errors:
    ORA-15032:NOT ALL ALTERATION PERFORMED
    ORA-15063:ASM DISCOVERED ON INSUFFICIENT NUMBER OF DISK FOR DISKGROUP "ORCL_DATA1"
    who can help me!!!
    thanks in advance;

    there are the two file of the config:
    /u01/app/oracle/product/10.2.0/db_1/dbs/init+ASM1.ora
    SPFILE='/u02/oradata/orcl/dbs/spfile+ASM.ora'
    /u02/oradata/orcl/dbs/spfile+ASM.ora
    .asm_diskgroups=''
    +ASM1.asm_diskgroups='ORCL_DATA1'#Manual Mount
    .asm_diskstring='ORCL:VOL*'
    .background_dump_dest='/u01/app/oracle/admin/+ASM/bdump'
    *.cluster_database=true
    *.core_dump_dest='/u01/app/oracle/admin/+ASM/cdump'
    +ASM1.instance_number=1
    +ASM2.instance_number=2
    *.instance_type='asm'
    *.large_pool_size=12M
    *.remote_login_passwordfile='exclusive'
    *.user_dump_dest='/u01/app/oracle/admin/+ASM/udump'

  • Error while transporting modification in module pool of a specific infotype

    HI experts,
    While transporting some modifications that have be done on the PAI of a module pool of a specific infotype, we have an error with code return = 8, the error is --> Original object R3TRPROGMP900730 must not be changed!!!
    Any suggestion .
    Tanhks a lot .

    Hi ,
    Nice to know that your problem is solved. If any of the replies were usefull please acknowledge their work.
    And it would be great if you can just put in your remarks about the best  solution you had in solving that problem.
    It might be useful to other users when they encoutner such problem.
    BR,
    Vijay.

  • Error while processing the dimension

    Multiple Specification of the Name 'HIR' as a Component Name (Component 6)
    this is the error i am geting while processing the dimension

    Hi,
    Do you get this error while processing all the dimension or only in specific dimension?
    Do you have hierarchies in this dimension? Have you added the hierarchy in the property (you should not).

  • USB error while booting

    I'm getting this error while booting:
    Waiting for UDev uevents to be processed
    [ 3.631701] usb 1-1.1: unable to read config index 0 descriptor/all
    [ 3.631811] usb 1-1.1: can't read configurations, error -32
    [ 3.643141] hub 1-1:1.0: unable to enumerate USB device on port 1
    I saw other thread in this forum but i can't find any solutions because I have no USB plugged in. Any suggestions?
    Last edited by quiro91 (2012-06-26 09:17:08)

    rc.conf -> http://pastebin.com/eJTXVt1L
    mkinitcpio.conf -> http://pastebin.com/u90UQ8kt
    udev is actually after base. I'm going to try linux-lts now, I'll let you know, and obviously thanks for your help
    EDIT: using lts kernel, I rebooted 5 times and everything works fine, no error message at all
    DSpider wrote:
    Post these files (preferably using pastebin.com):
    /etc/rc.conf
    /etc/mkinitcpio.conf
    "udev" should be after "base". For example:
    HOOKS="base udev autodetect pata scsi sata usbinput filesystems fsck"
    Then regenerate your initramfs:
    # mkinitcpio -p [your linux preset, since you're using linux-ck... I don't know]
    For the kernel from the [core] repo, it's:
    # mkinitcpio -p linux
    Speaking of kernels, does it happen with linux-lts too?
    Last edited by quiro91 (2012-06-26 15:52:15)

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

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

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

  • Installing Arch Linux on USB key: error while booting

    Hello,
    first of all, I must say I've followed the steps from this article on arch wiki to install archlinux on my USB key: https://wiki.archlinux.org/index.php/In … _a_USB_key
    So what I did is to use one of my 2 usb keys to INSTALL linux, and the second one to RUN linux. I used dd to write on the 1st usb, eveything worked fine when booting, then I do install arch on the my second usb following the stept from the link above, everything works until I get this error while booting (at the middle):
    Waiting 10 seconds for device /dev/sdc/
    Root device '/dev/sdc' doesn't exist. Attempting to create it.
    ERROR: Unable to determine major/minor number of root device '/dev/disk/by-uuid/lotsofnumbers'
    You are being dropped to a recovery shell
    Type 'exit' to try and continue booting
    /bin/sh: Can't contact tty; job control turned off
    [ramfs /]#
    To summarize I'll show you my conf files that could help you to resolve my problem:
    /etc/fstab.conf
    /dev/sdc1 /boot ext2 defaults 0 1
    /dev/sdc2 / ext3 defaults 0 1
    /dev/sdc3 /home ext3 defaults 0 1
    So here I've sdc1 boot 32MB partition; sdc2 root 3GB partition; sdc3 home 978MB partition for a total of 4GB USB key~
    I didn't make a swap partition as in the tutorial they are writing it's unnecessary for some kind of reasons.
    /etc/mkinitcpio.conf
    HOOKS="base udev usb autodetect pata scsi sata filesystems"
    I've added to here, "usb" to the hooks
    installed GRUB on my sdc, here is the menu.ist:
    # (0) Arch Linux
    title Arch Linux (USB)
    root (hd0,0)
    kernel /vmlinuz26 root=/dev/sdc ro vga=773
    initrd /kernel26.img
    So, I boot GRUB without problems, start Arch Linux, but then I got this error above.
    I've searched alot on some forums and read many stuffs, but sitll can't fix it and it seems complicated.
    I've tried to boot with UUID, also, but didn't make difference. I tried to remove some parameter from the hooks, but unfortunately this wasn't working still. I've read somewhere to use chroot, but I didn't catch on how to do that and what was the use of chroot, I'm still noob user of arch linux and currently learning. Maybe it's the problem, as some forum were talking about creating a new image, but I still don't know how to make it. By the way, I'm not sure this could have fixed my current problem. I've also read somewhere it could be due to my lack of space, but I wrote you how I did partition my USB key, let me know if you have any suggestion please.

    1. What I did is re-installing entirely from my installation disk or USB to test out different setting in  my config files, because I don't know how to edit my .conf as I can't really finish to boot to the end and get in terminal mode? If there is a quicker way to edit files from any terminal to go into my current USB sdc to modify directly my file from there, I'd enjoy probably. So rebuilding the initpio, no, I just re-installed to test out different configs.
    2. Yes, same error.
    3. Tested out by-id/by-path and uuid = no difference
    4. Didn't know about larch, it seems to be a nice tool, I'll check it out

  • Error while reading USB Port : using JSR80

    Hi Everybody
    Iam trying to read the data from a usb device [a fingerprint scanner] by using jsr80 with the help of following files which are in my classpath
    1) jsr80-1.0.1.jar
    2) jsr80_ri-1.0.1.jar
    3) jsr80_windows.jar
    4) commons-logging-api-1.1.1.jar
    5) javax.usb.properties
    6) LibusbJNI.dll
    7) LibusbJava.dll
    8) libusb0.dll
    I was trying the follwoing program
    import javax.usb.*;
    import java.util.List;
    public class TraverseUSB
            public static void main(String argv[])
              try
                  // Access the system USB services, and access to the root
                  // hub. Then traverse through the root hub.
                  UsbServices services = UsbHostManager.getUsbServices();
    System.out.println("Getting Available USB Services ");
                  UsbHub rootHub = services.getRootUsbHub();
    System.out.println(" Access to the USBrootHub ");
                  traverse(rootHub);
              } catch (Exception e) {
              System.out.println(e);
            public static void traverse(UsbDevice device)
              if (device.isUsbHub())
                 // This is a USB Hub, traverse through the hub.
                 List attachedDevices = ((UsbHub) device).getAttachedUsbDevices();
                 for (int i=0; i<attachedDevices.size(); i++)
                   traverse((UsbDevice) attachedDevices.get(i));
              else
         System.out.println("USB Device");
                 // This is a USB function, not a hub.
                 // Do something.
    }but when iam executing the program iam getting the exception
    The Ordinal 44 could not be located in the dynamic link library "libusb0.dll" , it is coming in a message box
    javax.usb.UsbException: Error while loading shared library LibusbJNI.dll : C:\WINDOWS\LibusbJNI.dll:
    The operating system cannot run %1
    Please help in this regards
    Thanks in adv
    Sulfikkar

    I am also facing the same problem with the code and getting errors while running my application in Eclipse is this some version problem or any other isues are afftecting my application to run successfully.
    I get following errors while running my application inspite of having all the jars and libusb for windows:
    Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
         at com.mcreations.usb.windows.JavaxUsb.<clinit>(JavaxUsb.java:65)
         at com.mcreations.usb.windows.WindowsUsbServices.<init>(WindowsUsbServices.java:46)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at java.lang.Class.newInstance0(Class.java:350)
         at java.lang.Class.newInstance(Class.java:303)
         at javax.usb.UsbHostManager.createUsbServices(Unknown Source)
         at javax.usb.UsbHostManager.getUsbServices(Unknown Source)
         at org.symphony.embedded.ShowTopology.getVirtualRootUsbHub(ShowTopology.java:56)
         at org.symphony.embedded.FindUsbDevice.main(FindUsbDevice.java:29)

  • Get-mailboxdatabasecopystatus -identity DBNAME | fl gives errors "The Microsoft Exchange Replication service encountered an error while attempting to start a replication instance for". DB is mounted and the DB copies are in healthy status.

    We are getting a SCOM alert " Database copy isn''''t keeping up with the changes on the active database copy and has failed."
    When we go to the mailbox server and check we found all the Mailbox DB's are mounted properly and their copies are in healthy state. Further digging to this problem we found that there are no critical events to this DB in the eventviewer.
    When we runt he get-mailboxdatabasecopystatus -identity DBNAME | Fl then in the ErrorMessage section we get error "The Microsoft Exchange Replication service encountered an error while attempting to start a replication instance for . If the copy doesn't
    recover automatically, administrator intervention may be necessary. Error: The directory is not empty."
    ErrorEventID : 4126
    In the event viewer we get a Information event 4114 saying the DB redundancy health check passed and in the details section we get the same error message mentioned above.
    Also we observed that the "MSExchange Replication" counter "Failed" is set to 1 for this perticular DB but is is set to 0 for the other DB's. Tried restarting the MSEXChange replication service but still the "Failed" counter
    is 1 and the SCOM alert is still active.
    The version is Exchange 2010 SP3 UR5
    Any clues???

    Hi,
    From your description, this issue only affect one mailbox datatabase.
    Please use the Update-MailboxDatabaseCopy command to check result.
    If it doesn't work, please dismount your active database copy and check if this is Clean Shutdown, if it's dirty shutdown, please bring to clean shutdown and mount this database copy. Then run the Update-MailboxDatabaseCopy command again to check result.
    Best regards,
    Belinda Ma
    TechNet Community Support

  • USB error while system is loading

    Hi! when ArchLinux is loading shows this line:
    usb 3-1.1: string descriptor 0 read error: -22
    What it means? Is there anything not working right?
    Thanks!

    This is the result of dmesg --level=warn:
    [ 0.000000] ACPI: RSDP 0000000096ffe014 00024 (v02 ACRSYS)
    [ 0.000000] ACPI: XSDT 0000000096ffe210 000AC (v01 ACRSYS ACRPRDCT 00000001 01000013)
    [ 0.000000] ACPI: FACP 0000000096ffb000 0010C (v05 ACRSYS ACRPRDCT 00000001 1025 00040000)
    [ 0.000000] ACPI: DSDT 0000000096fec000 0BB9E (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
    [ 0.000000] ACPI: FACS 0000000096fba000 00040
    [ 0.000000] ACPI: UEFI 0000000096ffd000 00236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
    [ 0.000000] ACPI: ASF! 0000000096ffc000 000A5 (v32 ACRSYS ACRPRDCT 00000001 1025 00040000)
    [ 0.000000] ACPI: HPET 0000000096ffa000 00038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
    [ 0.000000] ACPI: APIC 0000000096ff9000 0008C (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
    [ 0.000000] ACPI: MCFG 0000000096ff8000 0003C (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
    [ 0.000000] ACPI: SLIC 0000000096feb000 00176 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
    [ 0.000000] ACPI: SSDT 0000000096fea000 006FE (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
    [ 0.000000] ACPI: BOOT 0000000096fe8000 00028 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
    [ 0.000000] ACPI: ASPT 0000000096fe3000 00034 (v07 ACRSYS ACRPRDCT 00000001 1025 00040000)
    [ 0.000000] ACPI: DBGP 0000000096fe2000 00034 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
    [ 0.000000] ACPI: FPDT 0000000096fe0000 00044 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
    [ 0.000000] ACPI: MSDM 0000000096fdf000 00055 (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
    [ 0.000000] ACPI: SSDT 0000000096fde000 00926 (v01 ACRSYS ACRPRDCT 00003000 1025 00040000)
    [ 0.000000] ACPI: SSDT 0000000096fdd000 00A92 (v01 ACRSYS ACRPRDCT 00003000 1025 00040000)
    [ 0.000000] ACPI: SSDT 0000000096fd9000 02185 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
    [ 0.000000] ACPI: BGRT 0000000096fdc000 00038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x25f5fffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x00087fff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x40003fff]
    [ 0.000000] node 0: [mem 0x40005000-0x90daffff]
    [ 0.000000] node 0: [mem 0x921b0000-0x967befff]
    [ 0.000000] node 0: [mem 0x96fff000-0x96ffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x25f5fffff]
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2017807
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Memory: 7931112K/8199448K available (5050K kernel code, 799K rwdata, 1696K rodata, 1140K init, 1288K bss, 268336K reserved)
    [ 0.021919] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.029132] ACPI: All ACPI Tables successfully acquired
    [ 0.272785] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.298392] ACPI: SSDT 0000000096df7018 0083B (v01 PmRef Cpu0Cst 00003001 INTL 20120215)
    [ 0.298743] ACPI: Dynamic OEM Table Load:
    [ 0.298745] ACPI: SSDT (null) 0083B (v01 PmRef Cpu0Cst 00003001 INTL 20120215)
    [ 0.311516] ACPI: SSDT 0000000096df8a98 00303 (v01 PmRef ApIst 00003000 INTL 20120215)
    [ 0.311892] ACPI: Dynamic OEM Table Load:
    [ 0.311894] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20120215)
    [ 0.324725] ACPI: SSDT 0000000096df6d98 00119 (v01 PmRef ApCst 00003000 INTL 20120215)
    [ 0.325071] ACPI: Dynamic OEM Table Load:
    [ 0.325073] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20120215)
    [ 0.342508] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130517/hwxface-571)
    [ 0.342513] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
    [ 0.645943] ACPI: Enabled 6 GPEs in block 00 to 3F
    [ 0.821576] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.898224] ACPI Warning: \_SB_.PCI0.GFX0._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20130517/nsarguments-95)
    [ 0.898252] ACPI Warning: \_SB_.PCI0.GFX0._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20130517/nsarguments-95)
    [ 0.898269] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20130517/nsarguments-95)
    [ 0.898288] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20130517/nsarguments-95)
    [ 1.708606] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
    [ 2.108454] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [ 2.847901] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 7.612271] ACPI Warning: 0x0000000000003040-0x000000000000305f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130517/utaddress-251)
    [ 7.628773] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130517/utaddress-251)
    [ 7.628785] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130517/utaddress-251)
    [ 7.628789] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130517/utaddress-251)
    [ 7.628794] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130517/utaddress-251)
    [ 7.628797] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130517/utaddress-251)
    [ 7.628802] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 7.966257] [Firmware Bug]: battery: (dis)charge rate invalid.
    [ 8.146230] acer_wmi: Enabling Launch Manager failed: 0xe2 - 0x0
    [ 20.828858] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [ 134.452375] vboxdrv: fAsync=0 offMin=0x1d0 offMax=0xf3b6
    [ 1448.696188] acer_wmi: Unknown function number - 4 - 0
    [ 1448.696439] acer_wmi: Unknown function number - 4 - 0
    [ 1449.162959] acer_wmi: Unknown function number - 4 - 0
    [ 1449.163125] acer_wmi: Unknown function number - 4 - 0
    [ 1449.343484] acer_wmi: Unknown function number - 4 - 0
    [ 1449.343665] acer_wmi: Unknown function number - 4 - 0
    [ 1449.523825] acer_wmi: Unknown function number - 4 - 0
    [ 1449.524000] acer_wmi: Unknown function number - 4 - 0
    [ 1449.598191] acer_wmi: Unknown function number - 4 - 0
    [ 1449.598376] acer_wmi: Unknown function number - 4 - 0
    [ 1449.757403] acer_wmi: Unknown function number - 4 - 0
    [ 1449.757583] acer_wmi: Unknown function number - 4 - 0
    [ 1449.927183] acer_wmi: Unknown function number - 4 - 0
    [ 1449.927372] acer_wmi: Unknown function number - 4 - 0
    [ 1450.088396] acer_wmi: Unknown function number - 4 - 0
    [ 1450.088623] acer_wmi: Unknown function number - 4 - 0
    [ 1450.256140] acer_wmi: Unknown function number - 4 - 0
    [ 1450.256369] acer_wmi: Unknown function number - 4 - 0
    [ 1450.383428] acer_wmi: Unknown function number - 4 - 0
    [ 1450.383669] acer_wmi: Unknown function number - 4 - 0
    And this is the result of dmesg --level=err:
    [ 2.970456] usb 3-1.1: string descriptor 0 read error: -22
    [ 9.849782] usb 3-1.1: string descriptor 0 read error: -22
    The message shown is in err

  • Hi, i just try to update my 3g in itunes unfortunatly it got error while updating it asked me to restore update but unable to restore it , now my 3g i locked and on screen it displying usb symbol connect to itunes ,please help me regarding this

    hi, i just try to update my 3g in itunes unfortunatly it got error while updating it asked me to restore update but unable to restore it , now my 3g i locked and on screen it displying usb symbol connect to itunes ,please help me regarding this

    I suspect your error was 1015, not 1051. This usually involves a jailbroken iPhone, use Google to find your solution.

  • X201 - Error while loading driver \Driver\WUDFRd for device USB\VID_147E&PID_2016\6&32feb3ab&0&3.

    Hello,
    i got this message in eventviewer after boot into Windows 7 x64:
    Error while loading driver \Driver\WUDFRd for device USB\VID_147E&PID_2016\6&32feb3ab&0&3.
    other versions of driver are tested (direct from UPEK and from MS Update catalog) but won't work too :-(
    Fingerprintsuite is now deinstalled (only latest driver from UPEK installed ) and message is still existing!!!
    If driver is not installed, no error message!
    Cables are checked and ok:
    Has anyone got an idea?
    regards
    Martin

    Hi
    Welcome to Lenovo Community
    Try uninstalling the driver and clear it from windows registry .
    Then Update the Bios  to latest , after that install the drivers
    Bios Update
    http://download.lenovo.com/ibmdl/pub/pc/pccbbs/mobiles/6quj17us.exe
    FingerPrint reader
    http://download.lenovo.com/ibmdl/pub/pc/pccbbs/mobiles/83f807ww.exe
    Hope This Helps
    Cheers!!!

  • HT1846 gtp error while installing windows from usb! how to solve it.

    gtp error while installing windows from usb! how to solve it.

    Hello mmarti,
    Thanks for using Apple Support Communities.
    Please ensure you are following the Boot Camp installation guide, as you should be selecting the partition named "BOOTCAMP" when you are at the Windows installer screen.  See page 6 of the following PDF:
    http://manuals.info.apple.com/MANUALS/1000/MA1636/en_US/boot_camp_install-setup_ 10.8.pdf
    Take care,
    Alex H.

Maybe you are looking for