Problems with MySQL ODBC install on Linux

Oracle 11gR2
Linux 6.3
I am using the Oracle ODBC Gateway and trying to configure for connectivity to MySQL.
Can anyone forward me:
(1) link to MySQL ODBC Driver
(2) instructions on how to install
I have tried installing the following and I am getting dependency errors:
[root]# rpm -ivh  mysql-connector-odbc-5.1.10-1.x86_64.rpm
Preparing...                ########################################### [100%]
   1:mysql-connector-odbc   ########################################### [100%]
myodbc-installer: symbol lookup error: myodbc-installer: undefined symbol: SQLInstallDriverEx
error: %post(mysql-connector-odbc-5.1.10-1.x86_64) scriptlet failed, exit status 127
[root]# rpm -ivh mysql-connector-odbc-5.2.6-1.el6.x86_64.rpm
error: Failed dependencies:
        libodbc.so.2()(64bit) is needed by mysql-connector-odbc-5.2.6-1.el6.x86_64
        libodbcinst.so.2()(64bit) is needed by mysql-connector-odbc-5.2.6-1.el6.x86_64
        rpmlib(FileDigests) <= 4.6.0-1 is needed by mysql-connector-odbc-5.2.6-1.el6.x86_64
        rpmlib(PayloadIsXz) <= 5.2-1 is needed by mysql-connector-odbc-5.2.6-1.el6.x86_64

The MySQl ODBC driver requires an ODBC Driver Manager (libodbc.so.2). So please make sure you first install an ODBC Driver manager (for example unixODBC Driver Manager release 2.3) using an RPM or compile it from the soiurce files (www.unixODBC.org).
- Klaus

Similar Messages

  • TS5376 I'm having a problem with downloading and installing the new version of itunes for windows (11.1.4)  I have done everything the troubleshooting article has said and it is still not working properly.

    'm having a problem with downloading and installing the new version of itunes for windows (11.1.4)  I have done everything the troubleshooting article has said and it is still not working properly.  I have even done a repair to see if that works and it has not.  Has anyone else found a new way to get it working?

    Try Troubleshooting issues with iTunes for Windows updates.
    tt2

  • I am having a problem with Windows Fusion installed on a MacBook.

    I am having a problem with Windows Fusion installed on a MacBook OS 10.  When attempting to use a Browser, (either IE, or Chrome), under Windows Fusion, I cannot browse to ANY page except Gmail.com.
    I checked all security settings, and found no problem. Neither browser will allow me to do ANYTHING other than go to Gmail.com!!!
    I am not sure if I have some virus on my Windows side, because Google and Safari both work perfectly on my Apple side, just not when running Windows Fusion.
    Is there some setting I am missing, or do you think I have malware/virus issues?? My Internet connection is DEFINITELY working fine - I can send, receive, open, and close all my email on Gmail only, and can navigate freely on Gmail, but cannot get to any other site even hyperlinked to Gmail.
    Any help would be greatly appreciated.
    Thank you very much.

    HartEJ wrote:
    ...Neither browser will allow me to do ANYTHING other than go to Gmail.com!!!...
    If you've already tried my previous suggestions, it may be that something has tampered with the DNS settings in your Windows VM, which might bypass the settings your Mac uses. Assuming you're using Windows 8, these instructions explain how to check and change the DNS settings. There's also a link in those instructions listing a variety of suggested DNS settings. If you do try changing the settings, record what the settings currently are in case you want to return to them.

  • Performance problems with jdk 1.5 on Linux plattform

    Performance problems with jdk 1.5 on Linux plattform
    (not tested on Windows, might be the same)
    After refactoring using the new features from java 1.5 I lost
    performance significantly:
    public Vector<unit> units;
    The new code:
    for (unit u: units) u.accumulate();
    runs more than 30% slower than the old code:
    for (int i = 0; i < units.size(); i++) units.elementAt(i).accumulate();
    I expected the opposite.
    Is there any information available that helps?

    Here's the complete benchmark code I used:package test;
    import java.text.NumberFormat;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.LinkedList;
    import java.util.Vector;
    public class IterationPerformanceTest {
         private int m_size;
         public IterationPerformanceTest(int size) {
              m_size = size;
         public long getArrayForLoopDuration() {
              Integer[] testArray = new Integer[m_size];
              for (int item = 0; item < m_size; item++) {
                   testArray[item] = new Integer(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testArray[index]);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayForEachDuration() {
              Integer[] testArray = new Integer[m_size];
              for (int item = 0; item < m_size; item++) {
                   testArray[item] = new Integer(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testArray) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayListForLoopDuration() {
              ArrayList<Integer> testList = new ArrayList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testList.get(index));
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayListForEachDuration() {
              ArrayList<Integer> testList = new ArrayList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testList) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayListIteratorDuration() {
              ArrayList<Integer> testList = new ArrayList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              Iterator<Integer> iterator = testList.iterator();
              while(iterator.hasNext()) {
                   builder.append(iterator.next());
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getLinkedListForLoopDuration() {
              LinkedList<Integer> testList = new LinkedList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testList.get(index));
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getLinkedListForEachDuration() {
              LinkedList<Integer> testList = new LinkedList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testList) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getLinkedListIteratorDuration() {
              LinkedList<Integer> testList = new LinkedList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              Iterator<Integer> iterator = testList.iterator();
              while(iterator.hasNext()) {
                   builder.append(iterator.next());
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getVectorForLoopDuration() {
              Vector<Integer> testVector = new Vector<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testVector.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testVector.get(index));
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getVectorForEachDuration() {
              Vector<Integer> testVector = new Vector<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testVector.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testVector) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getVectorIteratorDuration() {
              Vector<Integer> testVector = new Vector<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testVector.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              Iterator<Integer> iterator = testVector.iterator();
              while(iterator.hasNext()) {
                   builder.append(iterator.next());
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
          * @param args
         public static void main(String[] args) {
              IterationPerformanceTest test = new IterationPerformanceTest(1000000);
              System.out.println("\n\nRESULTS:");
              long arrayForLoop = test.getArrayForLoopDuration();
              long arrayForEach = test.getArrayForEachDuration();
              long arrayListForLoop = test.getArrayListForLoopDuration();
              long arrayListForEach = test.getArrayListForEachDuration();
              long arrayListIterator = test.getArrayListIteratorDuration();
    //          long linkedListForLoop = test.getLinkedListForLoopDuration();
              long linkedListForEach = test.getLinkedListForEachDuration();
              long linkedListIterator = test.getLinkedListIteratorDuration();
              long vectorForLoop = test.getVectorForLoopDuration();
              long vectorForEach = test.getVectorForEachDuration();
              long vectorIterator = test.getVectorIteratorDuration();
              System.out.println("Array      for-loop: " + getPercentage(arrayForLoop, arrayForLoop) + "% ("+getDuration(arrayForLoop)+" sec)");
              System.out.println("Array      for-each: " + getPercentage(arrayForLoop, arrayForEach) + "% ("+getDuration(arrayForEach)+" sec)");
              System.out.println("ArrayList  for-loop: " + getPercentage(arrayForLoop, arrayListForLoop) + "% ("+getDuration(arrayListForLoop)+" sec)");
              System.out.println("ArrayList  for-each: " + getPercentage(arrayForLoop, arrayListForEach) + "% ("+getDuration(arrayListForEach)+" sec)");
              System.out.println("ArrayList  iterator: " + getPercentage(arrayForLoop, arrayListIterator) + "% ("+getDuration(arrayListIterator)+" sec)");
    //          System.out.println("LinkedList for-loop: " + getPercentage(arrayForLoop, linkedListForLoop) + "% ("+getDuration(linkedListForLoop)+" sec)");
              System.out.println("LinkedList for-each: " + getPercentage(arrayForLoop, linkedListForEach) + "% ("+getDuration(linkedListForEach)+" sec)");
              System.out.println("LinkedList iterator: " + getPercentage(arrayForLoop, linkedListIterator) + "% ("+getDuration(linkedListIterator)+" sec)");
              System.out.println("Vector     for-loop: " + getPercentage(arrayForLoop, vectorForLoop) + "% ("+getDuration(vectorForLoop)+" sec)");
              System.out.println("Vector     for-each: " + getPercentage(arrayForLoop, vectorForEach) + "% ("+getDuration(vectorForEach)+" sec)");
              System.out.println("Vector     iterator: " + getPercentage(arrayForLoop, vectorIterator) + "% ("+getDuration(vectorIterator)+" sec)");
         private static NumberFormat percentageFormat = NumberFormat.getInstance();
         static {
              percentageFormat.setMinimumIntegerDigits(3);
              percentageFormat.setMaximumIntegerDigits(3);
              percentageFormat.setMinimumFractionDigits(2);
              percentageFormat.setMaximumFractionDigits(2);
         private static String getPercentage(long base, long value) {
              double result = (double) value / (double) base;
              return percentageFormat.format(result * 100.0);
         private static NumberFormat durationFormat = NumberFormat.getInstance();
         static {
              durationFormat.setMinimumIntegerDigits(1);
              durationFormat.setMaximumIntegerDigits(1);
              durationFormat.setMinimumFractionDigits(4);
              durationFormat.setMaximumFractionDigits(4);
         private static String getDuration(long nanos) {
              double result = (double)nanos / (double)1000000000;
              return durationFormat.format(result);
    }

  • Problems with MySQL in JSC 2

    i have problem with MySQL i have a driver i added it in to servers list and i made tests with data source everythink is ok, i see tables but when i drop a table from data source on table componenet(or other) i have errors nullPointerExpection at: (here is very long list of java classes. when i click "view data" of table in data source everythink works, only in components it doesn't. Can sombody help me please. I hope you understood my problem if not i will try to explain it once again.

    i get his Exception:
    A java.lang.NullPointerException exception has occurred.
    Please report this at http://www.netbeans.org/issues.html,
    including a copy of your messages.log file as an attachment.
    The messages.log file is located in your C:\Documents and Settings\Leszczy&#324;ski\.Creator\2_0\var\log folder.
    here are details:
    java.lang.NullPointerException
         at com.mysql.jdbc.PreparedStatement.asSql(PreparedStatement.java:565)
         at com.mysql.jdbc.PreparedStatement.asSql(PreparedStatement.java:507)
         at com.mysql.jdbc.PreparedStatement.toString(PreparedStatement.java:3290)
         at java.lang.String.valueOf(String.java:2577)
         at java.lang.StringBuffer.append(StringBuffer.java:220)
         at com.mysql.jdbc.trace.Tracer.printParameters(Tracer.aj:240)
         at com.mysql.jdbc.trace.Tracer.printEntering(Tracer.aj:167)
         at com.mysql.jdbc.trace.Tracer.entry(Tracer.aj:126)
         at com.mysql.jdbc.trace.Tracer.ajc$before$com_mysql_jdbc_trace_Tracer$1$f51c62b8(Tracer.aj:45)
         at com.mysql.jdbc.Connection.registerStatement(Connection.java)
         at com.mysql.jdbc.Statement.<init>(Statement.java:190)
         at com.mysql.jdbc.PreparedStatement.<init>(PreparedStatement.java:432)
         at com.mysql.jdbc.ServerPreparedStatement.asSql(ServerPreparedStatement.java:343)
         at com.mysql.jdbc.PreparedStatement.asSql(PreparedStatement.java:507)
         at com.mysql.jdbc.ServerPreparedStatement.toString(ServerPreparedStatement.java:2306)
         at java.lang.String.valueOf(String.java:2577)
         at java.lang.StringBuffer.append(StringBuffer.java:220)
         at com.mysql.jdbc.trace.Tracer.printParameters(Tracer.aj:240)
         at com.mysql.jdbc.trace.Tracer.printEntering(Tracer.aj:167)
         at com.mysql.jdbc.trace.Tracer.entry(Tracer.aj:126)
         at com.mysql.jdbc.trace.Tracer.ajc$before$com_mysql_jdbc_trace_Tracer$1$f51c62b8(Tracer.aj:45)
         at com.mysql.jdbc.Connection.registerStatement(Connection.java)
         at com.mysql.jdbc.Statement.<init>(Statement.java:190)
         at com.mysql.jdbc.PreparedStatement.<init>(PreparedStatement.java:414)
         at com.mysql.jdbc.ServerPreparedStatement.<init>(ServerPreparedStatement.java:280)
         at com.mysql.jdbc.Connection.prepareStatement(Connection.java:4288)
         at com.mysql.jdbc.Connection.prepareStatement(Connection.java:4226)
         at com.sun.rave.sql.DesignTimeConnection.prepareStatement(DesignTimeConnection.java:187)
         at com.sun.sql.rowset.CachedRowSetXImpl.getMetaData(CachedRowSetXImpl.java:2334)
         at com.sun.data.provider.impl.CachedRowSetDataProvider.getMetaData(CachedRowSetDataProvider.java:1317)
         at com.sun.data.provider.impl.CachedRowSetDataProvider.getFieldKeys(CachedRowSetDataProvider.java:489)
         at com.sun.rave.web.ui.component.table.TableRowGroupDesignState.resetTableColumns(TableRowGroupDesignState.java:261)
         at com.sun.rave.web.ui.component.table.TableRowGroupDesignState.setDataProviderBean(TableRowGroupDesignState.java:163)
         at com.sun.rave.web.ui.component.table.TableDesignState.setDataProviderBean(TableDesignState.java:250)
         at com.sun.rave.web.ui.component.TableDesignInfo.linkBeans(TableDesignInfo.java:162)
         at com.sun.rave.insync.models.FacesModel.linkBeans(FacesModel.java:1042)
         at com.sun.rave.designer.DndHandler.processLinks(DndHandler.java:2126)
         at com.sun.rave.designer.DndHandler.importBean(DndHandler.java:880)
         at com.sun.rave.designer.DndHandler.importItem(DndHandler.java:702)
         at com.sun.rave.designer.DndHandler.importDataDelayed(DndHandler.java:376)
         at com.sun.rave.designer.DndHandler.access$000(DndHandler.java:114)
    [catch] at com.sun.rave.designer.DndHandler$1.run(DndHandler.java:298)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    yes i use JSC 2
    Is it posible that my MySQL is not working properly??
    Micz.

  • I can not install xp through boot camp, the team just bought yesterday, is a macbook pro 13 when my old computer did it without problem with the same install disc

    I can not install xp through boot camp, the team just bought yesterday, is a macbook pro 13 when my old computer did it without problem with the same install disc

    There are no XP or Vista drivers for the new Apple computer hardware. Apple stopped XP and Vista support. http://support.apple.com/kb/HT4410.

  • Problem with boot / new install system ond SSD

    Hi guys,
    I have fresh installed system on my new SSD. I use my old HDD as external usb drive.
    I have problem with boot when I dont have connected HDD to usb.
    My system boot only to console no to KDE. When I connect external HDD to usb and reboot system, system boot normally.
    Logs after boot.
    Feb 26 16:46:39 arch systemd[1]: Reached target Login Prompts.
    Feb 26 16:46:39 arch systemd[1]: Starting K Display Manager...
    Feb 26 16:46:39 arch systemd[1]: Started K Display Manager.
    Feb 26 16:46:39 arch systemd-logind[231]: New seat seat0.
    Feb 26 16:46:39 arch systemd[1]: Started Login Service.
    Feb 26 16:46:40 arch kernel: microcode: CPU0 sig=0x1067a, pf=0x80, revision=0xa07
    Feb 26 16:46:40 arch kernel: platform microcode: Direct firmware load failed with error -2
    Feb 26 16:46:40 arch kernel: platform microcode: Falling back to user helper
    Feb 26 16:46:40 arch kernel: random: nonblocking pool is initialized
    Feb 26 16:46:40 arch kernel: uvcvideo: Found UVC 1.00 device CNF7129 (04f2:b071)
    Feb 26 16:46:40 arch laptop-mode[271]: enabled, not active
    Feb 26 16:46:40 arch kernel: input: CNF7129 as /devices/pci0000:00/0000:00:1a.7/usb3/3-3/3-3:1.0/input/input16
    Feb 26 16:46:40 arch kernel: usbcore: registered new interface driver uvcvideo
    Feb 26 16:46:40 arch kernel: USB Video Class driver (1.1.1)
    Feb 26 16:46:40 arch systemd[1]: Started Wicd a wireless and wired network manager for Linux.
    Feb 26 16:46:40 arch systemd[1]: Starting Network.
    Feb 26 16:46:40 arch systemd[1]: Reached target Network.
    Feb 26 16:46:40 arch systemd[1]: Starting OpenSSH Daemon...
    Feb 26 16:46:40 arch systemd[1]: Started OpenSSH Daemon.
    Feb 26 16:46:40 arch systemd[1]: Starting NoMachine Server daemon...
    Feb 26 16:46:40 arch sshd[373]: Server listening on 0.0.0.0 port 22.
    Feb 26 16:46:40 arch sshd[373]: Server listening on :: port 22.
    Feb 26 16:46:40 arch mtp-probe[404]: checking bus 7, device 2: "/sys/devices/pci0000:00/0000:00:1d.1/usb7/7-2"
    Feb 26 16:46:40 arch mtp-probe[404]: bus: 7, device: 2 was not an MTP device
    Feb 26 16:46:40 arch kernel: hidraw: raw HID events driver (C) Jiri Kosina
    Feb 26 16:46:40 arch kernel: usbcore: registered new interface driver usbhid
    Feb 26 16:46:40 arch kernel: usbhid: USB HID core driver
    Feb 26 16:46:40 arch systemd[1]: Starting Sound Card.
    Feb 26 16:46:40 arch systemd[1]: Reached target Sound Card.
    Feb 26 16:46:40 arch systemd-udevd[145]: renamed network interface eth0 to enp3s0
    Feb 26 16:46:40 arch kernel: psmouse serio4: elantech: assuming hardware version 2 (with firmware version 0x040101)
    Feb 26 16:46:40 arch kernel: psmouse serio4: elantech: Synaptics capabilities query result 0x7e, 0x13, 0x0d.
    Feb 26 16:46:40 arch kernel: i915 0000:00:02.0: irq 45 for MSI/MSI-X
    Feb 26 16:46:40 arch kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    Feb 26 16:46:40 arch kernel: [drm] Driver supports precise vblank timestamp query.
    Feb 26 16:46:40 arch kernel: vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    Feb 26 16:46:40 arch kernel: iTCO_vendor_support: vendor-support=0
    Feb 26 16:46:40 arch kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    Feb 26 16:46:40 arch kernel: iTCO_wdt: Found a ICH9M TCO device (Version=2, TCOBASE=0x0860)
    Feb 26 16:46:40 arch kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    Feb 26 16:46:40 arch kernel: input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio4/input/input15
    Feb 26 16:46:40 arch systemd-logind[231]: Watching system buttons on /dev/input/event2 (Lid Switch)
    Feb 26 16:46:40 arch systemd-logind[231]: Watching system buttons on /dev/input/event1 (Sleep Button)
    Feb 26 16:46:40 arch systemd-logind[231]: Watching system buttons on /dev/input/event3 (Power Button)
    Feb 26 16:46:41 arch kernel: microcode: CPU1 sig=0x1067a, pf=0x80, revision=0xa07
    Feb 26 16:46:41 arch kernel: platform microcode: Direct firmware load failed with error -2
    Feb 26 16:46:41 arch kernel: platform microcode: Falling back to user helper
    Feb 26 16:46:41 arch kernel: input: 2.4G Wireless Wireless Receiver as /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.0/input/input17
    Feb 26 16:46:41 arch kernel: hid-generic 0003:1915:0F01.0001: input,hidraw0: USB HID v1.11 Keyboard [2.4G Wireless Wireless Receiver ] on usb-0000:00:1d.1-2/input0
    Feb 26 16:46:41 arch kernel: input: 2.4G Wireless Wireless Receiver as /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.1/input/input18
    Feb 26 16:46:41 arch kernel: hid-generic 0003:1915:0F01.0002: input,hidraw1: USB HID v1.11 Mouse [2.4G Wireless Wireless Receiver ] on usb-0000:00:1d.1-2/input1
    Feb 26 16:46:41 arch kernel: BUG: unable to handle kernel NULL pointer dereference at (null)
    Feb 26 16:46:41 arch kernel: IP: [<ffffffffa06c1317>] mousedev_open_device+0x77/0x100 [mousedev]
    Feb 26 16:46:41 arch kernel: PGD b650b067 PUD b650a067 PMD 0
    Feb 26 16:46:41 arch kernel: Oops: 0000 [#1] PREEMPT SMP
    Feb 26 16:46:41 arch kernel: Modules linked in: mousedev(+) hid_generic iTCO_wdt iTCO_vendor_support ath9k(+) usbhid ath9k_common hid ath9k_hw ath uvcvideo mac80211 microcode(+) videobuf2_vmalloc videobuf2_memops videobuf2_core videodev media evdev psmouse serio_raw pcspkr cfg80211 lpc_ich i915(+) atl1e snd_hda_codec_via snd_hda_intel drm_kms_helper snd_hda_codec drm snd_hwdep snd_pcm snd_page_alloc i2c_algo_bit i2c_core snd_timer asus_laptop snd battery ac soundcore sparse_keymap acpi_cpufreq rfkill video input_polldev thermal intel_agp intel_gtt shpchp processor button ext4 crc16 mbcache jbd2 sr_mod cdrom sd_mod atkbd libps2 ahci libahci libata scsi_mod ehci_pci uhci_hcd ehci_hcd usbcore usb_common i8042 serio
    Feb 26 16:46:41 arch kernel: CPU: 1 PID: 227 Comm: acpid Not tainted 3.13.5-1-ARCH #1
    Feb 26 16:46:41 arch kernel: Hardware name: ASUSTeK Computer Inc. K50IJ /K50IJ , BIOS 217 12/04/2009
    Feb 26 16:46:41 arch kernel: task: ffff88007ffeda00 ti: ffff8800b6516000 task.ti: ffff8800b6516000
    Feb 26 16:46:41 arch kernel: RIP: 0010:[<ffffffffa06c1317>] [<ffffffffa06c1317>] mousedev_open_device+0x77/0x100 [mousedev]
    Feb 26 16:46:41 arch kernel: RSP: 0018:ffff8800b6517c10 EFLAGS: 00010202
    Feb 26 16:46:41 arch kernel: RAX: 0000000000000000 RBX: ffff8801390f5800 RCX: ffff8801390f5868
    Feb 26 16:46:41 arch kernel: RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000246
    Feb 26 16:46:41 arch kernel: RBP: ffff8800b6517c28 R08: 0000000000000000 R09: ffff88013b001600
    Feb 26 16:46:41 arch kernel: R10: 0000000000000000 R11: 0000000000000004 R12: 0000000000000000
    Feb 26 16:46:41 arch kernel: R13: ffff8801390f5880 R14: ffff8800b3287558 R15: ffff880138c8f600
    Feb 26 16:46:41 arch kernel: FS: 00007f8de7e14700(0000) GS:ffff88013fd00000(0000) knlGS:0000000000000000
    Feb 26 16:46:41 arch kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
    Feb 26 16:46:41 arch kernel: CR2: 0000000000000000 CR3: 00000000b6507000 CR4: 00000000000407e0
    Feb 26 16:46:41 arch kernel: Stack:
    Feb 26 16:46:41 arch kernel: ffff88013926e400 ffff8801390f5800 ffff8801390f5878 ffff8800b6517c60
    Feb 26 16:46:41 arch kernel: ffffffffa06c20cc ffff8801390f5b48 ffff8800b3287558 ffff880138c8f600
    Feb 26 16:46:41 arch kernel: ffffffffa06c2e80 ffff880138c8f610 ffff8800b6517c98 ffffffff811a834f
    Feb 26 16:46:41 arch kernel: Call Trace:
    Feb 26 16:46:41 arch kernel: [<ffffffffa06c20cc>] mousedev_open+0xcc/0x150 [mousedev]
    Feb 26 16:46:41 arch kernel: [<ffffffff811a834f>] chrdev_open+0x9f/0x1d0
    Feb 26 16:46:41 arch kernel: [<ffffffff811a19e7>] do_dentry_open+0x1b7/0x2c0
    Feb 26 16:46:41 arch kernel: [<ffffffff811aedc1>] ? __inode_permission+0x41/0xb0
    Feb 26 16:46:41 arch kernel: [<ffffffff811a82b0>] ? cdev_put+0x30/0x30
    Feb 26 16:46:41 arch kernel: [<ffffffff811a1e01>] finish_open+0x31/0x40
    Feb 26 16:46:41 arch kernel: [<ffffffff811b1bf2>] do_last+0x572/0xe90
    Feb 26 16:46:41 arch kernel: [<ffffffff811af0b6>] ? link_path_walk+0x236/0x8d0
    Feb 26 16:46:41 arch kernel: [<ffffffff811b25cb>] path_openat+0xbb/0x6b0
    Feb 26 16:46:41 arch kernel: [<ffffffff811b3cda>] do_filp_open+0x3a/0x90
    Feb 26 16:46:41 arch kernel: [<ffffffff811c05c7>] ? __alloc_fd+0xa7/0x130
    Feb 26 16:46:41 arch kernel: [<ffffffff811a2fd4>] do_sys_open+0x124/0x220
    Feb 26 16:46:41 arch kernel: [<ffffffff811a30ee>] SyS_open+0x1e/0x20
    Feb 26 16:46:41 arch kernel: [<ffffffff8152142d>] system_call_fastpath+0x1a/0x1f
    Feb 26 16:46:41 arch kernel: Code: c0 6e e5 e0 5b 44 89 e0 41 5c 41 5d 5d c3 66 0f 1f 44 00 00 4c 89 ef 41 bc ed ff ff ff e8 a2 6e e5 e0 eb e0 48 8b 15 c9 21 00 00 <8b> 02 8d 48 01 85 c0 89 0a 75 c6 48 8b 05 37 1f 00 00 48 3d 60
    Feb 26 16:46:41 arch kernel: RIP [<ffffffffa06c1317>] mousedev_open_device+0x77/0x100 [mousedev]
    Feb 26 16:46:41 arch kernel: RSP <ffff8800b6517c10>
    Feb 26 16:46:41 arch kernel: CR2: 0000000000000000
    Feb 26 16:46:41 arch kernel: ---[ end trace 76aa0cbb67cf77f6 ]---
    Feb 26 16:46:41 arch kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Feb 26 16:46:41 arch systemd[1]: acpid.service: main process exited, code=killed, status=9/KILL
    Feb 26 16:46:41 arch systemd[1]: Unit acpid.service entered failed state.
    Feb 26 16:46:41 arch kernel: [drm] GMBUS [i915 gmbus dpc] timed out, falling back to bit banging on pin 4
    Feb 26 16:46:41 arch systemd[1]: Started Laptop Mode Tools.
    Feb 26 16:46:41 arch nxserver[374]: NX> 161 Enabled service: nxserver.
    Feb 26 16:46:42 arch kernel: fbcon: inteldrmfb (fb0) is primary device
    Feb 26 16:46:42 arch kernel: ath: phy0: Enable LNA combining
    Feb 26 16:46:42 arch kernel: ath: EEPROM regdomain: 0x60
    Feb 26 16:46:42 arch kernel: ath: EEPROM indicates we should expect a direct regpair map
    Feb 26 16:46:42 arch kernel: ath: Country alpha2 being used: 00
    Feb 26 16:46:42 arch kernel: ath: Regpair used: 0x60
    Feb 26 16:46:42 arch kernel: ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    Feb 26 16:46:42 arch kernel: ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xffffc90011e80000, irq=17
    Feb 26 16:46:42 arch systemd-udevd[139]: renamed network interface wlan0 to wlp2s0
    Feb 26 16:46:42 arch kernel: Console: switching to colour frame buffer device 170x48
    Feb 26 16:46:42 arch kernel: i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    Feb 26 16:46:42 arch kernel: i915 0000:00:02.0: registered panic notifier
    Feb 26 16:46:42 arch kernel: ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
    Feb 26 16:46:42 arch kernel: acpi device:38: registered as cooling_device2
    Feb 26 16:46:42 arch kernel: input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input19
    Feb 26 16:46:42 arch nxserver[374]: NX> 161 Enabled service: nxnode.
    Feb 26 16:46:42 arch nxserver[374]: NX> 161 Enabled service: nxd.
    Feb 26 16:46:42 arch systemd[1]: Started NoMachine Server daemon.
    Feb 26 16:46:42 arch systemd[1]: Starting Multi-User System.
    Feb 26 16:46:42 arch systemd[1]: Reached target Multi-User System.
    Feb 26 16:46:42 arch systemd[1]: Starting Graphical Interface.
    Feb 26 16:46:42 arch systemd[1]: Reached target Graphical Interface.
    Feb 26 16:46:42 arch systemd[1]: Startup finished in 1.241s (kernel) + 3.231s (userspace) = 4.473s.
    Feb 26 16:46:46 arch kernel: IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
    Feb 26 16:46:48 arch kernel: IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
    Feb 26 16:46:49 arch wicd[226]: dhcpcd[1383]: dhcpcd not running
    Feb 26 16:46:49 arch dhcpcd[1383]: dhcpcd not running
    Feb 26 16:46:49 arch kernel: IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
    Feb 26 16:46:49 arch wicd[226]: Failed to connect to non-global ctrl_ifname: wlp2s0 error: No such file or directory
    Feb 26 16:46:49 arch wicd[226]: dhcpcd[1389]: dhcpcd not running
    Feb 26 16:46:49 arch dhcpcd[1389]: dhcpcd not running
    Feb 26 16:46:49 arch kernel: IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
    Feb 26 16:46:49 arch wicd[226]: Failed to connect to non-global ctrl_ifname: enp3s0 error: No such file or directory
    Feb 26 16:46:49 arch wicd[226]: dhcpcd[1397]: dhcpcd not running
    Feb 26 16:46:49 arch dhcpcd[1397]: dhcpcd not running
    Feb 26 16:46:49 arch kernel: IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
    Feb 26 16:46:49 arch wicd[226]: Failed to connect to non-global ctrl_ifname: wlp2s0 error: No such file or directory
    Feb 26 16:46:51 arch systemd[1]: Starting Getty on tty2...
    Feb 26 16:46:51 arch systemd[1]: Started Getty on tty2.
    Feb 26 16:46:52 arch kernel: wlp2s0: authenticate with 08:86:3b:7f:86:08
    Feb 26 16:46:52 arch kernel: wlp2s0: send auth to 08:86:3b:7f:86:08 (try 1/3)
    Feb 26 16:46:52 arch kernel: wlp2s0: authenticated
    Feb 26 16:46:52 arch kernel: ath9k 0000:02:00.0 wlp2s0: disabling HT/VHT due to WEP/TKIP use
    Feb 26 16:46:52 arch kernel: wlp2s0: associate with 08:86:3b:7f:86:08 (try 1/3)
    Feb 26 16:46:52 arch kernel: wlp2s0: RX AssocResp from 08:86:3b:7f:86:08 (capab=0x411 status=0 aid=4)
    Feb 26 16:46:52 arch kernel: wlp2s0: associated
    Feb 26 16:46:52 arch kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready
    Feb 26 16:46:53 arch dhcpcd[1416]: version 6.2.1 starting
    Feb 26 16:46:54 arch dhcpcd[1416]: DUID 00:01:00:01:1a:96:a5:70:1c:4b:d6:a2:1f:ad
    Feb 26 16:46:54 arch dhcpcd[1416]: wlp2s0: IAID d6:a2:1f:ad
    Feb 26 16:46:54 arch dhcpcd[1416]: wlp2s0: soliciting an IPv6 router
    Feb 26 16:46:54 arch dhcpcd[1416]: wlp2s0: ipv6nd_sendrsprobe: sendmsg: Cannot assign requested address
    Feb 26 16:46:54 arch dhcpcd[1416]: wlp2s0: rebinding lease of 192.168.2.3
    Feb 26 16:46:55 arch kernel: type=1006 audit(1393429615.096:2): pid=1406 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=1 res=1
    Feb 26 16:46:55 arch login[1406]: pam_unix(login:session): session opened for user root by LOGIN(uid=0)
    Feb 26 16:46:55 arch systemd[1]: Starting user-0.slice.
    Feb 26 16:46:55 arch systemd[1]: Created slice user-0.slice.
    Feb 26 16:46:55 arch systemd[1]: Starting User Manager for 0...
    Feb 26 16:46:55 arch kernel: type=1006 audit(1393429615.106:3): pid=1477 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=2 res=1
    Feb 26 16:46:55 arch systemd[1]: Starting Session 1 of user root.
    Feb 26 16:46:55 arch systemd[1]: Started Session 1 of user root.
    Feb 26 16:46:55 arch systemd-logind[231]: New session 1 of user root.
    Feb 26 16:46:55 arch systemd[1477]: pam_unix(systemd-user:session): session opened for user root by (uid=0)
    Feb 26 16:46:55 arch login[1406]: ROOT LOGIN ON tty2
    Feb 26 16:46:55 arch systemd[1477]: Failed to open private bus connection: Failed to connect to socket /run/user/0/dbus/user_bus_socket: No such file or directory
    Feb 26 16:46:55 arch systemd[1477]: Mounted /sys/kernel/config.
    Feb 26 16:46:55 arch systemd[1477]: Stopped target Sound Card.
    Feb 26 16:46:55 arch systemd[1477]: Starting Default.
    Feb 26 16:46:55 arch systemd[1477]: Reached target Default.
    Feb 26 16:46:55 arch systemd[1477]: Startup finished in 7ms.
    Feb 26 16:46:55 arch systemd[1]: Started User Manager for 0.
    Feb 26 16:46:59 arch dhcpcd[1416]: wlp2s0: leased 192.168.2.3 for 283824000 seconds
    Feb 26 16:46:59 arch dhcpcd[1416]: wlp2s0: adding route to 192.168.2.0/24
    Feb 26 16:46:59 arch dhcpcd[1416]: wlp2s0: adding default route via 192.168.2.1
    Feb 26 16:46:59 arch dhcpcd[1416]: forked to background, child pid 1522
    Feb 26 16:47:10 arch kdm[238]: X server startup timeout, terminating
    Feb 26 16:47:12 arch systemd-udevd[131]: worker [140] /devices/pci0000:00/0000:00:02.0 timeout; kill it
    Feb 26 16:47:12 arch systemd-udevd[131]: seq 1255 '/devices/pci0000:00/0000:00:02.0' killed
    Feb 26 16:47:12 arch systemd-udevd[131]: worker [146] /devices/platform/i8042/serio4/input/input15 timeout; kill it
    Feb 26 16:47:12 arch systemd-udevd[131]: seq 1659 '/devices/platform/i8042/serio4/input/input15' killed
    Feb 26 16:47:12 arch systemd-udevd[131]: worker [148] /devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.1/input/input18 timeout; kill it
    Feb 26 16:47:12 arch systemd-udevd[131]: seq 1679 '/devices/pci0000:00/0000:00:1d.1/usb7/7-2/7-2:1.1/input/input18' killed
    Feb 26 16:47:12 arch kernel: [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    Feb 26 16:47:12 arch systemd-udevd[131]: worker [140] terminated by signal 9 (Killed)
    Feb 26 16:47:12 arch systemd-udevd[131]: worker [148] terminated by signal 9 (Killed)
    Feb 26 16:47:12 arch systemd[1]: Starting Load/Save Screen Backlight Brightness of acpi_video0...
    Feb 26 16:47:12 arch systemd[1]: Started Load/Save Screen Backlight Brightness of acpi_video0.
    Feb 26 16:47:12 arch kernel: input: failed to attach handler mousedev to device input15, error: -4
    Feb 26 16:47:12 arch systemd-udevd[131]: worker [146] terminated by signal 9 (Killed)
    Feb 26 16:47:12 arch kernel: input: failed to attach handler mousedev to device input18, error: -4
    Feb 26 16:47:12 arch kernel: mousedev: PS/2 mouse device common for all mice
    Feb 26 16:47:13 arch kdm[238]: X server for display :0 cannot be started, session disabled
    Feb 26 16:48:56 arch kernel: usb 7-2: USB disconnect, device number 2
    Feb 26 16:48:56 arch laptop-mode[1782]: Laptop mode
    Feb 26 16:48:56 arch laptop-mode[1783]: enabled, not active
    Feb 26 16:48:56 arch laptop-mode[1834]: Laptop mode
    [xx@arch Desktop]$ uname -a
    Linux arch 3.13.5-1-ARCH #1 SMP PREEMPT Sun Feb 23 00:25:24 CET 2014 x86_64 GNU/Linux
    Could you please someone help me with this?
    Thanks

    Sorry to bump this, but I'm having the exact same error tonight on my HTPC, any chance you found out what the problem was ?
    To make matters worse, it's not happening every single time, but maybe every 4 out of 5 boots (same kernel, no changes in between.)
    I thought this was a kernel issue related to this:
    https://lkml.org/lkml/2014/3/10/359
    I've tried adding atkbd and psmouse to my mkinitcpio.conf MODULES section and rebuilt, but no change.
    I changed the NVidia driver from nvidia-304xx to nvidia-full-beta-all ( 334.21 ) from AUR but it had the same error at the same place.
    Here's the part from `dmesg` where it borks:
    [ 3.229195] logitech-djreceiver 0003:046D:C52B.0003: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:04.0-3/input2
    [ 3.236312] input: Logitech Unifying Device. Wireless PID:400e as /devices/pci0000:00/0000:00:04.0/usb3/3-3/3-3:1.2/0003:046D:C52B.0003/input/input6
    [ 3.237230] logitech-djdevice 0003:046D:C52B.0004: input,hidraw1: USB HID v1.11 Keyboard [Logitech Unifying Device. Wireless PID:400e] on usb-0000:00:04.0-3:1
    [ 3.279150] BUG: unable to handle kernel NULL pointer dereference at (null)
    [ 3.280083] IP: [<ffffffffa1cbc317>] mousedev_open_device+0x77/0x100 [mousedev]
    [ 3.280810] PGD c99ea067 PUD c9f4a067 PMD 0
    [ 3.281266] Oops: 0000 [#1] PREEMPT SMP
    [ 3.281668] Modules linked in: mousedev(+) nvidia(PO+) snd_hda_codec_realtek hid_logitech_dj usbhid hid usb_storage coretemp evdev microcode pcspkr serio_raw snd_hda_intel(+) snd_hda_codec shpchp snd_hwdep snd_pcm snd_page_alloc snd_timer snd soundcore i2c_nforce2 i2c_core wmi processor button r8169 mii ext4 crc16 mbcache jbd2 sd_mod ata_generic pata_acpi ahci libahci libata ohci_pci ohci_hcd ehci_pci ehci_hcd scsi_mod usbcore usb_common psmouse atkbd libps2 i8042 serio
    [ 3.281820] CPU: 1 PID: 211 Comm: acpid Tainted: P O 3.13.6-1-ARCH #1
    [ 3.281820] Hardware name: To Be Filled By O.E.M. To Be Filled By O.E.M./MCP7A-ION, BIOS 080015 10/10/2009
    [ 3.281820] task: ffff8800ca5c1b00 ti: ffff8800c97f0000 task.ti: ffff8800c97f0000
    [ 3.281820] RIP: 0010:[<ffffffffa1cbc317>] [<ffffffffa1cbc317>] mousedev_open_device+0x77/0x100 [mousedev]
    [ 3.281820] RSP: 0018:ffff8800c97f1c10 EFLAGS: 00010202
    [ 3.281820] RAX: 0000000000000000 RBX: ffff8800c9987000 RCX: ffff8800c9987068
    [ 3.281820] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000246
    [ 3.281820] RBP: ffff8800c97f1c28 R08: 0000000000000000 R09: ffff8800cf401600
    [ 3.281820] R10: 0000000000000000 R11: 0000000000000004 R12: 0000000000000000
    [ 3.281820] R13: ffff8800c9987080 R14: ffff8800c0260058 R15: ffff8800c9f2a500
    [ 3.281820] FS: 00007f8f12f05700(0000) GS:ffff8800cfa80000(0000) knlGS:0000000000000000
    [ 3.281820] CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b
    [ 3.281820] CR2: 0000000000000000 CR3: 00000000ca93e000 CR4: 00000000000007e0
    [ 3.281820] Stack:
    [ 3.281820] ffff8800c9940000 ffff8800c9987000 ffff8800c9987078 ffff8800c97f1c60
    [ 3.281820] ffffffffa1cbd0cc ffff8800c9987348 ffff8800c0260058 ffff8800c9f2a500
    [ 3.281820] ffffffffa1cbde80 ffff8800c9f2a510 ffff8800c97f1c98 ffffffff811a83ef
    [ 3.392372] Call Trace:
    [ 3.398245] [<ffffffffa1cbd0cc>] mousedev_open+0xcc/0x150 [mousedev]
    [ 3.398245] [<ffffffff811a83ef>] chrdev_open+0x9f/0x1d0
    [ 3.398245] [<ffffffff811a1a87>] do_dentry_open+0x1b7/0x2c0
    [ 3.398245] [<ffffffff811aee61>] ? __inode_permission+0x41/0xb0
    [ 3.398245] [<ffffffff811a8350>] ? cdev_put+0x30/0x30
    [ 3.398245] [<ffffffff811a1ea1>] finish_open+0x31/0x40
    [ 3.398245] [<ffffffff811b1c92>] do_last+0x572/0xe90
    [ 3.398245] [<ffffffff811af156>] ? link_path_walk+0x236/0x8d0
    [ 3.398245] [<ffffffff811b266b>] path_openat+0xbb/0x6b0
    [ 3.508083] random: nonblocking pool is initialized
    [ 3.398245] [<ffffffff811b3d7a>] do_filp_open+0x3a/0x90
    [ 3.398245] [<ffffffff811c0617>] ? __alloc_fd+0xa7/0x130
    [ 3.398245] [<ffffffff811a3074>] do_sys_open+0x124/0x220
    [ 3.398245] [<ffffffff811a318e>] SyS_open+0x1e/0x20
    [ 3.398245] [<ffffffff815216ad>] system_call_fastpath+0x1a/0x1f
    [ 3.556729] Code: 40 c1 85 df 5b 44 89 e0 41 5c 41 5d 5d c3 66 0f 1f 44 00 00 4c 89 ef 41 bc ed ff ff ff e8 22 c1 85 df eb e0 48 8b 15 c9 21 00 00 <8b> 02 8d 48 01 85 c0 89 0a 75 c6 48 8b 05 37 1f 00 00 48 3d 60
    [ 3.556729] RIP [<ffffffffa1cbc317>] mousedev_open_device+0x77/0x100 [mousedev]
    [ 3.556729] RSP <ffff8800c97f1c10>
    [ 3.556729] CR2: 0000000000000000
    [ 3.563412] ---[ end trace 590b482a8704c6ac ]---
    [ 3.980300] input: HDA NVidia HDMI/DP,pcm=3 Phantom as /devices/pci0000:00/0000:00:08.0/sound/card0/input7
    Here's the output on a good boot:
    [ 3.415791] logitech-djreceiver 0003:046D:C52B.0003: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:04.0-3/input2
    [ 3.422256] input: Logitech Unifying Device. Wireless PID:400e as /devices/pci0000:00/0000:00:04.0/usb3/3-3/3-3:1.2/0003:046D:C52B.0003/input/input6
    [ 3.422644] logitech-djdevice 0003:046D:C52B.0004: input,hidraw1: USB HID v1.11 Keyboard [Logitech Unifying Device. Wireless PID:400e] on usb-0000:00:04.0-3:1
    [ 3.434861] mousedev: PS/2 mouse device common for all mice
    [ 3.853639] input: HDA NVidia HDMI/DP,pcm=3 Phantom as /devices/pci0000:00/0000:00:08.0/sound/card0/input7
    Here's my mkinitcpio.conf
    : grep -v ^\# /etc/mkinitcpio.conf
    MODULES="atkbd psmouse"
    BINARIES=""
    FILES=""
    HOOKS="base udev autodetect modconf block filesystems keyboard fsck"
    Last edited by corpdecker (2014-03-19 02:47:30)

  • Problems with partitioning and install Grub. Fresh install

    All,
    First post here. I appreciate any help you can offer.
    I am having some problems when installing Arch Linux.
    I am installing Arch on a brand new (3 days old) Toshiba SatelliteC655D-S5300 Laptop.
    Hot sheet can be found at http://cdgenp01.csd.toshiba.com/content … -S5300.pdf.
    I was initially installing from 2011.08.19 x86_64 Core CD but someone suggested using the latest version.
    Now I am installing from 2011.11.13 x86_64 CD burned at 4x (the slowest my burner can go).
    I am able to complete all steps up to installing GRUB, but it fails to install.
    During partitioning I receive a few errors and I believe this is contributing to the issue.
    At first I tried automatic partitioning with 100mb boot, 1024mb swap, 10,000mb / and the rest of 320g for /home. Each partition is ext3 except /boot which is ext2.
    During the automatic partitioning an error briefly occured: /usr/lib/aif/core/libs/lib-blockdevices-filesystems.sh: line 355: !((partition_flag)): command not found.
    After speaking with a friend they suggested manually partitioning and using UUIDs instead.
    1) So far I have removed all partitions, rebooted.
    2) Partitioned using cFdisk. Bootable 100mb parition, 1024mb swap, 15,000mb primary (/), 3000mb logical (/var), and the rest 300949mb logical (/home).
    3) Once I write the changes and quit I reboot.
    4)I go back into the installer and complete steps 1-3.
    5) Go to step 4 and and then manually configure block devices, file systems, or mount points.
    6) I choose the option for uuid and hit ok.
    At this point 3 error messages appear at the bottom:
    /usr/lib/aif/core/libs/lib-ui-interactive.sh: line 602: local: 'part,' : not a valid identifier
    /usr/lib/aif/core/libs/lib-ui-interactive.sh: line 602: local: 'type,' : not a valid identifier
    /usr/lib/aif/core/libs/lib-ui-interactive.sh: line 602: local: 'label,' : not a valid identifier
    (Screenshot: http://i.imgur.com/OHRKo.jpg)
    7) Next it prompts me to add the mount points for each partition set.
    8) Select the partition, the mount point, it asks me for label and any additional opts for mkfs.ext3.
    9) I leave the label and opts field blank. After selecting ok to the opts field I get the same 3 errors as above:
    /usr/lib/aif/core/libs/lib-ui-interactive.sh: line 602: local: 'part,' : not a valid identifier
    /usr/lib/aif/core/libs/lib-ui-interactive.sh: line 602: local: 'type,' : not a valid identifier
    /usr/lib/aif/core/libs/lib-ui-interactive.sh: line 602: local: 'label,' : not a valid identifier
    (Screenshot: http://i.imgur.com/QqkSP.jpg)
    I am able to successfully set a mount point and format each partition. But I receive the same set of 3 errors occur for each partition.
    10) Once I complete the formatting I proceed to step 8, install bootloader.
    It says Generating Grub device map.. This could take a while. Please be patient.
    I receivieve the following error on this screen: /usr/lib/aif/core/libs/lib-blockdevices-filesystems.sh: line 355: !((partition_flag)): command not found.
    (Screenshot: http://i.imgur.com/B5j4K.jpg)
    11) After the error displays it goes to the next screen, before installing grub you must review config file. etc.
    12) I hit ok and then :q the config file. Is there a critical change in the config file that I'm missing?
    13) After closing the file I select which the boot device where the GRUB bootloader will be installed. My only option is /dev/sda. I hit ok
    Then I get the following 2 errors:
    /usr/lib/aif/core/libs/lib-blockdevices-filesystems.sh: line 355: !((partition_flag)): command not found
    /usr/lib/aif/core/libs/lib-blockdevices-filesystems.sh: line 355: !((partition_flag)): command not found
    (Screenshot: http://i.imgur.com/ol840.jpg)
    13) Error installing GRUB. See /dev/tty7 for output. Ok
    14) GRUB was NOT successfully installed. Ok
    I checked out TTY7.
    It shows the installer issuing the following commands in GRUB.
    1) device (hd0,) /dev/sda
         Error 12: Invalid device requested
    2) root (hd0,0)
         Filesystem type is extf2, partition type 0x83
    3) setup (hd0,)
    Checking if "/boot/grub/stage1" exists... no
    Checking if "/grub/stage1" exists... yes
    Checking if "/grub/stage2" exists... yes
    Checking if "/grub/e2fs_stage1_5" exists... yes
    Running "embed /grub/e2fs_stage1_5 (hd0,0)"... failed (this is not fatal)
    Running "embed /grub/e2fs_stage1_5 (hd0,0)"... failed (this is not fatal)
    Running "install /grub/stage1 (hd0,0) /grub/stage2 p /grub/menu.lst "... succeeded
    Done.
    4) quit
    I have tried rebooting from here and using the Arch CD to boot into the existing OS but it does not work.
    I tried grub-install /dev/sda
    I get Probing devices to check BIOS drives. This may take a long time.
    /dev/mapper../dm-0 does not have any corresponding BIOS drive.
    I have tried going into grub and issuing the same commands the install script did.
    Same errors.
    I'm afraid I don't have network access at the moment so I can't get a successful /arc/report-issues to run.
    I hope I've included enough information to start the troubleshooting.
    Let me know if I've missed anything!
    Thanks in advance,
    -Jason
    Last edited by username17 (2011-11-17 22:37:56)

    username17 wrote:I get Probing devices to check BIOS drives. This may take a long time.
    /dev/mapper../dm-0 does not have any corresponding BIOS drive.
    Your drive does not have an MBR to install grub to as it is a GPT disk - which is also not supported under the old GRUB.
    You need to create a small partition at the very beginning of the drive (8MB is plenty) and set the "bios_grub" flag. ie the "BIOS drive" your error refers to.
    You will then need to install the grub2-bios package following the chroot instructions on the grub2 wiki page here: https://wiki.archlinux.org/index.php/GRUB2#Installation
    ** Please note that I found the chroot mounts to be outdated - replace "/tmp/install" with "/mnt" **
    Your alternative solution is to boot a gparted liveCD and prepare your disk as MBR - this will (most likely) destroy all existing data on the disk.

  • Problems with MySQL in Slave mode

    Hi erverybody!!!
    I have a problem with my IDM and mysql.
    This is my envioroment:
    I have installed one IDM and has a Database on Mysql. I have a DRP and i have other server of IDM an his database.
    The databases of mysql are replicated and are configurated like "Master-Slave"
    My problem:
    When the production server is down i try to work with the DRP enviorement but the IDM can't access to the database.
    My question
    When the instance is on "slave mode" the IDM can access to the database??
    Thanks 4 your answers

    This happens to be an Oracle forum.
    Oracle is not akin to MySQL in any fashion.
    Please use Google to find a MySQL forum.
    Sybrand Bakker
    Senior Oracle DBA

  • Crystal Report on Universe with MySQL ODBC

    Hi
    I created a report with Crystal reports by using a Universe based on MySQL ODBC. In my local (Windows XP) installed Report Designer everything is running fine. I'm also able to publish this report to my BOE, based on RHEL.
    If I will refresh my report on InfoView, database credential are required, but my credential are not accepted. I only become a error message: Failed to open the connection
    If I use Webi with the same universe and the same connection, everything is fine.
    I have also change the ODBC version, but no other result.
    Any idea, where I can trace this connection?
    Versions:
    Crystal Reports 2008 (12.0.0.683)
    Business Objects Enterprise 3.0 (12.0.0.683)
    MySQL ODBC 3.51.27 and 5.1.5
    Thanks a lot
    Christoph

    Hi,
    thank you very much for reply.
    I think you got it. We have the goal to create a report that can be printed and is top-gloss-report for management ; ) One query would not be able to include all that stuff. It is very different.
    So we created 7 different queries in SAP BW Query Designer and we want to put them together in BO Crystal Reports.
    All Queries work with input variable for period and year. These input variables are used in the columns of the queries for calculating the key figures.
    So, if we put these queries together into Crystal Reports, we should actually use "replacement path" for variables. But the sap.help says, that isn't doable.

  • Problem with MySQL (SOLVED)

    Hello everybody. I have a problem with my MySQL server. Just installed it, ant when i try to start it:
    [root@localhost html]# /etc/rc.d/mysqld start
    :: Adding mysql group [DONE]
    :: Adding mysql user [DONE]
    Installing MySQL system tables...
    ERROR: 1062 Duplicate entry 'localhost-' for key 1
    071223 22:35:05 [ERROR] Aborting
    071223 22:35:05 [Note] /usr/sbin/mysqld: Shutdown complete
    Installation of system tables failed!
    I tryed to search some info in google, havent found anything.
    Does anybody has some ideas?
    Last edited by neXTPeer (2007-12-23 08:38:09)

    I have a huge problem, it seems I can't login to my own mysql server
    mysql -u root -p
    Enter password:
    ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
    The first time I started mysqld I got the same error as above. The script that should create an account stopped. Because of this I didn't set a root password. I think I never set a root password, but somehow mysqld expects one.
    Could someone help?
    btw: my host in rc.conf is not localhost and it's corresponding with the hostname in /etc/hosts
    -edit--
    I just tried these steps: http://dev.mysql.com/doc/refman/5.0/en/ … sions-unix
    But this also didn't work
    --edit2--
    Seems that there isn't a root account at all!
    Last edited by Vrieskist (2008-02-07 02:21:24)

  • Connection with MYSQL ODBC

    Post Author: wrkwinter
    CA Forum: Data Connectivity and SQL
    Hi,   I am having problem with conecting Crystal Report XI to the MYSQL Server. I am using Mysql Connector/ODBC 3.51. I configured ODBC connection . Once i connect to MYSQL server thru Crystal Rpeort Everything works fine but after 5-10 minutes if i refresh the report I get following error.
    "Failed to retrieve data from the database"DetailsHY000:&#91;MySQL&#93;&#91;ODBC 3.51 driver&#93;&#91;mysqld-4.1.22-standard-log&#93;&#91;MySQl server has gone away&#91;Database vendor code :2006&#93; and if i log off and relog on to database everything works fine like for another 5-10 minutes and after that same ERROR  But if i use MYSQL Query Browser to connect to the database. I don't have any problem like that.  Can please explain any reason for that.....Thanks

    Post Author: synapsevampire
    CA Forum: Data Connectivity and SQL
    Check out:
    http://www.mysqltalk.org/server-has-gone-away-vt158777.html
    I'd guess that you're timing out or exceeding the number of connections.
    -k

  • Has anybody had any problems with the ODBC driver version 10.2.0.2.0?

    Hi,
    I have experienced a problem with my current version of the ODBC driver (version 10.1.0.2) and have been advised to upgrade to the newest version 10.2.0.2.0.
    As the driver was only released a couple of months ago, I am a bit wary about upgrading. Has anybody out there had any issues with the reliability of this driver or does it seem to be pretty stable?
    Thanks very much,
    Caroline

    Sorry, forgot to mention it is on linux.
    Setting SetJavaHome in the jdev.conf did not help.
    I did find a way to at least start the IDE though.
    Either comment out SetJavaVM in the jdev.conf or start jdev with the -client option
    Also to note:
    I downloaded the jdk 1.4.2 32 bit for x86 and i can't get jdev to start:
    current locale is not supported in X11, locale is set to CX locale modifiers are not supported, using defaultjava.lang.InternalError: Current locale is not supported
    at sun.awt.motif.MWindowPeer.pSetTitle(Native Method)
    at sun.awt.motif.MWindowPeer.init(MWindowPeer.java:97)
    at sun.awt.motif.MFramePeer.<init>(MFramePeer.java:58)
    So right now i'll try to hack it with j2se 5...

  • Problem with n 79 instal java software

    hi
    i have one problem with my nokia n 79
    when i install a java software or game my device ask me where do u wana install? in memory card or memory phone.its natural.but if i select memory card when the installation finished autorun to start the program and software is disable and when i go to the application list are no icon of that progran to run.but in installation list there is it.so there is any icon andany way to run it.
    its just abouy java program and install to memroy card
    i dont have any problem with symbian in 2 memory and  java when i install it in memory phone
    please help me
    thanks

    dear alzaeem i ran java in before this time when i installed it in memory card
    i dont know whay u say it doesnt run in memory card
    before this i installed every application of java and symbian in memory card with out any problem and after installation icon of them were in application list
    when i install java in memry card i dont have problem with installation and its complete installation and there is the name of that software java in installation list but my problem is that there is any icon of software in application list or every where to start or run it.

  • Problem with downloading and installing apps

    When I start download or install new apps after few second whole operation slow down or stop. I have same problem when I start update old version of aplications. Can you please help.
    I do not have problem with cnnection to internet.

    Try this
    Make sure IOS is updated to latest version
    (How to update your iOS device
    http://support.apple.com/kb/HT4623)
    Reboot device by pressing both the home button and sleep/wake (power) buttons at the same time for 10-15 seconds until the apple logo appears on the screen, then let go.
    If that doesn't work then reset the device by going to settings/general/reset/reset all settings  (or for network connection issues 'reset network settings').
    (no media or data will be deleted from the device, this will only take a minute).

Maybe you are looking for

  • Adobe Cloud installation problem

    Hi guys, I just did a sytem restore, and Adobe illustrator is no longer in my computer... when I tried to get it again...upsss the Adobe Cloud said that I have already AI on my system. I am not able to install it again, any idea? I am desperate... th

  • Java.lang.ExceptionInInitializer error using db2 ud

    package LoadDriver; import java.sql.*; public class LoadDriver      public Statement driver() throws Exception           String dbUrl = "jdbc:db2:deal://extreme:50000";           String user ="";           String password ="";           Statement s;

  • HT4972 is it possible to update iphone 3gs to iOS 5 or more?

    I've been told that it's possible to get the most upto date iOS on my iphone 3gs, but everytime I try to update it only goes to 4.1, I'm beginning to wonder if it is even possible or if there is another way of doing it that I haven't yet tried.  I ha

  • Can't save a model

    I can create objects, connect to back-end systems, create iviews and forms, deploy models and test on the portal. But, I can't seem to save my work in vc. Any thoughts? Thanks, Thomas

  • Consulta sobre "Lightwindow"

    Amigos Antes que nada "Felices Fiestas" para todos, no pude mandar saludos antes ni escribir mucho al grupo porque (me imagino que como a todos en realidad) este fin de año me sorprendió con miles de cosas por terminar, y muy poco tiempo para cada un