[SOLVED] linux-lts GRUB "Unable to find device" error

I installed linux-lts, reconfigured GRUB, and created an initial ramdisk env,
# pacman -S linux-lts
# grub-mkconfig -o /boot/grub/grub.cfg
# mkinitcpio -p linux-lts
I'm able to load the linux-lts kernel from rEFInd (dual booting with MacOS), but I get the error:
Warning: /lib/modules/3.14.17-1-lts/modules.devname not found - ignoring
ERROR: device "UUID=df842c36-41f7-4606-b219-7879cf1c4825" not found
ERROR: Unable to find root device "UUID=df842c36-41f7-4606-b219-7879cf1c4825"
and am dropped into  a recovery shell.
However,
% ll /lib/modules/3.14.17-1-lts/modules.devname ~
-rw-r--r-- 1 root root 411 Aug 26 13:20 /lib/modules/3.14.17-1-lts/modules.devname
so at least the file exists.
Here's the specific lines from grub.cfg pertaining to linux-lts :
# grep linux-lts /boot/grub/grub.cfg
linux /boot/vmlinuz-linux-lts root=UUID=df842c36-41f7-4606-b219-7879cf1c4825 rw quiet systemd.show_status=0
initrd /boot/initramfs-linux-lts.img
menuentry 'Arch Linux, with Linux linux-lts' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-lts-advanced-df842c36-41f7-4606-b219-7879cf1c4825' {
echo 'Loading Linux linux-lts ...'
linux /boot/vmlinuz-linux-lts root=UUID=df842c36-41f7-4606-b219-7879cf1c4825 rw quiet systemd.show_status=0
initrd /boot/initramfs-linux-lts.img
menuentry 'Arch Linux, with Linux linux-lts (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-lts-fallback-df842c36-41f7-4606-b219-7879cf1c4825' {
echo 'Loading Linux linux-lts ...'
linux /boot/vmlinuz-linux-lts root=UUID=df842c36-41f7-4606-b219-7879cf1c4825 rw quiet systemd.show_status=0
initrd /boot/initramfs-linux-lts-fallback.img
and here is the complete grub.cfg
### BEGIN /etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
load_env
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="0"
fi
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
if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_gpt
insmod ext2
set root='hd0,gpt4'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt4 --hint-efi=hd0,gpt4 --hint-baremetal=ahci0,gpt4 df842c36-41f7-4606-b219-7879cf1c4825
else
search --no-floppy --fs-uuid --set=root df842c36-41f7-4606-b219-7879cf1c4825
fi
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=auto
load_video
insmod gfxterm
fi
terminal_input console
terminal_output gfxterm
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=5
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-df842c36-41f7-4606-b219-7879cf1c4825' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt4'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt4 --hint-efi=hd0,gpt4 --hint-baremetal=ahci0,gpt4 df842c36-41f7-4606-b219-7879cf1c4825
else
search --no-floppy --fs-uuid --set=root df842c36-41f7-4606-b219-7879cf1c4825
fi
echo 'Loading Linux linux-lts ...'
linux /boot/vmlinuz-linux-lts root=UUID=df842c36-41f7-4606-b219-7879cf1c4825 rw quiet systemd.show_status=0
echo 'Loading initial ramdisk ...'
initrd /boot/initramfs-linux-lts.img
submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-df842c36-41f7-4606-b219-7879cf1c4825' {
menuentry 'Arch Linux, with Linux linux-lts' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-lts-advanced-df842c36-41f7-4606-b219-7879cf1c4825' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt4'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt4 --hint-efi=hd0,gpt4 --hint-baremetal=ahci0,gpt4 df842c36-41f7-4606-b219-7879cf1c4825
else
search --no-floppy --fs-uuid --set=root df842c36-41f7-4606-b219-7879cf1c4825
fi
echo 'Loading Linux linux-lts ...'
linux /boot/vmlinuz-linux-lts root=UUID=df842c36-41f7-4606-b219-7879cf1c4825 rw quiet systemd.show_status=0
echo 'Loading initial ramdisk ...'
initrd /boot/initramfs-linux-lts.img
menuentry 'Arch Linux, with Linux linux-lts (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-lts-fallback-df842c36-41f7-4606-b219-7879cf1c4825' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt4'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt4 --hint-efi=hd0,gpt4 --hint-baremetal=ahci0,gpt4 df842c36-41f7-4606-b219-7879cf1c4825
else
search --no-floppy --fs-uuid --set=root df842c36-41f7-4606-b219-7879cf1c4825
fi
echo 'Loading Linux linux-lts ...'
linux /boot/vmlinuz-linux-lts root=UUID=df842c36-41f7-4606-b219-7879cf1c4825 rw quiet systemd.show_status=0
echo 'Loading initial ramdisk ...'
initrd /boot/initramfs-linux-lts-fallback.img
menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-df842c36-41f7-4606-b219-7879cf1c4825' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt4'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt4 --hint-efi=hd0,gpt4 --hint-baremetal=ahci0,gpt4 df842c36-41f7-4606-b219-7879cf1c4825
else
search --no-floppy --fs-uuid --set=root df842c36-41f7-4606-b219-7879cf1c4825
fi
echo 'Loading Linux linux ...'
linux /boot/vmlinuz-linux root=UUID=df842c36-41f7-4606-b219-7879cf1c4825 rw quiet systemd.show_status=0
echo 'Loading initial ramdisk ...'
initrd /boot/initramfs-linux.img
menuentry 'Arch Linux, with Linux linux (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-df842c36-41f7-4606-b219-7879cf1c4825' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt4'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt4 --hint-efi=hd0,gpt4 --hint-baremetal=ahci0,gpt4 df842c36-41f7-4606-b219-7879cf1c4825
else
search --no-floppy --fs-uuid --set=root df842c36-41f7-4606-b219-7879cf1c4825
fi
echo 'Loading Linux linux ...'
linux /boot/vmlinuz-linux root=UUID=df842c36-41f7-4606-b219-7879cf1c4825 rw quiet systemd.show_status=0
echo 'Loading initial ramdisk ...'
initrd /boot/initramfs-linux-fallback.img
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###
### 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.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
### BEGIN /etc/grub.d/60_memtest86+ ###
### END /etc/grub.d/60_memtest86+ ###
and fstab:
% cat /etc/fstab ~
# /etc/fstab: static file system information
# <file system> <dir> <type> <options> <dump> <pass>
# /dev/sda4
UUID=df842c36-41f7-4606-b219-7879cf1c4825 / ext4 rw,relatime,data=ordered 0 1
# /dev/sda5
UUID=0a37147c-f87b-4c2c-9b2d-75c852568c4b /home ext4 rw,relatime,data=ordered 0 2
Found a few things about 30 things on the net, this,  but by my reckoning, it is not similar enough / I don't understand the solution enough to be comfortable applying it to my set up.   Tried that, it didn't work.  Seems like every issue that manifests itself in this way (esp in dual boot situations) has a different solution, ranging from blacklisting certain modules  in /etc/default/grub to reording the block and autodetect hooks in mkinitcpio.conf.
Any help troubleshooting this would be greatly appreciated.
Also, here is mkinitcpio.conf (sans comments):
# vim:set ft=sh
# MODULES
MODULES=""
# BINARIES
BINARIES=""
# FILES
FILES=""
# HOOKS
HOOKS="base udev block autodetect modconf filesystems keyboard fsck usbinput"
Last edited by oktorok (2014-11-04 02:29:08)

Is the root filesystem encrypted by default?   I would like to try a solution like adding
cryptdevice=device:dmname
to my /etc/default/grub but I don't know what to put for dmname.  It seems like the wiki suggests stating it verbatum,
dmname is the device-mapper name given to the device after decryption, which will be available as /dev/mapper/dmname.
I tried
GRUB_CMDLINE_LINUX="cryptdevice=/dev/sda4:/dev/mapper/dmname"
without success.  This solution doesn't make sense if the filesystem is not encrypted. 
I don't really think this applies, but I can't understand why the modules.devname would not be found when it plainly exists exactly where the system is looking for it.
In the meantime I'm trying
sudo mkinitcpio -k 3.14.17-1-lts -g /boot/initramfs-linux-lts.img -S autodetect
to set up the initial ram env, per this thread.
[update] the above method, referenced in the link, did not fix the issue.
Last edited by oktorok (2014-08-28 22:24:43)

Similar Messages

  • "Unable to Find Device" error, e51

    I can't seem to get the update to work. It thinks for a long while, and then comes back with the above error.
    Phone is set to "General"
    When I connect to the USB, I select "PC Suite"
    The connection icon appears on the phone home page
    When I run Suite, it loads the phone SMS messages, I can backup, etc.
    The phone icon with "connected via USB" message appears in the Windows notification area
    But when I run the Updater, it cannot find the phone.
    I tried a different USB port, but no luck.
    Ideas?
    *#0000# =
    300.34.56
    11-12-2008
    RM-244
    Nokia E-51 (1)
    updater v. 1.7.3
    Suite v. 7.1.30.9

    I have the exact same issue. I have followed similar problem threads that suggest using the pc suite remover, uninstalling nsu, restart, reinstall both, restart, try again. No matter what...the PC Suite finds the device, NSU does not....
    It was a long time ago but I believe I updated the firmware once before with the older software without issue. 
    currently
    100.34.20 29-09-2007
    RM-244
    Nokia E51
    updater v. 1.7.3
    Suite v. 7.1.30.9 
    Software installed on XP SP2, cable usb connection.
    Are there any suggestions for fixing this problem.... 
    Message Edited by ljb26le on 05-Sep-2009 05:12 AM

  • CS2 Unable to find file errors

    Hi
    We are having trouble with photoshop cs2.  We can not open most files.  Tiff, PSD, some PDF files will give an "unable to find file error".  Jpg files, and certain PDF files and TIFF files that use jpg compression work.  I have tried resetting all the settings, changing scratch disks / memory usage, uninstalling all fonts, and reinstalling the application and the problem persists.
    Also i do not know if this is related but the same time we started having errors in photoshop we also have problems in Microsoft Word.  The font list shows a lot of fonts as just a white box.  Other apps can use the fonts fine.  Just not in word.
    I have attatched a JPG file with screen caps of the errors.

    I reset the options by doing the hold shift alt ctrl while starting up photoshop.  Also i deleted all the preference files out of the application data\adobe\photoshop folder.  Same problem persists.
    Also another issue i have noticed.  Say you perform an action like erasing somthing, or changing the brightness/contrast.  You can not see the changes until you click on a different tool.  Then it updates the display.
    I will try and locate the faq and see what it says.

  • Trying to download driver for printer but unable to find device on wireless network

    I was having trouble printing from my Macbook Pro to my HP Photosmart 5510 printer, so removed the printer and then tried to re-install the driver from the HP site.  I go through the process but then my mac is unable to find the printer - the circle keeps going round trying to find it - but no luck.  I have turned the printer on and off but no joy.  Help please - thanks

    Hi 2011tigger,
    I would like to help you get your printer and MAc communicating again. The following document contains information about the possible causes of a lost wireless connection, tips for avoiding the issue, and troubleshooting steps to help you restore the wireless connection on your printer; Printer Does Not Maintain Wireless Connection.
    I hope this helps.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • GRUB unable to find file, fails to install

    (FTP install via floppies, GRUB 0.96-1, installation via arch/setup utility)
    GRUB fails to install, giving the error message "Error: unable to find file" after checking for a file in /boot/grub (grub.menu IIRC), and quitting without further action. Menu.1st is there, but GRUB seems to want something else.

    There might be an issue relative to the used fs. I allways had problems if I tried to install grub into xfs or jfs partitions, and had to install lilo first during installation procedure. After first boot, I usually removed lilo and installed grub without any problems.

  • [solved] linux-lts?

    I'm curious about two things:
    1) What does the "long time support" of kernel26-lts refer to, support from the Linux kernel team or the Archlinux team? Where can I find out more about release engineering things about it?
    2) When will linux-lts(that is, a Linux 3 kernel with LTS) be out? (The depends on the previous question about who maintains the LTS.)
    Last edited by xiaq (2011-09-18 16:34:17)

    http://article.gmane.org/gmane.linux.kernel/1071451/
    http://article.gmane.org/gmane.linux.kernel/1179386/
    Last edited by lucke (2011-09-18 04:59:25)

  • [SOLVED]linux-headers upgrade fails with PGP signature error

    Whe trying to upgrade the linux kernel using:
    pacman -S linux linux-headers
    it fails with the following error:
    (2/2) checking package integrity                             [#################################] 100%
    error: linux: signature from "Tobias Powalowski <[email protected]>" is unknown trust
    error: linux-headers: signature from "Tobias Powalowski <[email protected]>" is invalid
    error: failed to commit transaction (invalid or corrupted package (PGP signature))
    Errors occurred, no packages were upgraded.
    I have tried deleting /etc/pacman.d/gnupg and the recreating it with
    pacman-key --init
    , I have also run
    pacman -Syy
    to make sure the repository is up to date.  I read the wiki post about time, but my ntp daemon is running, and I have confirmed that my time is exactly right.
    Last edited by MikeDacre (2013-04-01 23:32:27)

    Hi,
    Sorry, but that doesn't help me.  I can't find any reference in that post to this problem.  I get a similar issue when I try to upgrade mysql:
    >> sudo pacman -S mariadb libmariadbclient mariadb-clients 16:06 Mon 04-01-2013
    resolving dependencies...
    looking for inter-conflicts...
    :: libmariadbclient and libmysqlclient are in conflict. Remove libmysqlclient? [y/N] y
    :: mariadb-clients and mysql-clients are in conflict. Remove mysql-clients? [y/N] y
    :: mariadb and mysql are in conflict. Remove mysql? [y/N] y
    Targets (6): libmysqlclient-5.5.30-6 [removal] mysql-5.5.30-6 [removal]
    mysql-clients-5.5.30-6 [removal] libmariadbclient-5.5.30-2 mariadb-5.5.30-2
    mariadb-clients-5.5.30-2
    Total Download Size: 16.85 MiB
    Total Installed Size: 152.41 MiB
    Net Upgrade Size: 28.51 MiB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from extra...
    libmariadbclient-5.5.30-2-x86_64 6.6 MiB 1479K/s 00:05 [#################################] 100%
    mariadb-clients-5.5.30-2-x86_64 871.8 KiB 421K/s 00:02 [#################################] 100%
    mariadb-5.5.30-2-x86_64 9.4 MiB 440K/s 00:22 [#################################] 100%
    (3/3) checking package integrity [#################################] 100%
    error: libmariadbclient: key "BBE43771487328A9" is unknown
    :: Import PGP key , "Bartlomiej Piotrowski <[email protected]>", created 2011-10-10? [Y/n] y
    error: key "Bartlomiej Piotrowski <[email protected]>" could not be imported
    error: mariadb-clients: key "BBE43771487328A9" is unknown
    :: Import PGP key 487328A9, "Bartlomiej Piotrowski <[email protected]>", created 2011-10-10? [Y/n] y
    (3/3) checking package integrity [#################################] 100%
    error: libmariadbclient: signature from "Bartlomiej Piotrowski <[email protected]>" is unknown trust
    error: mariadb-clients: signature from "Bartlomiej Piotrowski <[email protected]>" is unknown trust
    error: mariadb: signature from "Bartlomiej Piotrowski <[email protected]>" is unknown trust
    error: failed to commit transaction (invalid or corrupted package (PGP signature))
    Errors occurred, no packages were upgraded.

  • Unable to find resource error after transport

    Hello,
    there is a strange error happening with some mapping after transporting the content of some namespaces from Dev to Q using file (client) export import.
    We already tried the scenario successul on Q, but after some reimports of changes (which still work on Dev) we get the following error in the "request message mapping" step:
    "RESOURCE_NOT_FOUIND"
    Unable to find resource .............. in the following software component versions: ........
    However the mapping is there and can be tested. Any idea on this?

    But last time one day later the scenario was running fine. Could that really be a problem with cache update?
    If all the required objects are present in the QA environment and are active....then yes it can be a problem with the Cache.
    I hope that no error was encountered (or import was done properly) during the import/ reimport.
    Regards,
    Abhishek.

  • Jdeveloper remote debugging - Unable to find source error message

    Hi,
    I am trying to remote debug a simple Java application (non-web) using Jdeveloper. The Jdev debugger can connect to the remote debuggee, but unfortunately it throws me a message saying: 'Unable to find source file'. As a result, if I ignore this message, it simply ignores my source breakpoints.
    Can anybody please help with any tips?
    My project source is checked out from CVS and does not follow a conventional source path as such.
    Thanks,
    Neil.

    The warranty entitles you to complimentary phone support for the first 90 days of ownership.

  • Unable to find out error

    hi all
    need help to solve this problem
    In a file called AllBalancedOfSize.java write a method with the signature:
    public void printBalanced(int len)
    that uses recursion (either directly or indirectly) and prints all balanced strings, composed solely of the characters a and b of length len in lexical (dictionary) order. A balanced string is a string with an equal number of a and b characters. So, for example, abab is a balanced string and bbab is not a balanced string.
    As an example, the call printBalanced(4) must print:
    aabb
    abab
    abba
    baab
    baba
    bbaa
    A call printBalanced(5) must print nothing because there are no balanced strings of length 5 (same for any odd parameter value). A call printBalanced(0) must print an empty line because there is one balance string of length zero, the empty string! You may assume that len is always greater than or equal to zero.
    i have done this
    public class AllBalancedOfSize {
         public static void main(String[] args) {
              AllBalancedOfSize q4 = new AllBalancedOfSize();
              q4.printBalanced(4);
         public void printBalanced(int len) {
              if (len == 0) {
                   System.out.println();
              } else {
                   if (len % 2 == 0)
                        printBalanced(len, "");
         public void printBalanced(int len, String prefix) {
              if (len == 0) {
                   int numofa = 0, numofb = 0;
                   for (int i = 0; i <= prefix.length(); i++) {
                        char tmp = prefix.charAt(i);
                        if (tmp == 'a') {
                             numofa++;
                        } else {
                             numofb++;
                   if (numofa == numofb) {
                        System.out.println(prefix);
              } else {
                   printBalanced(len - 1, prefix + "a");
                   printBalanced(len - 1, prefix + "b");
    }but i got this from compiler
    Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 4
         at java.lang.String.charAt(String.java:687)
         at AllBalancedOfSize.printBalanced(AllBalancedOfSize.java:20)
         at AllBalancedOfSize.printBalanced(AllBalancedOfSize.java:31)
         at AllBalancedOfSize.printBalanced(AllBalancedOfSize.java:31)
         at AllBalancedOfSize.printBalanced(AllBalancedOfSize.java:31)
         at AllBalancedOfSize.printBalanced(AllBalancedOfSize.java:31)
         at AllBalancedOfSize.printBalanced(AllBalancedOfSize.java:12)
         at AllBalancedOfSize.main(AllBalancedOfSize.java:4)
    need help to find out what is the error.
    Edited by: dttl on May 10, 2009 11:44 AM

    dttl wrote:
    Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 4
         at java.lang.String.charAt(String.java:687)
    need help to find out what is the error.When a String has a length of 4 characters, you can access them though indexes 0 through 3.
    When a String has a length of N characters, you can access them though indexes 0 through N-1.

  • Windows Media player can't find device/ error number C00D1179 - F

    This is a fix for the error where windows recognizes and installs the Creative Zen Micro running the version 2.X firmware (or any other MTP device) but neither windows media or creative's software can see it.
    How I got this error to begin with...
    I had to replace my zen micro because of a headphone jack problem that seems to be very common. It still amazes me that a company that obviously invested tons of money into developing a device like this would let something as stupid as a poorly designed headphone jack ruin it... When I tried to sync my new zen micro I exchanged for at the store, it recognized the initial device firmware. I upgraded to the 2.X firmware and it worked until the device rebooted with the new firmare. At this point, the firmware program couldn't see it even though windows had given me the whole "New Hardware Found" thing and asked me if i wanted to sync with WMP. No other programs could find it either. I tried numerous things to get it to work, but here is what finally worked. This may not fix all the issues of this type but I suspect it will fix most of them.
    As this problem is Microsoft's and not Creatives, any device running PlaysForSure (I think "plays if your really lucky" is a better name) I looked at other device forums. I found this post that got me looking in the right place.
    http://www.misticri'ver.net/boards/archi've/index.php/t-3598.html
    Step six said to look at the following registry entry:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum
    This made me look more carefully and realize that I had four Creative Zen Micro entries, confusing my computer into not syncing. The solution is below:
    ***WARNING- EDITING THE REGISTRY CAN REALLY SCREW UP YOUR COMPUTER!! USE AT YOUR OWN RISK!!!
    . Unplug the device
    2. Open Regedit by Start -> run, regedit
    3. Browse to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\U SB
    4. You will see a bunch of folders with incoherent letters and numbers. Expand these once to see another unreadable folder. When you click on this, you'll see a FriendlyName field on the right side. If it says Creative Zen Micro or whatever your device is, delete the higher level incoherent folder, it should start with VID.
    5. Plug your device back in and let it reinstall
    6. Hopefully it will say docked when you open windows media player
    This may not fix all problems of this nature. If it doesn't, look at the link in the earlier part of this post.
    BTW, Creative support, we aren't all idiots who don't realize that we don't have WMP0 installed. If we tell you it worked before and stopped working now, and also included a microsoft debug file clearly showing that there is something very strange going on, don't send us a stupid thing to check like whether WMP0 is installed and make us wait 24 hours for the next useless response.

    Interesting. Thanks for the information!

  • Officejet 4620 Can't find device error msg

    I can't get my 4622 officejet to print via the network. Light is on - blue - connection excellent but when I try to print I get an error. When try to go thru set up it says cannot establish 2way connection. I suspect maybe firewall issue, but don't know how to circumvent. Tried to print using usb, that does not work either. Tried to send email to Eprint and got SPAM message, but was able to print to Eprint from another email address. This is so odd, amd at a total loss at this point.
    This question was solved.
    View Solution.

    Hey @LS1917 ,
    Thank you for taking the time to post on the HP Forums today! Hope you enjoy the experience.
    I understand you are experiencing some issues with your printer communicating over the network.
    I would like for you to take some time and power cycle your wireless router, your printer as well as your computer and try to complete your functions again.
    What Operating System are you using? Press the link to find out, in case you don't know already. http://whatsmyos.com/
    After you let me know the operating system you are using, and after you try the power cycling instructions, get back me with the results and we can continue trying to figure the issue out for you. Look forward to hearing back from you.
    I worked for HP.

  • Unable to find file error while loading data from text file to Oracle

    Hi,
    I am having a interface where i am loading a data of Text file to Oracle.
    But when i am trying to do this i am getting following error.
    ODI-1227: Task SrcSet0 (Loading) fails on the source FILE connection SAPMM.
    Caused By: java.sql.SQLException: File not found: d:/mdb/#General.get_filename
         at com.sunopsis.jdbc.driver.file.FileResultSet.<init>(FileResultSet.java:160)
         at com.sunopsis.jdbc.driver.file.impl.commands.CommandSelect.execute(CommandSelect.java:57)
         at com.sunopsis.jdbc.driver.file.CommandExecutor.executeCommand(CommandExecutor.java:33)
    SAPMM is connection name.
    I am using get_filename to get the filename and it is fetching correct value as the this variable refreshes in previous step of this interface.
    KM used for loading is File to SQL
    What would be cause of this error?
    Thanks,
    Mahesh

    Hi,
    Did a testing and following are the result
    I have
    A> created package having steps like
    1. Declaration of variable v_filename.
    2. Refreshing variable v_filename.
    3. Execution of Interface which gets the file name from v_filename and load into target table
    Package executes successfully.
    B> created package having steps like
    1. Declaration of variable v_filename.
    2. Refreshing variable v_filename.
    3. Scenario of Interface which gets the file name from v_filename and load into target table
    Package executes with erre as it is not able to find the file
    C> created package having steps like
    1. Declaration of variable v_filename.
    2. Refreshing variable v_filename.
    3. Execution of Interface which gets the file name from v_filename and load into target table
    4. Now create a scenario of the package , use the generated scenario in another package say main_package
    Execution of main_package is successful.
    Thanks,
    Sutirtha

  • Photosmart 6520--Unable to Find Printer error

    I just purchased a HP Photosmart 6520 printer.  I installed the software onto my computer; however, I am unable to complete the set up due to receiving the error message that the printer cannot be found.  I entered the IP address as indicated on the printer and uninstalled/reinstalled the software, to no avail.  If it cannot be fixed, I will have to return the printer.

    I figured out the problem.  It was my firewall on my computer!

  • ULTRASEARCH UNABLE TO FIND INSTANCE ERROR WKG-10602

    Hello,
    We are attempting to configure UltraSearch. When accessing the URL, http://ipims.sbec.com/ultrasearch/query/search.jsp, I receive this error message within the browser: java.sql.SQLException: ORA-20000: Oracle Ultra
    Search error WKG-10602: Instance does not exist ORA-06512: at "WKSYS.WK_ERR", line 179 ORA-06512: at line 1
    When I look at the log file under opmn, I receive these errors:
    java.sql.SQLException: ORA-20000: Oracle Ultra Search error WKG-10602: Instance does not exist ORA-06512: at "WKSYS.WK_ERR", line 179 ORA-06512: at line 1
    java.sql.SQLException: ORA-20000: Oracle Ultra Search errorWKG-10602: Instance does not exist ORA-06512: at "WKSYS.WK_ERR", line 179 ORA-06512: at line 1
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:185)
    at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:241)
    at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:543)
    at oracle.jdbc.ttc7.TTC7Protocol.doOall7 TTC7Protocol.java:1477)
    at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:888)
    at oracle.jdbc.driver.OracleStatement.executeNonQueryOracleStatement.java:1960)
    at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1880)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2490)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:435)
    at
    oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:500)
    at
    oracle.ultrasearch.query.InstanceMetaData.refresh(InstanceMetaData.java:485)
    at oracle.ultrasearch.query.Instance.getMetaData(Instance.java:328)
    at search.jspService(_search.java:1621)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:302)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:407)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:330)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
    at
    com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:66)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
    at
    com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:539)
    at
    com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:285)
    at
    com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:771)
    at
    com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:152)
    at
    com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:72)
    at
    EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:802)
    at java.lang.Thread.run(Thread.java:484)
    Can anyone help me decipher this error?
    Thanks!

    Hi,
    This problem is due to either invalid XML being used as payload/XSD (in a zip) has not been uploaded properly.
    Please validate the document against XSD by using any XML editor. Please make sure to upload all the XSD bundled in a zip file and mention the complete path of the main Xsd in Starting XSD File Path as part of document definition.
    Regards,
    Anuj

Maybe you are looking for

  • How to generate crystal report in sap application

    hi,, i  want to  generate crystal report  through sap application... How  is it possible ....? could you help me  in details? Plz  help me???????????

  • Easy Reject Problem @ Nokia 5800

    Hi, I have Easy reject pre-installed at my Nokia 5800. I have activated same and using, But what i observe after sometime, This swre start rejecting all calls[known & Unknown]  which is not listed in their filter list..  Pl advise and help... Easy re

  • Is it possible to create one event in Ical, but put it into two Google calendar accounts?

    In my Ical i have multiple google calendars, from multiple accounts. I've got one calendar for my girlfriend (a Home account), so she can see my schedule and where i am. That brings a minor problem. In my Ical i have the same event now multiple times

  • Remote administration of Express in an Extreme Base Station network

    I am a newb administrator of a small network of an AEBS with 2 Expresses in "extend a network" mode. I can access the Base Station over the internet but I haven't figured out how I can do the same with the Expresses. Also, I understand that MAC filte

  • Windows Media Center Capability in Technical Preview

    I have read the threads about using windows 8 keys to add media center to the Windows Technical Preview.  I would like to request that we be given the capability to add media center to the technical preview. If this has already been answered, can som