tymchn said:
I have tried installing with raid on Xubuntu but I am having no luck so far. After finally working out how to get the alternate iso to boot off usb, it seems there are some drivers missing. During the ncurses based install, my sd card in the "storage expansion" slot is not recognised. This means the partition manager can only see my ssd and usb drive. How can I create a raid disk with my sd card this way? Is there a special install iso that has drivers like pciehp and sdhci on? I would really appreciate any help with this
I had a problem installing debian last night. Basically if I just used unetbootin to make a bootable usb key from the main iso image, once it booted the installer would eventually start looking for the files on the cdrom, which there wasn't and it would bomb out.
What did work was using a boot image
Here is the one for the latest version of ubuntu:
http://archive.ubuntu.com/ubuntu/dists/ ... oot.img.gz
Download that then insert your usb key that you are going to use. If it mounts automatically then unmount it. With it unmounted format it to fat16:
sudo mkdosfs -I /dev/sdb
*Warning make sure that /dev/sdb is the location of the usb key or you will format something that you don't want to!*
Then copy the boot image over:
sudo zcat boot.img.gz > /dev/sdb
Now mount it and copy your xubuntu image over:
sudo mount /dev/sdb /mnt
sudo cp xubuntu.iso /mnt/
Also with the latest version of debian unstable and debian testing there was a bug in the installer that would not allow the wired nic module r8169 to load. I had to install old debian etch and then dist upgrade to testing with the great intel ssd, took like an hour to upgrade the 400mb base system (normally takes 10 min on standard computer)! Hopefully ubuntu won't have that problem.
Using the boot image is pretty straight forward, it should work as long as the kernel in the boot image and the iso are the same (or close)
edit: now that I have read your post again it seems your problem might have been different, oh well this is still good info