Showing posts with label boot usb stick fails. Show all posts
Showing posts with label boot usb stick fails. Show all posts

Thursday, February 10, 2011

install Archbang on USB drive from windows

You of course can do using a live CD
If you want to install from usb, don't use unetbootin but run the following command "sudo dd if=ArchBang_Symbiosis-2011.01.24-i686.iso of=/dev/YourUsbDevice bs=8M". Type fdisk -l to see your list of devices (your usb stick is probably /dev/sdb)

If you use unetbootin this is a workaround according to a forum member of AB>
When you get the "Wait 30sec for device 'ARCH-20XXXX'" Error or so, try to name the device exactly this way under Windows.
Then unetbootin and every other method should work fine.

The universal USB Installer from Pendrive seems to work out of the box:
http://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/

Friday, November 27, 2009

What If boot USB stick doesn't boot because of bios. Make a special boot cdrom

Make a USB Boot CD for CrunchBang Linux

The following tutorial will enable you to create a USB Boot CD that can be used to Boot CrunchBang Linux from a USB Flash Drive on systems that do not natively support booting from USB. The USB Boot CD uses a grub bootloader to launch the vmlinuz kernel and initrd from the CD, loading the necessary USB drivers, and then proceeds to locate and extract the compressed filesystem from the flash drive. CrunchBang Linux is a unique remix based on Ubuntu.

USB Boot CD for CrunchBang Linux creation essentials:

* PC with a BIOS that does not support booting from USB
* CrunchBang Live CD
* Working CD Drive and USB Port
* Flash drive with CrunchBang preinstalled (see earlier article below)

How to Create a CD to Boot CrunchBang from USB


1. Insert the CrunchBang Live CD and restart, booting from the CD
2. Open a terminal and type mkdir -p usbcdcb/boot/grub
3. Type cp /usr/lib/grub/i386-pc/stage2_eltorito usbcdcb/boot/grub
4. Type gedit usbcdcb/boot/grub/menu.lst
5. Add the following information to your menu.lst file and save it

title Run CrunchBang from USB DISK
root (cd)
kernel /boot/vmlinuz file=/cdrom/preseed/custom.seed boot=casper noprompt cdrom-detect/try-usb=true persistent quiet splash
initrd /boot/initrd.gz
boot


6. Type cp /cdrom/casper/initrd.gz ~/usbcdcb/boot
7. Type cp /cdrom/casper/vmlinuz ~/usbcdcb/boot
8. Type mkisofs -R -b boot/grub/stage2_eltorito -no-emul-boot -boot-load-size 4 -boot-info-table -o usbcdcb.iso usbcdcb
9. Burn the usbcdcb.iso to a CD

Booting from the USB Boot CD for CrunchBang

  1. Shutdown your computer
  2. Insert the USB Boot CD and your CrunchBang USB drive
  3. Set your BIOS or Startup Menu to boot from CD
  4. Start your computer (booting from the CD)

The USB Boot CD should load the necessary USB drivers, locate filesystem.squashfs on your flash drive, and then proceed to boot CrunchBang from the USB device.

This works like a charm.

source: http://www.pendrivelinux.com/make-a-usb-boot-cd-for-crunchbang-linux/#more-1128

Blog Archive