[SOLVED] Installing on ZFS root: "ZFS: cannot find bootfs" on boot.

I have been experimenting with ZFS filesystems on external HDDs for some time now to get more comfortable with using ZFS in the hopes of one day reinstalling my system on a ZFS root.
Today, I tried installing a system on an USB external HDD, as my first attempt to install on ZFS (I wanted to try in a safe, disposable environment before I try this on my main system).
My partition configuration (from gdisk):
Command (? for help): p
Disk /dev/sdb: 3907024896 sectors, 1.8 TiB
Logical sector size: 512 bytes
Disk identifier (GUID): 2FAE5B61-CCEF-4E1E-A81F-97C8406A07BB
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 3907024862
Partitions will be aligned on 8-sector boundaries
Total free space is 0 sectors (0 bytes)
Number Start (sector) End (sector) Size Code Name
1 34 2047 1007.0 KiB EF02 BIOS boot partition
2 2048 264191 128.0 MiB 8300 Linux filesystem
3 264192 3902828543 1.8 TiB BF00 Solaris root
4 3902828544 3907024862 2.0 GiB 8300 Linux filesystem
Partition #1 is for grub, obviously. Partition #2 is an ext2 partition that I mount on /boot in the new system. Partition #3 is where I make my ZFS pool.
Partition #4 is an ext4 filesystem containing another minimal Arch system for recovery and setup purposes. GRUB is installed on the other system on partition #4, not in the new ZFS system.
I let grub-mkconfig generate a config file from the system on partition #4 to boot that. Then, I manually edited the generated grub.cfg file to add this menu entry for my ZFS system:
menuentry 'ZFS BOOT' --class arch --class gnu-linux --class gnu --class os {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt2'
echo 'Loading Linux core repo kernel ...'
linux /vmlinuz-linux zfs=bootfs zfs_force=1 rw quiet
echo 'Loading initial ramdisk ...'
initrd /initramfs-linux.img
My ZFS configuration:
# zpool list
NAME SIZE ALLOC FREE CAP DEDUP HEALTH ALTROOT
External2TB 1.81T 6.06G 1.81T 0% 1.00x ONLINE -
# zpool status :(
pool: External2TB
state: ONLINE
scan: none requested
config:
NAME STATE READ WRITE CKSUM
External2TB ONLINE 0 0 0
usb-WD_Elements_1048_575836314135334C32383131-0:0-part3 ONLINE 0 0 0
errors: No known data errors
# zpool get bootfs
NAME PROPERTY VALUE SOURCE
External2TB bootfs External2TB/ArchSystemMain local
# zfs list
NAME USED AVAIL REFER MOUNTPOINT
External2TB 14.6G 1.77T 30K none
External2TB/ArchSystemMain 293M 1.77T 293M /
External2TB/PacmanCache 5.77G 1.77T 5.77G /var/cache/pacman/pkg
External2TB/Swap 8.50G 1.78T 20K -
The reason for the above configuration is that after I get this system to work, I want to install a second system in the same zpool on a different dataset, and have them share a pacman cache.
GRUB "boots" successfully, in that it loads the kernel and the initramfs as expected from the 2nd GPT partition. The problem is that the kernel does not load the ZFS:
ERROR: device '' not found. Skipping fsck.
ZFS: Cannot find bootfs.
ERROR: Failed to mount the real root device.
Bailing out, you are on your own. Good luck.
and I am left in busybox in the initramfs.
What am I doing wrong?
Also, here is my /etc/fstab in the new system:
# External2TB/ArchSystemMain
#External2TB/ArchSystemMain / zfs rw,relatime,xattr 0 0
# External2TB/PacmanCache
#External2TB/PacmanCache /var/cache/pacman/pkg zfs rw,relatime,xattr 0 0
UUID=8b7639e2-c858-4ff6-b1d4-7db9a393578f /boot ext4 rw,relatime 0 2
UUID=7a37363e-9adf-4b4c-adfc-621402456c55 none swap defaults 0 0
I also tried to boot using "zfs=External2TB/ArchSystemMain" in the kernel options, since that was the more logical way to approach my intention of having multiple systems on different datasets. It would allow me to simply create separate grub menu entries for each, with different boot datasets in the kernel parameters. I also tried setting the mount points to "legacy" and uncommenting the zfs entries in my fstab above. That didn't work either and produced the same results, and that was why I decided to try to use "bootfs" (and maybe have a script for switching between the systems by changing the ZFS bootfs and mountpoints before reboot, reusing the same grub menuentry).
Thanks in advance for any help.
Last edited by tajjada (2013-12-30 20:03:09)

Sounds like a zpool.cache issue. I'm guessing your zpool.cache inside your arch-chroot is not up to date. So on boot the ZFS hook cannot find the bootfs. At least, that's what I assume the issue is, because of this line:
ERROR: device '' not found. Skipping fsck.
If your zpool.cache was populated, it would spit out something other than an empty string.
Some assumptions:
- You're using the ZFS packages provided by demizer (repository or AUR).
- You're using the Arch Live ISO or some version of it.
On cursory glance your configuration looks good. But verify anyway. Here are the steps you should follow to make sure your zpool.cache is correct and up to date:
Outside arch-chroot:
- Import pools (not using '-R') and verify the mountpoints.
- Make a copy of the /etc/zfs/zpool.cache before you export any pools. Again, make a copy of the /etc/zfs/zpool.cache before you export any pools. The reason for this is once you export a pool the /etc/zfs/zpool.cache gets updated and removes any reference to the exported pool. This is likely the cause of your issue, as you would have an empty zpool.cache.
- Import the pool containing your root filesystem using the '-R' flag, and mount /boot within.
- Make sure to copy your updated zpool.cache to your arch-chroot environment.
Inside arch-chroot:
- Make sure your bootloader is configured properly (i.e. read 'mkinitcpio -H zfs').
- Use the 'udev' hook and not the 'systemd' one in your mkinitcpio.conf. The zfs-utils package does not have a ported hook (as of 0.6.2_3.12.6-1).
- Update your initramfs.
Outside arch-chroot:
- Unmount filesystems.
- Export pools.
- Reboot.
Inside new system:
- Make sure to update the hostid then rebuild your initramfs. Then you can drop the 'zfs_force=1'.
Good luck. I enjoy root on ZFS myself. However, I wouldn't recommend swap on ZFS. Despite what the ZoL tracker says, I still ran into deadlocks on occasion (as of a month ago). However, I cannot say definitely the cause of the issue; but it resolved when I moved swap off ZFS to a dedicated partition.
Last edited by NVS (2013-12-29 14:56:44)

Similar Messages

  • I want to re-install Premiere Elelments 8, but cannot find downloads for version 8.  Where can I download the files for version 8?

    I want to re-install Premiere Elelments 8, but cannot find downloads for version 8.  I have the serial no.  Where can I download the files for version 8?

    Hi Jeff.  I did purchase Premiere Elements 8 from Adobe (download version), but couldn't find the files to download again on the adobe.com website.  I did, however carry out another search of files from my old PC and eventually found the files to reinstall on my new PC, using my registered product serial no.  Installation has worked.  It seems that Adobe has stopped supporting version 8 as I could only find version 9 and later for download from the adobe.com website.
    Thanks for your prompt reply

  • I had to replace my hard drive. Need to re-install office and pages and cannot find the cds. Any help will be appreciated

    I had to replace my hard drive. Need to re-install office and pages and cannot find the cds. Any help will be appreciated

    Replacement System Discs can be obtained from Apple's Customer Support - US (800) 767-2775 for a nominal fee. You'll need to have the model and serial number of your Mac available.
    If you're not in the US, you may need to go through the regional Apple Store that serves your location to find the contact number - http://store.apple.com/Catalog/US/Images/intlstoreroutingpage.html
    Or you can purchase the applications from an Apple retail outlet, App Store or the Apple online store.

  • [SOLVED] Root fs cannot be found on boot (initramfs works)

    Hi all! Long time lurker, first time poster.
    I'd been using catalyst drivers since I started out on Arch. I knew there were conflicts during updates involving catalyst, so I've never updated my kernel or Xorg during "pacman -Syu" updates. I'd specifically blocked them in pacman.conf. However, I recently decided to switch to open source ati drivers and in doing so, decided to update my entire system including the kernel. Everything went smoothly, but upon reboot I'm getting the dreaded "root filesystem cannot be found" error.
    Root device '/dev/sdb6' doesn't exist, attempting to create it
    ERROR: Failed to parse block device name for '/dev/sdb6' unknown
    ERROR: Unable to create/detect root device, '/dev/sdb6'
    Dropping to recovery shell.. type 'exit' to reboot
    Note that the initramfs worked, it's just it couldn't get into my root partition even though I can mount it without any problems from the live CD.
    I set about trying to fix my problem. Here is a list of things I've tried.
    1) Using the liveCD, I chrooted into my install (mounting proc, dev, etc. in the process) and did
    depmod -a
    followed by
    pacman -Sf kernel26
    which completed with no errors problems. This didn't solve my issue.
    2) Using the liveCD, performing
    mkinitcpio -M
    and ensuring my mkinitcpio.conf file contained all the listed modules. I then rebuilt the initramfs with another
    pacman -Sf kernel26
    This didn't solve my issue.
    3) Playing with grub, replacing my UUID lookups with /dev/sdb6. I also tried different combinations (see this thread) to check the bios and grub were matching up. I did the suggested rootdelay=8 and rootfstype=ext3 stuff, too. This didn't solve my issue.
    4) Using the liveCD, I did another depmod -a then downgraded my kernel to the older package found on the 2008.6 CD. Mkinitcpio completed successfully, everything seemed fine, but... This didn't solve my issue.
    I've done these steps over and over again in various orders, trying different combinations, but I've not had any luck.
    Here is my current mkinitcpio.conf file:
    MODULES="pata_acpi pata_jmicron ata_generic scsi_mod ahci ata_piix ext3 ahci libata cdrom ide-core ide-pci-generic jmicron ieee1394 ohci1394 atl1 mii sr_mod usbcore ehci-hcd uhci-hcd jbd"
    BINARIES=""
    FILES=""
    HOOKS="base udev autodetect pata scsi sata usb net usbinput keymap encrypt filesystems"
    Here is the important bit of my grub file:
    Without UUIDs:
    title Arch Linux
    root (hd1,5)
    kernel /vmlinuz26 root=/dev/sdb6 quiet vga=869 rootdelay=8 rootfstype=ext3
    initrd /boot/kernel26.img
    title Arch Linux (fallback)
    root (hd1,5)
    kernel /vmlinuz26 root=/dev/sdb6 ro quiet vga=869 rootdelay=8
    initrd /boot/kernel26-fallback.img
    With UUIDs:
    title Arch Linux
    uuid ec450c30-5197-4330-9831-914eafad66ce
    kernel /vmlinuz26 root=/dev/disk/by-uuid/ec450c30-5197-4330-9831-914eafad66ce ro quiet vga=869
    initrd /boot/kernel26.img
    title Arch Linux (fallback)
    uuid ec450c30-5197-4330-9831-914eafad66ce
    kernel /vmlinuz26 root=/dev/disk/by-uuid/ec450c30-5197-4330-9831-914eafad66ce ro quiet vga=869
    initrd /boot/kernel26-fallback.img
    Any ideas, help, suggestions, fixes, etc would be greatly appreciated. I just felt like my arch install was damn near perfect - I'd hate to have to install everything again!
    (Edit: Just fixing something I'd messed up in my attempts to fix it, as kindly pointed out by Karol. It didn't fix the problem, though.)
    Last edited by binarymonster (2009-06-04 10:03:19)

    karol wrote:
    If you've read http://bbs.archlinux.org/viewtopic.php?id=63033 I assume you've tried to use 'root=/dev/sdb6' w/
    root            (hd0,5)
    instead of
    root            (hd1,5)
    but didn't work, right?
    This one's old (and odd) but you may want to have a look at it anyway http://bbs.archlinux.org/viewtopic.php?pid=376939
    And the very bottom of http://bbs.archlinux.org/viewtopic.php?id=44921
    I read that first link - though I might have misinterpreted it. I tried keeping (hd1,5) the same and changing /dev/sdb6 to /dev/sda6, etc. I always through that the grub root (hd0,5) wasn't correct, the initramfs would not be able to show up and I'd just get a grub error. What I have tried so far hasn't worked, but I might try changing to (hd0,5) instead of (hd1,5) in a little while.
    With regards to the other links, they seem to suggested lots of things I've already tried. The list is getting quite long now!
    I have tried reinstalling kernel26, downgrading kernel26, using the fallback image, made sure mkinitcpio.conf contains my filesystem type, made sure mkinitcpio.conf contains my hdd controller module, tried rootdelay=8 a few times... and my mkinitcpio seems to work, so I don't think the problem is with my mkinitcpio.conf file.
    Phew! Thanks for your continued help... I'm sure this problem will get solved eventually (and I bet it'll be something simple!). At least I'm learning about chrooting, initramfs, etc.
    Do you think it's worth trying to change root (hd1,5) to (hd0,5)? I imagine that would only cause grub to give me and error and not even be able to find the initramfs!

  • Cannot Install this Hardware - The system cannot find the file specified.

    I got an 8G ipod touch last week. When I plug it into USB port on my PC, a Found New Hardware Wizard box pops up with "Cannot Install this Hardware", "There was a problem installing this hardware: Apple Mobile Device USB Driver", "An error occurred during the installation of the device", "The system cannot find the file specified.", "Click Finish to close the wizard.". If I go ahead and click finish, the device disappears and a couple of seconds later tries to install again and the box pops up again. However, if I leave the box alone, the ipod does actually appear in itunes and I can sync music to it, so all is not lost Any ideas though how to stop this error box popping up? The USBAAPL.SYS driver exists - I don't know what file it cannot find. Thanks.

    Hi and welcome to Discussions,
    if you have a Leopard OSX DVD you can use it to install the BootCamp 2.0 drivers and later use the BC Update 2.1 for XP to further update the drivers.
    If not (still running OSX Tiger) there are two possibilities:
    use this direct download link for the latest ATI/AMD Mobility Driver package http://ati.amd.com/online/mobilecatalyst/
    or use the ModTool found here http://www.driverheaven.net/modtool.php in conjunction with the ATI/AMD Desktop Driver package.
    You should also consider getting and installing the latest (June 2008) DirectX 9 package from Microsoft.
    Hope it helps with your gaming problems.
    Stefan

  • Firefox installed version 5. I cannot find the place to change privacy settings. I have searched the Help and it does not show how to edit mine. I have Vista. I urgently need to enable cookies. Help

    I have searched under the Firefox dropdown box and cannot find tools or privacy settings.

    Click the Firefox button, click Options, click Options, from there, everything is the same as before (click Privacy and be sure first item "Firefox will:" is set to "Use custom setting for history" to see all of the settings on that panel).
    You can still use/see the Menu Bar (''File, Edit, View, History, Bookmarks, Tools, Help'') if you prefer it:
    *'''Temporarily display the Menu Bar''': press the ALT key for the F10 key and make your selections from the temporarily displayed Menu Bar
    *'''Toggle between the Menu Bar and Firefox button'''. Do one of the following:
    **NOTE:
    ***Menu Bar '''checked''' = Menu Bar on, Firefox button off
    ***Menu Bar '''un-checked''' = Menu Bar off, Firefox button on
    **keyboard shortcut: HOLD the ALT key while pressing the letters VTM on your keyboard
    **Using the Menu Bar: click View > Toolbars, click Menu Bar
    **Using the Firefox Button: click Firefox Button > Options, click Menu Bar
    **right-click on an empty space in one of the toolbars, click Menu Bar
    <br />
    <br />
    '''You need to update the following.''' The Plugin version(s) shown below was/were submitted with your question and is/are out of date. You should update to avoid known security issues with the version(s) you have installed. Click on "More system info..." to the right of your question to see what was included with your question.
    *Adobe Shockwave for Director Netscape plug-in, version 11.5
    *Adobe PDF Plug-In For Firefox and Netscape
    #'''''Check your plugin versions''''' on either of the following links':
    #*http://www.mozilla.com/en-US/plugincheck/
    #*https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #*There are plugin specific testing links available from this page:
    #**http://kb.mozillazine.org/Testing_plugins
    #'''Update Shockwave for Director'''
    #*NOTE: this is not the same as Shockwave Flash; this installs the Shockwave Player.
    #*Use Firefox to download and SAVE the installer to your hard drive from the link in the article below (Desktop is a good place so you can find it).
    #*When the download is complete, exit Firefox (File > Exit)
    #*locate and double-click in the installer you just downloaded, let the install complete.
    #*Restart Firefox and check your plugins again.
    #*'''<u>Download link and more information</u>''': http://support.mozilla.com/en-US/kb/Using+the+Shockwave+plugin+with+Firefox
    #'''Update Adobe Reader (PDF plugin):'''
    #*From within your existing Adobe Reader ('''<u>if you have it already installed</u>'''):
    #**Open the Adobe Reader program from your Programs list
    #**Click Help > Check for Updates
    #**Follow the prompts for updating
    #**If this method works for you, skip the "Download complete installer" section below and proceed to "After the installation" below
    #*Download complete installer ('''if you do <u>NOT</u> have Adobe Reader installed'''):
    #**SAVE the installer to your hard drive (save to your Desktop so that you can find it after the download). Exit/Close Firefox. Run the installer you just downloaded.
    #**Use either of the links below:
    #***https://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox ''(click on "Installing and updating Adobe Reader")''
    #***''<u>Also see Download link</u>''': http://get.adobe.com/reader/otherversions/
    #*After the installation, start Firefox and check your version again.

  • SeLinux Checkpolicy install error ( /usr/bin/ld: cannot find -lfl)

    I am trying to setup selinux per the arch wiki, but I ran into an error when trying to install the checkpolicy package from the AUR. I keep getting the following error:
    ==> Starting build()...
      cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -I. -I/usr/include -o checkpolicy.o -c checkpolicy.c
      bison -y -d policy_parse.y
      cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -I. -I/usr/include -o y.tab.o -c y.tab.c
      lex policy_scan.l
      cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -I. -I/usr/include -o lex.yy.o -c lex.yy.c
      cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -I. -I/usr/include -o queue.o -c queue.c
      cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -I. -I/usr/include -o module_compiler.o -c module_compiler.c
      cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -I. -I/usr/include -o parse_util.o -c parse_util.c
      cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -I. -I/usr/include -o policy_define.o -c policy_define.c
      cc -Wl,-O1,--sort-common,--as-needed,-z,relro  checkpolicy.o y.tab.o lex.yy.o queue.o module_compiler.o parse_util.o policy_define.o  /usr/lib/libsepol.a -lfl -o checkpolicy
      /usr/bin/ld: cannot find -lfl
      collect2: error: ld returned 1 exit status
      <builtin>: recipe for target 'checkpolicy' failed
      make: *** [checkpolicy] Error 1
    any ideas? I have been googling for a few hours trying to find out about the -lfl and to see if i am missing it , but cannot figure this out. I downloaded the tar for checkpolicy and have the same issue.
    Should I be altering the makefile in anyway so that /usr/bin/ld can find -lfl ?
    Last edited by johnnyboy (2014-11-12 06:43:49)

    @Allan: The selinux-flex package is needed as part of the installation process.
    Something tells me that this AUR package needs to be updated.
    But yes, a solution appears to be to remove selinux-flex and install flex and then compile checkpolicy.
    Last edited by clfarron4 (2014-11-12 12:36:42)

  • [solved] build failing: /usr/bin/ld: cannot find -lgd

    I'm trying to satisfy crossover dependencies and recommendations. Found lib32-libgphoto2 on AUR with a few dependencies of its own, all of which I installed succesfully.
    When doing a makepkg for lib32-libgphoto2 I get the following error:
    libtool: link: gcc -m32 -shared -fPIC -DPIC ax203/.libs/ax203_la-library.o ax203/.libs/ax203_la-ax203.o ax203/.libs/ax203_la-ax203_decode_yuv.o ax203/.libs/ax203_la-ax203_decode_yuv_delta.o ax203/.libs/ax203_la-ax203_compress_jpeg.o ax203/.libs/ax203_la-jpeg_memsrcdest.o ax203/.libs/ax203_la-tinyjpeg.o ax203/.libs/ax203_la-jidctflt.o -Wl,-rpath -Wl,/home/someuser/Downloads/aur/lib32-libgphoto2/src/build/libgphoto2/.libs -Wl,-rpath -Wl,/home/someuser/Downloads/aur/lib32-libgphoto2/src/build/libgphoto2_port/libgphoto2_port/.libs -L/home/someuser/Downloads/aur/lib32-libgphoto2/src/build/libgphoto2_port/libgphoto2_port/.libs ../libgphoto2/.libs/libgphoto2.so -L/usr/lib32 /home/someuser/Downloads/aur/lib32-libgphoto2/src/build/libgphoto2_port/libgphoto2_port/.libs/libgphoto2_port.so -lexif ../libgphoto2_port/libgphoto2_port/.libs/libgphoto2_port.so -lltdl -lpthread -lgd -lz -lm -lpng16 -lfreetype -lfontconfig -ljpeg -m32 -march=x86-64 -mtune=generic -O2 -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-soname -Wl,ax203.so -Wl,-version-script -Wl,.libs/ax203.ver -o .libs/ax203.so
    /usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-unknown-linux-gnu/4.8.2/../../../libgd.so when searching for -lgd
    /usr/bin/ld: skipping incompatible /usr/lib/libgd.so when searching for -lgd
    /usr/bin/ld: cannot find -lgd
    collect2: error: ld returned 1 exit status
    Makefile:1659: recipe for target 'ax203.la' failed
    make[3]: *** [ax203.la] Error 1
    make[3]: Leaving directory '/home/someuser/Downloads/aur/lib32-libgphoto2/src/build/camlibs'
    Makefile:3347: recipe for target 'all-recursive' failed
    make[2]: *** [all-recursive] Error 1
    make[2]: Leaving directory '/home/someuser/Downloads/aur/lib32-libgphoto2/src/build/camlibs'
    Makefile:622: recipe for target 'all-recursive' failed
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory '/home/someuser/Downloads/aur/lib32-libgphoto2/src/build'
    Makefile:444: recipe for target 'all' failed
    make: *** [all] Error 2
    ==> ERROR: A failure occurred in build().
    Aborting...
    In that blob of text it says 'skipping incompatible' so it found something but I don't know to fix that or find out what it needs. A search on the internet I found that the message (in title) means I'm missing 32-bit library for gd, so I pulled that from AUR and installed it, but its still giving me this message.
    Any ideas what I need to do to get this to build?
    Thanks in advance.
    Last edited by mouseman (2014-05-05 05:24:27)

    The linker tries to find libgd. so. If you build lib32-libgphoto2, I guess from the name that you are building a 32 bit package on a 64 bits installation. You should have the 32 bit version of libgd. so and you only have the 64 bit version (hence skipping incompatible /usr/lib/libgd.so). Note that I have not found this version in the multilib repository (nor on AUR), I think you will have to build it yourself.

  • Cannot Install Thinkpad Configuration Utility and Cannot Find it on Downloads Site

    I uninstalled the Thinkpad Configuration Utility and when I try to reinstall the installation fails.  It no longer seems to be a download option on the Lenovo support site.  Has this utility been withdrawn and if so what replaces it?  This link
    http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-67988
    with the latest BIOS update talks about using the utility to determine which version is installed which would seem an odd thing to do if the utility is no longer supported!
    Message Edited by BMGRAHAM on 05-16-2008 12:00 AM

    Hi,
    Pls check the site
    http://java.sun.com/xml/jaxb
    The JAXB Beta Implementation is now available.
    Thanks,
    Bhakti
    I am looking for JAXB and cannot find a download link.
    The only thing at the download link is the jaxb arch
    spec, but no s/w.
    Where is this stuff? Has it been taken off?
    -Mark Sabatini

  • [SOLVED]Trying to install package-query again. Cannot find PKGBUILD.

    I'm updating my arch after 4 months. Yes it has been a long time.
    During the update process I had to remove package-query and yaourt, and now I'm trying to get them back.
    I got package-query from here https://aur.archlinux.org/packages.php?ID=35915
    Untared it, went inside, and did makepkg -s, but the PKGBUILD could not be found. I looked through the directories and didn't see a PKGBUILD anywhere.
    Am I missing something?
    Last edited by Aquila (2013-05-13 23:18:36)

    Did you click the 'Download Tarbel' link on the right side of the page? (Correct choice)
    Or the link under the Sources Bar ? (Incorrect choice)

  • [Solved] System cannot find inittab at boot

    I just installed a fresh, brand-new Arch 64-bit install on an older PC, but on reboot, Arch can't find the "inittab" file.
    Specifically, I get this error:
    INIT: no inittab file found
    Enter runlevel:
    And whether I enter init 0, 1, 3, 5, 6, or whatever, it always replys:
    INIT: Entering runlevel x
    INIT: No processes left in this runlevel
    In my Ubuntu 9.04 CD, I can clearly see that "inittab" exists in /etc and I can open it and read it.  So why can't Arch find it?  I didn't have this problem on my previous installation.
    Since I don't know what info you guys need in order to aid me, I'll simply note a few things:
    #1) My filesystem
    sda5        /               ext4               10.0 GiB
    sda6        /boot         ext2                1.0 GiB
    sda7        /etc           ext4                1.0 GiB
    sda8        /home       ext4             130.0 GiB
    sda9        /tmp          ext4              10.0 GiB
    sda10      /usr           ext4              20.0 GiB
    sda11      /var          ext4              10.0 GiB
    sda12      swap      linux-swap          4.7 GiB
    #2) Hardware
    Gateway GE614 desktop tower
    MSI-6741 motherboard
    AMD Athlon64 Processor 3400+ (single-core @ 2.3 GHz)
    2 GiB DDR ram
    Sapphire ATi RadeonHD 3650
    #3) GRUB
    Grub's root is defined as "hda (0,5)" which I believe is referring to sda6, or /boot
    Last edited by Darkfire Fox (2009-10-21 21:10:56)

    D'oh!
    I see my error now.  I'll have to modify my filesystem.  But still, why does the Arch installer allow you to select /etc as a mount point if it will cause so much trouble?  /usr and /var had to be specified under "custom mount point", but /etc was actually selectable from the list. Oh well, I'll just avoid it from now on.
    Solved.
    Last edited by Darkfire Fox (2009-10-21 21:10:22)

  • Can't install or uninstall iTunes because cannot find iTunes.msi

    Everytime I try to install or uninstall iTunes it won't let me do it...even though I have downloaded it, it keeps telling me "Cannot locate iTunes.Msi"
    Any ideas?

    I was able to solve my problem by following all the directions at the following Apple site - http://support.apple.com/kb/HT1926?viewlocale=en_US
    I was not able to remove the iTunes program using Add/Remove Programs from the Control Panel; however, that didn't seem to matter. I removed the directories and used the Microsoft Installer Cleanup Utility. I reinstalled iTunes Ver 8.1.1.10 with no problems. I'm sticking with this version for the time being.

  • Install Mountain Lion failed because cannot find out harddisk.

    Hi, my laptop is MacBook Air 2011 and I buy it near Dec 2011 in India. previously I installed Lion and Windows 7 in it. Today I get the Mountain Lion OS and try to install OS as totally new, so before installation I delete the windows partion. Now there is only Lion OS partion there can be seen in Disk Untility, but when I do the installation, only USB installation disk can be found.
    Now I cannot boot into Lion also, please tell how to solve this case so I can install Mountain OS, thanks!

    My laptop is Macbook Pro, just before the new models were released 2012
    My issue is slightly different, I downloaded ML and when asked to select the drive to install ML it would identify my hard drive as a time machine back-up. Then when I go back and try a second attempt it just flat out says I can't install ML on this hard drive. What's going on?
    As far as I know there is no damage, the computer is backed up.
    What can I do?

  • I am running 10.6.8 on a macbook-air. the 10.9.5 installer is telling me that i need to first install 10.9, but i cannot find the download. any suggestions? thanks

    the 10.9.5 dmg wont let me update directly from 10.6.8
    any suggestions?
    says i need 10.9 installed first
    i can't find 10.9 dmg on web to install
    any suggestions?

    hummingbird.jeff wrote:
    Hi Agan:
    Yes indeed ddanielsun is encountering  the same problem that led me to initiate this thread ... If you try to install any of the available 10.9.x from 10.6.8 the installer exits with an error "10.9 required for this update" ... seems strange that 10.9 is so very hard to find ! ! !
    jeff
    Clearly you can not update 10.9 if you do not have 10.9
    It is very easy to find, it is in the App Store as the picture I posted earlier displays. Follow the same instructions. If you can't then use THIS LINK which will take you there.
    The current version of 10.9 is 10.9.5 and that is what you will get.

  • Lightroom 5.3 will not install, error message saying it cannot find x64.msi

    I am not a cloud cc member, just cs6, downloaded lightroom from the lightroom page, it is not listed in my cloud application
    I get the following error message.The feature that you are trying to install is on a network resource that is unavailable. Check ok or try an alternative pathway to a folder containing the installation package, Adobe-Lightroom-64.msi.
    Any help would be appreciated.
    Thanks

    I get this to when trying to install from CC or standalone, thing is i have cleaned my C:\ drive since all apps tend to install crap there, it is
    a 115 gig ssd and i am down to 11 gig free, i removed a lot of stuff including some uninstall info that eats a lot of space.
    But where does the installer find the information? i have searched and deleted every mention of lightroom in the registry, god that was a lot,
    Still the old version is deleted from the disk with extreme prejudice is there no switch that makes it ignore any old versions and install anyway?

Maybe you are looking for

  • How to stop being prompted to make Thunderbird the default client

    When I launch Thunderbird on my iMac (using Mavericks iOS), I'm continually prompted to either "set as default" or "skip integration". I neither want Thunderbird to become my default email application, nor do I want to continually be prompted to skip

  • System hangs while I save or activate Message mapping

    Hi all, After performing the required message mapping whenever I save the Message Mapping the system hangs, it does respond but after a very long time say some 20+ minutes. But I don't encounter such problems while saving data types , message types ,

  • Moving the last record to 1st position

    Hi, I have 200 records in my internal table.I want to move the last record(200 position) to 1st position(i.e Index1). How to do it?

  • Strange BPEL behaviour

    I'm currently testing some small notification samples using BPEL. I ran into a strange problem. When I drag and drop a Email notification on my worksheet, configure it and save it, the underlying scope has an assign and an invoke activity. When I sav

  • ITUNES and Exclamation point problems

    It is incredibly frustrating trying to support a program that has so many quirks in it. Itunes should be a lot easier to handle when it comes to file management than it currently is. I recently changed out my 250 gb main HD for a 1 TB hard drive in o