[SOLVED] Nouveau Module not starting at boot. Starts with modprobe.

I am currently using 64 bit arch linux along with grub2 for the boot loader. When I boot into arch the nouveau does not look to start. If I run dmesg it has no mention of it. Once I am in the system I can run modprobe nouveau and it starts up fine.
my mkinitcpio.conf has the following for the modules configuration: MODULES="nouveau"
I have rebuilt the image with "mkinitcpio -p linux" and remade the grub configuration with "grub-mkconfig -o /dev/sda" . I also made sure nouveau was not in the modprobe blacklist because I did have the nvidia drivers installed before hand.
Any ideas on why nouveau doesn't start after Grub?
Last edited by PupNSuds (2013-10-18 01:49:41)

Thank you for pointing that out. I did follow that but I forgot I had also tried an older NVIDIA driver 304 to be exact. So instead of running the exact command they had I ran "pacman -Qs nvidia"  which displayed the following.
local/libvdpau 0.7-1
    Nvidia VDPAU library
local/nvidia-304xx 304.108-8
    NVIDIA drivers for linux, 304xx legacy branch
local/xf86-video-nouveau 1.0.9-1 (xorg-drivers xorg)
    Open Source 2D acceleration driver for nVidia cards
So knowing the package name I removed it with the same command but with the proper NVIDIA version. "pacman -Rdds nvidia-304xx" . Every thing seems to be working now. Thank you again.

Similar Messages

  • [SOLVED] "warning: could not find /bin/bash, starting /bin/sh instead"

    Hello all.
    I've just installed arch, despite very little knowledge of linux (i had ubuntu for a short while before this), but I like a challenge so i thought i'd throw myself in at the deep end.
    The installation went reasonably smoothly, but now i've got it up and running (with a minimal KDE install) but when I open up the konsole, I get the message
    "Warning: Could not find '/bin/bash/', starting '/bin/sh' instead. Please check your profile settings."
    and subsequently I cannot "su jake" (jake being my username, obviously). It requests my password, but when i press return I get the response
    su: /bin/bash/: Not a directory
    which means i've obviously done something wrong, but I cant make head nor tail of the archwiki on Bash, and from googling, I cant find anyone with a similar issue. I can run from root, but it's not ideal.
    Thanks for any response as to why this might be happening, and how to fix it.
    Last edited by hansolo128 (2012-04-24 08:55:37)

    @oxyd
    sh-4.2$ cat /etc/shells
    # /etc/shells
    /bin/sh
    /bin/bash
    # End of file
    root:x:0:0:root:/root:/bin/bash
    jake:x:1000:100::/home/jake:/bin/bash/
    the output of /etc/passwd is
    root:x:0:0:root:/root:/bin/bash
    bin:x:1:1:bin:/bin:/bin/false
    daemon:x:2:2:daemon:/sbin:/bin/false
    mail:x:8:12:mail:/var/spool/mail:/bin/false
    ftp:x:14:11:ftp:/srv/ftp:/bin/false
    http:x:33:33:http:/srv/http:/bin/false
    nobody:x:99:99:nobody:/:/bin/false
    dbus:x:81:81:System message bus:/:/bin/false
    jake:x:1000:100::/home/jake:/bin/bash/
    usbmux:x:140:140:usbmux user:/:/sbin/nologin
    mysql:x:89:89::/var/lib/mysql:/bin/false
    kdm:x:135:135::/var/lib/kdm:/bin/false
    avahi:x:84:84:avahi:/:/bin/false
    moving my home directory from /bin/bash/ to /bin/bash on the line of my username now allows me to su jake, but it doesnt solve the warning that /bin/bash/ doesnt exist.

  • [Solved] grub2: file not found but booting fine

    I just ran grub-mkconfig to update my grub.cfg because I installed E4rat. But now I have a problem: Every entry in grub2 can be booted and E4rat really boosted my boot process so actually everything is fine. But while grub2 is loading it says something like:
    Grub 2 is loading...
    Welcome to Grub 2!
    error: file not found.
    error: file not found.
    error: file not found.
    Now grub shows up and everything is as it should be. When I select Arch it again says "error: file not found." three times and continues with a normal boot process. So basically it's nothing that would brake my system but something seems not right and that's just a huge annoyance.
    Here's my grub.cfg just in case:
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    set default="0"
    if [ x"${feature_menuentry_id}" = xy ]; then
    menuentry_id_option="--id"
    else
    menuentry_id_option=""
    fi
    export menuentry_id_option
    if [ "${prev_saved_entry}" ]; then
    set saved_entry="${prev_saved_entry}"
    save_env saved_entry
    set prev_saved_entry=
    save_env prev_saved_entry
    set boot_once=true
    fi
    function savedefault {
    if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
    fi
    function load_video {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    fi
    set menu_color_normal=light-blue/black
    set menu_color_highlight=light-cyan/blue
    if [ x$feature_default_font_path = xy ] ; then
    font=unicode
    else
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos5'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 --hint='hd0,msdos5' f7960d1a-77ab-4230-ab43-ff931f0b2175
    else
    search --no-floppy --fs-uuid --set=root f7960d1a-77ab-4230-ab43-ff931f0b2175
    fi
    font="/usr/share/grub/unicode.pf2"
    fi
    if loadfont $font ; then
    set gfxmode=1440x900x32
    load_video
    insmod gfxterm
    set locale_dir=$prefix/locale
    set lang=en_GB
    insmod gettext
    fi
    terminal_input console
    terminal_output gfxterm
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos5'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 --hint='hd0,msdos5' f7960d1a-77ab-4230-ab43-ff931f0b2175
    else
    search --no-floppy --fs-uuid --set=root f7960d1a-77ab-4230-ab43-ff931f0b2175
    fi
    insmod png
    background_image -m stretch /boot/grub/archlinux.png
    set timeout=5
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/10_linux ###
    menuentry 'Arch Linux GNU/Linux, with Linux core repo kernel' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-true-f7960d1a-77ab-4230-ab43-ff931f0b2175' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos5'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 --hint='hd0,msdos5' f7960d1a-77ab-4230-ab43-ff931f0b2175
    else
    search --no-floppy --fs-uuid --set=root f7960d1a-77ab-4230-ab43-ff931f0b2175
    fi
    echo 'Loading Linux core repo kernel ...'
    linux /boot/vmlinuz-linux root=UUID=f7960d1a-77ab-4230-ab43-ff931f0b2175 ro init=/sbin/e4rat-preload quiet loglevel=3 logo.nologo console=tty1 splash=silent,fadein,fadeout,theme:arch-black
    echo 'Loading initial ramdisk ...'
    initrd /boot/initramfs-linux.img
    menuentry 'Arch Linux GNU/Linux, with Linux core repo kernel (Fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-fallback-f7960d1a-77ab-4230-ab43-ff931f0b2175' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos5'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 --hint='hd0,msdos5' f7960d1a-77ab-4230-ab43-ff931f0b2175
    else
    search --no-floppy --fs-uuid --set=root f7960d1a-77ab-4230-ab43-ff931f0b2175
    fi
    echo 'Loading Linux core repo kernel ...'
    linux /boot/vmlinuz-linux root=UUID=f7960d1a-77ab-4230-ab43-ff931f0b2175 ro init=/sbin/e4rat-preload quiet loglevel=3 logo.nologo console=tty1 splash=silent,fadein,fadeout,theme:arch-black
    echo 'Loading initial ramdisk ...'
    initrd /boot/initramfs-linux-fallback.img
    ### END /etc/grub.d/10_linux ###
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    menuentry 'Windows 7' {
    set root='(hd0,1)'; set legacy_hdbias='0'
    parttool "$root" boot+
    chainloader '+1'
    ### END /etc/grub.d/40_custom ###
    And my /etc/default/grub:
    GRUB_DEFAULT=0
    GRUB_TIMEOUT=5
    GRUB_DISTRIBUTOR="Arch Linux"
    # Default:
    #GRUB_CMDLINE_LINUX_DEFAULT="quiet"
    # Splashy boot:
    GRUB_CMDLINE_LINUX_DEFAULT="quiet loglevel=3 logo.nologo console=tty1 splash=silent,fadein,fadeout,theme:arch-black"
    GRUB_CMDLINE_LINUX="init=/sbin/e4rat-preload"
    # Preload both GPT and MBR modules so that they are not missed
    GRUB_PRELOAD_MODULES="part_gpt part_msdos"
    # Uncomment to enable Hidden Menu, and optionally hide the timeout count
    #GRUB_HIDDEN_TIMEOUT=5
    #GRUB_HIDDEN_TIMEOUT_QUIET=true
    # Uncomment to use basic console
    GRUB_TERMINAL_INPUT=console
    # Uncomment to disable graphical terminal
    #GRUB_TERMINAL_OUTPUT=console
    # The resolution used on graphical terminal
    # note that you can use only modes which your graphic card supports via VBE
    # you can see them in real GRUB with the command `vbeinfo'
    # GRUB_GFXMODE=auto
    GRUB_GFXMODE=1440x900x32
    # Uncomment to allow the kernel use the same resolution used by grub
    GRUB_GFXPAYLOAD_LINUX=keep
    GRUB_BACKGROUND="/boot/grub/archlinux.png"
    # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
    # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
    #GRUB_DISABLE_LINUX_UUID=true
    # Uncomment to disable generation of recovery mode menu entries
    GRUB_DISABLE_RECOVERY=true
    # Uncomment and set to the desired menu colors. Used by normal and wallpaper
    # modes only. Entries specified as foreground/background.
    GRUB_COLOR_NORMAL="light-blue/black"
    GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
    # Uncomment one of them for the gfx desired, a image background or a gfxtheme
    #GRUB_BACKGROUND="/path/to/wallpaper"
    #GRUB_THEME="/path/to/gfxtheme"
    # Uncomment to get a beep at GRUB start
    #GRUB_INIT_TUNE="480 440 1"
    I haven't updated my grub.cfg in a while because there was no need to.
    Thanks in advance for advices.
    Last edited by retzu (2012-04-16 14:16:02)

    I have the same error message as in the first post.  "error: file not found" listed three times when I first choose Arch from the Grub2 menu.  The solution linked to by the.ridikulus.rat would not seem to apply as I do not have the locales en* in /boot/grub/locale  BTW, I am in the US.  The system does boot though.
    I just fixed this a few seconds ago and was going to post how, basically I just did "cp /boot/grub/locale/[email protected] /boot/grub/locale/en_US.mo" which seem to do the trick, the reason I didn't fix this sooner is the error only stays up for a very small fraction of a second making it hard to read.
    # ls /boot/grub/locale
    ast.mo da.mo fi.mo hu.mo it.mo nl.mo ru.mo uk.mo zh_CN.mo
    ca.mo de.mo fr.mo id.mo ko.mo pl.mo sv.mo vi.mo
    EDIT:  I get the same three "error: file not found" messages when I boot Fedora (a multiboot system).  This is with grub2 installed from Arch Linux.
    Last edited by David Batson (2012-05-02 20:03:41)

  • [SOLVED] Virtualbox module "vboxdrv" - loading at boot

    I can manualy boot the "vboxdrv" module using
    sudo modprobe vboxdrv
    and this works every time - I can use Virtual box withouth problems. I would really like to load this module at boot time using the "/boot/syslinux/syslinux.cfg" file and then recompile the image using mkinitcpio -p. I edited the file like this, but the module doesn't get loaded.
    LABEL arch
    MENU LABEL Linux (Arch)
    LINUX ../vmlinuz-linux
    APPEND root=/dev/sda3 rw init=/usr/lib/systemd/systemd vboxdrv
    INITRD ../initramfs-linux.img
    I have seen that people useing "modeprobe.****=*****" command or something similar in this file to load modules. How should I use this to load vboxdrv module?
    Last edited by 71GA (2014-04-13 11:48:36)

    halimbo wrote:
    I don't see the problem in adding vboxdrv to the initramfs, when he clearly wants to have it loaded anytime he boots.
    For the graphics drivers it's supposed in the wiki, too.
    So I don't see a problem in adding the driver for virtualbox. but that's just me, i see.
    When i follow your argumentation, there is no reason to add graphics drivers in /etc/mkinitcpio.conf because the drivers are not needed to mount the initial filesystem.
    It's not only about mounting the real root it's about ensuring a succesfull bootup of the whole system and having graphics modules loaded early helps to do that. On my laptop for example there is a race condition with X11, which wants to start before udev figured out the appropriate graphics driver module to load. So it would boot into terminal and the display manager service would report "failed" as status otherwise.
    Last edited by blackout23 (2014-04-13 18:45:14)

  • [SOLVED] External HDD not mounting at boot

    So, I've got this USB external HDD which won't mount at boot time. I set it in /etc/fstab using its UUID and it works immediately after boot if I do
    sudo mount -a
    I had it before on a different machine, running Arch too, and never had this problem. How can I see what's going on at boot time? I usualy just start the computer remotely (wake on lan).
    Last edited by RaisedFist (2010-10-21 11:22:46)

    Couldn't it be caused by the external HDD not being ready yet when the system boot? Nowadays I rarely encounter these issues, but some years ago even certain internally connected drive would need a delay to get ready for boot. If so settings in BIOS has to be adjusted.
    Just a quick guess.

  • [solved] AMD Ucode not loading on boot

    Its being called twice during the early hooks stage of udev.
    i have already googled and found I needed to have installed the AMD Ucode package. I have version 2012.1.17-3 but it is being ignored.
    Im getting the error
    [unix time stamp i assume] microcode: failed to load file amd-ucode/microcode_amd.bin
    twice after a long pause.
    How do  I fix it?
    Last edited by Rhiadratech (2012-09-10 14:10:51)

    I have put microcode in there as per instructions, but the word microcode was not in mkinitcpio.conf when I installed the system and started seeing the message. I think I added it on instructions in one of the 2 threads or an arch wiki page on the subject. I'll remove it.
    The thing is I HAVE the amd-ucode package installed,  and i'm STILL getting the message and associated delay on boot. So I'm looking for how I inform it I have installed it?
    Last edited by Rhiadratech (2012-09-08 19:35:07)

  • Kernel modules not loading at boot.

    ~]$ systemctl status systemd-modules-load.service
    systemd-modules-load.service - Load Kernel Modules
    Loaded: loaded (/usr/lib/systemd/system/systemd-modules-load.service; static)
    Active: failed (Result: exit-code) since Tue 2014-03-11 18:34:06 CDT; 4min 53s ago
    Docs: man:systemd-modules-load.service(8)
    man:modules-load.d(5)
    Process: 137 ExecStart=/usr/lib/systemd/systemd-modules-load (code=exited, status=1/FAILURE)
    Main PID: 137 (code=exited, status=1/FAILURE)
    Mar 11 18:34:06 arch-m systemd-modules-load[137]: Failed to insert 'vboxguest...
    Mar 11 18:34:06 arch-m systemd-modules-load[137]: Failed to insert 'vboxsf': ...
    Mar 11 18:34:06 arch-m systemd-modules-load[137]: Inserted module 'vboxvideo'
    Mar 11 18:34:06 arch-m systemd-modules-load[137]: Inserted module 'vboxdrv'
    Mar 11 18:34:06 arch-m systemd-modules-load[137]: Inserted module 'vboxnetadp'
    Mar 11 18:34:06 arch-m systemd-modules-load[137]: Failed to find module 'vbox...
    Mar 11 18:34:06 arch-m systemd[1]: systemd-modules-load.service: main proce...RE
    Mar 11 18:34:06 arch-m systemd[1]: Failed to start Load Kernel Modules.
    Mar 11 18:34:06 arch-m systemd[1]: Unit systemd-modules-load.service entere...e.
    Warning: Journal has been rotated since unit was started. Log output is incomplete or unavailable.
    Hint: Some lines were ellipsized, use -l to show in full.
    Does any one know how to fix this? AFter a while it became annoying.

    More importantly, the modules are built for a specific kernel version.  So if the kernel gets updated and the virtualbox modules get overlooked somehow, then they are not going to work.  You can always rebuild them with makepkg and ABS though.

  • [SOLVED] LVM volume not found while booting

    I have an error while trying to boot with both Syslinux and GRUB (GRUB was my 1st choice but I got this error so switched to Syslinux). It's BIOS system, my boot is on /dev/sda1 and root is inside LVM on /dev/sda2. It states that device /dev/mapper/TheVG-RootLV can not be found so the problem is with LVM. There is lvm2 hook in mkinitcpio.conf, dolvm in my kernel line... what could I do wrong? I had no problem with this exact setup on my UEFI system and GRUB. Boot partition is loaded even if it's also inside LVM (that was the case when I was trying to run it via GRUB). GPT partition table.
    Last edited by smsware (2013-05-25 16:55:48)

    This has been an ongoing issue with the Arch Linux LVM2 setup since it was changed to using lvmetad.  You did nothing wrong.  My home server still sits on an LVM, so what I did was downgraded lvm2 and device-mapper on that machine and have been ignoring the updates until I can find a better solution... though I haven't been looking very hard.
    Also, with mkinitcpio, there is no "dolvm" command line parameter.  It runs the LVM2 stuff depending on whether or not you have the lvm hook in your mkinicpio.conf (or add it otherwise with the command line).  So yu can safely remove that.
    The reason that Grub is able to read the /boot partition, but then it can still fail to find the rootfs is because these are two separate things.  Grub has its own system to give it LVM compatibility.  So it uses its stuff to read that, gets the information it needs, then loads the kernel and initramfs. It then passes the system off, at which point, this process of detecting the LVM and finding the rootfs happens all over again, albiet with the kernel and native linux userspace tools.
    My laptop was on LVM2 when this change occurred.  It worked for a while, and then just totally borked... well not toally, but it was way inconsistent and super frusturating.  So I changed to btrfs.  There is a thread about luks and lvm2 not booting, but it is actually just about lvm2, as the luks part of it was just cioncidence.  You may want to ahve a look there because there is a slight change you can make in your lvm.conf that might help.  It helped in my case, but it only made it slightly less borked, which is why I eventually changed setups.
    Edit: I remember the edit having something to do with a filter... or global filter... something about having it not scan floppies and cdroms and whatnot.
    Last edited by WonderWoofy (2013-05-23 00:05:31)

  • [solved] aesni_intel module not loaded since switch to kmod

    Since installing kmod-4-1 as replacement for module-init-tools the AES-NI instruction optimized crypto modules (aesni_intel) don't get loaded automatically anymore.
    CPU is a SandyBridge Core-i5 2500K; aes-x86_64 isn't loaded anymore either. The CPU definitely supports AES-NI.
    Is this a problem or am I supposed to write those modules down by hand in rc.conf MODULES section?
    Kind regards
    lynix
    Last edited by lynix (2012-02-01 20:57:25)

    Nevermind. I found the bug -- I'll make sure this is fixed for kmod5.
    tech note for those interested:
    A module alias can resolve to many modules -- in this case, the alias 'aes' resolves to "aes_generic", "padlock_aes", "aesni_intel", and "aes_x86_64". modprobe, including the library equivalent, should insist on trying to insert all of these. kmod does, but it makes the mistake of quitting if one of them errors out. To wit:
    with module-init-tools:
    # modprobe -v aes
    insmod /lib/modules/3.2.2-1-ARCH/kernel/crypto/aes_generic.ko.gz
    insmod /lib/modules/3.2.2-1-ARCH/kernel/drivers/crypto/padlock-aes.ko.gz
    WARNING: Error inserting padlock_aes (/lib/modules/3.2.2-1-ARCH/kernel/drivers/crypto/padlock-aes.ko.gz): No such device
    insmod /lib/modules/3.2.2-1-ARCH/kernel/crypto/cryptd.ko.gz
    insmod /lib/modules/3.2.2-1-ARCH/kernel/arch/x86/crypto/aes-x86_64.ko.gz
    insmod /lib/modules/3.2.2-1-ARCH/kernel/arch/x86/crypto/aesni-intel.ko.gz
    WARNING: Error inserting aesni_intel (/lib/modules/3.2.2-1-ARCH/kernel/arch/x86/crypto/aesni-intel.ko.gz): No such device
    with kmod:
    # modprobe -v aes
    insmod /lib/modules/3.2.2-1-ARCH/kernel/crypto/aes_generic.ko.gz
    insmod /lib/modules/3.2.2-1-ARCH/kernel/drivers/crypto/padlock-aes.ko.gz
    ERROR: could not insert 'padlock_aes': No such device
    Last edited by falconindy (2012-02-01 20:54:47)

  • [SOLVED] NFS share not mounting at boot

    Hi All,
    I have an NFS share listed in fstab and it doesn't mount at boot; however, when i mount -a, it mounts fine. Any thoughts?
    Thanks.
    Shawn
    Last edited by shawn.abdushakur (2011-05-06 12:21:27)

    @damnshock: Good point . Here it is:
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    devpts /dev/pts devpts defaults 0 0
    shm /dev/shm tmpfs nodev,nosuid 0 0
    #/dev/cdrom /media/cd auto ro,user,noauto,unhide 0 0
    #/dev/dvd /media/dvd auto ro,user,noauto,unhide 0 0
    #/dev/fd0 /media/fl auto user,noauto 0 0
    /dev/sda1 swap swap defaults 0 0
    LABEL=arch / ext4 defaults 0 1
    UUID=c1a8b2e0-bf9e-4382-ac4e-15c2aec65090 /srv/nfs ext3 defaults 0 0
    /srv/nfs/shawn/Documents /home/shawn/Documents none bind
    /srv/nfs/shawn/Downloads /home/shawn/Downloads none bind
    /srv/nfs/shawn/Music /home/shawn/Music none bind
    /srv/nfs/shawn/Pictures /home/shawn/Pictures none bind
    /srv/nfs/shawn/Videos /home/shawn/Videos none bind
    xbmc:/srv/nfs/watch /home/shawn/Downloads/torrents/watch nfs rsize=8192,wsize=8192,timeo=14,intr

  • [SOLVED] dvd drive not working, log file filled with error.

    hi,
    i dont know if this is something to do with the latest kernel update or something else that may have occured.
    but my dvd writer has stopped working. no light on the front, pressing the button does not open the tray.
    it wtill works fine when i boot into windows (dual boot with XP) so it's not a hardware issue.
    also my everything.log file is filling up with the following every two seconds!
    Mar  1 19:27:56 adax hda: status error: status=0x59 { DriveReady SeekComplete DataRequest Error }
    Mar  1 19:27:56 adax hda: status error: error=0x00 { }
    Mar  1 19:27:56 adax ide: failed opcode was: unknown
    Mar  1 19:27:56 adax hda: drive not ready for command
    Mar  1 19:27:56 adax hda: status error: status=0x59 { DriveReady SeekComplete DataRequest Error }
    Mar  1 19:27:56 adax hda: status error: error=0x00 { }
    Mar  1 19:27:56 adax ide: failed opcode was: unknown
    Mar  1 19:27:56 adax hda: drive not ready for command
    Mar  1 19:27:56 adax hda: status error: status=0x59 { DriveReady SeekComplete DataRequest Error }
    Mar  1 19:27:56 adax hda: status error: error=0x00 { }
    Mar  1 19:27:56 adax ide: failed opcode was: unknown
    Mar  1 19:27:56 adax hda: drive not ready for command
    Mar  1 19:27:56 adax hda: status error: status=0x59 { DriveReady SeekComplete DataRequest Error }
    Mar  1 19:27:56 adax hda: status error: error=0x00 { }
    Mar  1 19:27:56 adax ide: failed opcode was: unknown
    Mar  1 19:27:56 adax hda: drive not ready for command
    can someone please help me before i run out of disk space for my logs!
    thanks,
    ad.
    Last edited by adax (2008-03-01 23:25:37)

    Hello,
    I strongly suspect that you need to change 'ide' to 'pata' in your /etc/mkinitcpio.conf
    #HOOKS="base udev autodetect ide scsi sata usb keymap filesystems"
    HOOKS="base udev autodetect pata scsi sata usb keymap filesystems"
    Then recreate with: 
    mkinitcpio -g /boot/kernel26.img
    Last edited by colnago (2008-03-01 21:21:37)

  • [solved] Eve Online not showing up EULA even with corefonts installed

    Hi,
    I tried to get it running like it is described on http://appdb.winehq.org/objectManager.p … &iId=25823 . But even with corefonts installed by winetricks the EULA won't show up. Any ideas?
    Edit: The EULA actually shows up when waiting over a minute.
    Last edited by ivi3 (2012-09-19 18:22:50)

    Thanks, I had to change mscvr80 and mscvr90 to (builtin, native) also, but your msvcr100 tip lead me there.  Works well for me now, thank you for sharing your experience.

  • [SOLVED] Boot Resolution with Intel Haswell GPU and KMS

    Dear All,
         This thread is a follow up of this one: https://bbs.archlinux.org/viewtopic.php?id=189562. I created a new thread as I think the focus of the problem has shifted and the old title might be misleading and lead to helpful people ignoring the thread. I hope this is ok. Please correct me if I did not behave correctly.
    I think most of the "flashes" I see come from X switching from native resolution (3200x1800) which is used when starting, to 1920x1080, which I set in the configuration file.
    So my question is: how can I have the 1920x1080 resolution at boot (i.e. during early boot, using the KMS and including the i915 driver in mkinitcipo?):
    I tried:
    1) Creating the configuration file in xorg.conf.d and including it into the mkinicpio
    2) Setting the GRUB_GFX_MODE
    3) Using the EDID method (with built-in resolution 1920x1080) as described here: https://wiki.archlinux.org/index.php/ke … s_and_EDID
    4) Using uvesafb as described in the WIKI: https://wiki.archlinux.org/index.php/uvesafb
    Nothing worked. X starts during boot always with the same native resolution, the switches to 1920x1080 when GDM starts. Can you please suggest a method to set the boot resolution? It is for sure technically possible as Ubuntu does it when installed on the same hardware.. I think I just haven't found a way...
    Valerio
    Last edited by valmar (2014-11-10 15:15:07)

    Ok, answering my own question, it would appear that adding video=1920x1080 does the trick. However, I still see a lot of flashing (I think that people call it flickering)

  • Blackberry curve 8520 boots up with the white line but stops at about 75%

    Is there any one who could please please tell me why my Blackb erry curve 8520 starts to boot up with the on screen white line but stops at about 75% and then freeze to the point that i can not do any thing at all with it
                     Thank you for your time Mike

    Hi Solidbass,
    You need to consider updating/reinstalling your device OS again.
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • [Solved] vsftpd not starting on boot

    Hi,
    I have problems running vsftpd via systemd on boot.
    What I did: Install vsftpd, configure it properly, enable and start vsftpd.service. It works fine, but it won't start on boot; I need to start it manually.
    This is what systemctl status vsftpd sais:
    $ systemctl status vsftpd.service
    vsftpd.service - vsftpd daemon
    Loaded: loaded (/usr/lib/systemd/system/vsftpd.service; enabled)
    Active: failed (Result: exit-code) since Wed 2014-01-01 21:28:21 CET; 7s ago
    Process: 866 ExecStart=/usr/bin/vsftpd (code=exited, status=2)
    Main PID: 866 (code=exited, status=2)
    CGroup: /system.slice/vsftpd.service
    However, starting it manually works fine and vsftpd is running then. I already read another topic, where a user had exactly the same problem. Unfortunately, that solution (adding network.target to service file) does not work for me. (topic: https://bbs.archlinux.org/viewtopic.php?pid=1251823)
    This is what my vsftpd.service file looks like:
    $ cat /usr/lib/systemd/system/vsftpd.service
    [Unit]
    Description=vsftpd daemon
    Requires=network.target
    After=network.target
    [Service]
    ExecStart=/usr/bin/vsftpd
    ExecReload=/bin/kill -HUP $MAINPID
    KillMode=process
    [Install]
    WantedBy=multi-user.target
    I recently added the Requires= field, it did not change anything. Further I tried adding NetworkManager.service and NetworkManager-wait-online.service, it did not change anything as well.  Any idea how I might fix that?
    Last edited by vibee (2014-01-09 12:31:21)

    After boot:
    $ systemctl list-units
    vsftpd.service loaded failed failed vsftpd daemon
    $ systemctl list-unit-files
    vsftpd-ssl.service disabled
    [email protected] static
    vsftpd.service enabled
    [email protected] static
    I am wondering that network.target is not shown when doing systct list-dependencies; vsftpd.service only depends on default.target and multi-user.target. Why is network.target not shown?
    $ systemctl list-dependencies
    default.target
    ├─gdm.service
    └─multi-user.target
    ├─avahi-daemon.service
    ├─cpupower.service
    ├─cronie.service
    ├─cups.path
    ├─dbus.service
    ├─dkms.service
    ├─hddtemp.service
    ├─httpd.service
    ├─iked.service
    ├─mysqld.service
    ├─NetworkManager-wait-online.service
    ├─NetworkManager.service
    ├─radicale.service
    ├─rpc-mountd.service
    ├─rpc-statd.service
    ├─smbd.service
    ├─sshd.service
    ├─svnserve.service
    ├─systemd-ask-password-wall.path
    ├─systemd-logind.service
    ├─systemd-user-sessions.service
    ├─verynice.service
    ├─vsftpd.service
    ├─basic.target
    │ ├─alsa-restore.service
    │ ├─alsa-state.service
    │ ├─paths.target
    │ ├─slices.target
    │ │ ├─-.slice
    │ │ └─system.slice
    │ ├─sockets.target
    │ │ ├─avahi-daemon.socket
    │ │ ├─cups.socket
    │ │ ├─dbus.socket
    │ │ ├─dmeventd.socket
    │ │ ├─lvmetad.socket
    │ │ ├─systemd-initctl.socket
    │ │ ├─systemd-journald.socket
    │ │ ├─systemd-shutdownd.socket
    │ │ ├─systemd-udevd-control.socket
    │ │ └─systemd-udevd-kernel.socket
    │ ├─sysinit.target
    │ │ ├─dev-hugepages.mount
    │ │ ├─dev-mqueue.mount
    │ │ ├─kmod-static-nodes.service
    │ │ ├─proc-sys-fs-binfmt_misc.automount
    │ │ ├─sys-fs-fuse-connections.mount
    │ │ ├─sys-kernel-config.mount
    │ │ ├─sys-kernel-debug.mount
    │ │ ├─systemd-ask-password-console.path
    │ │ ├─systemd-binfmt.service
    │ │ ├─systemd-journal-flush.service
    │ │ ├─systemd-journald.service
    │ │ ├─systemd-modules-load.service
    │ │ ├─systemd-random-seed.service
    │ │ ├─systemd-sysctl.service
    │ │ ├─systemd-tmpfiles-setup-dev.service
    │ │ ├─systemd-tmpfiles-setup.service
    │ │ ├─systemd-udev-trigger.service
    │ │ ├─systemd-udevd.service
    │ │ ├─systemd-update-utmp.service
    │ │ ├─systemd-vconsole-setup.service
    │ │ ├─cryptsetup.target
    │ │ ├─local-fs.target
    │ │ │ ├─-.mount
    │ │ │ ├─mnt-serverdisk.mount
    │ │ │ ├─mnt-windows.mount
    │ │ │ ├─systemd-remount-fs.service
    │ │ │ └─tmp.mount
    │ │ └─swap.target
    │ │ ├─dev-disk-by\x2did-ata\x2dST3000DM001\x2d1CH166_Z1F23A7C\x2dpart2.swap
    │ │ ├─dev-disk-by\x2did-wwn\x2d0x5000c5004f7babf3\x2dpart2.swap
    │ │ ├─dev-disk-by\x2dpartuuid-e8647b5a\x2de808\x2d41a8\x2d86e7\x2d353410f0a4bb.swap
    │ │ ├─dev-disk-by\x2duuid-3a4d745f\x2d7d88\x2d48ad\x2dba59\x2d261410fcbb8a.swap
    │ │ ├─dev-disk-by\x2duuid-3a4d745f\x2d7d88\x2d48ad\x2dba59\x2d261410fcbb8a.swap
    │ │ └─dev-sdb2.swap
    │ └─timers.target
    │ └─systemd-tmpfiles-clean.timer
    ├─getty.target
    │ └─[email protected]
    └─remote-fs.target
    And one more strange thing: If I want to start vsftpd manually by hitting systemctl start, vsftpd.service does not appear via auto-completion.
    Last edited by vibee (2014-01-02 15:59:08)

Maybe you are looking for

  • Suggest Trick to sort?

    Hi all, I am trying to sort a segment column ,, its like 10-20 , 20-30 , 30-40 .... 80-90 , so on ,, I created one more segment sort column saying if above col value is 10-20 then 1 , if 20-30 then 2... But when i apply a filter , the outsome of orde

  • SD Card not mounting (SanDisk Ultra 32gb)

    Another MacBook Pro Problem Hi, I am trying to insert my 32GB SanDisk Ultra SD card into my MacBook Pro 15", however it isnt reading the card, and nothing happens. I have tried restarting the Mac, updated all software/hardware and still nothing. Does

  • Html File in SMW0 Output Error ?

    Hello All, I have a HTML file in the SMW0 Transaction. The content of the HTML File is in Spanish Language . Now when I'm using the FM CL_GUI_HTML_VIEWER in my Custom Program to display that html file content I'm getting some junk values in the outpu

  • Dynamic Item IDs

    I have a range of checkboxes called chk_t0 to chk_t9 in a block, is it possible to create a dynamic data type so I can loop though them to populate the data, string concatenation wont work. ie similar to for V_index = 0..9 :chk_t || v_index = v_data

  • When Generating  Flash web pages; images files incorrectly reported as missing.

    Using LR 2.2 or 2.3, <br /><Web, Export, (to local directory > <br /><br />As Program executes, <br />in the upper left corner of screen,  LR displays tiny version of image being processed, and path of web image; <br /><br />THEN, <br />upon completi