I am trying to install OpenSuse11 from usb hdd, because my notebood doesn’t have CD/DVD device. SuSE install from USB drive - openSUSE - I did everything like here.
but this command just doesn’t work.
mksusebootdisk --v --32 --partition /dev/sdb1 /mnt/iso/
It’s working forever.
I downloaded changed mksusebootdisk and make it executeable.
What is the usual time of running this command?
What could be wrong?
Is there other way to make my usb hdd installation bootable?
Its usually the “fsck -v” line in the mksusebootdisk that causes the script to hang. You can try running fsck -v <partition> independently (outside of the script) to see whether the output really makes sense.
On some fsck versions adding “-n” to the line : " fsck -v" (i.e. replacing it with "fsck -n -v " ) can solve the problem. On my system that didn’t work.
If you know perl you can add lines like the following in the script to see whats going on:
print " bpc=".$bpc." fatsize=".$fatsize."
";
Rest assured, the script would work. Whether you would be able to boot with it or not is a different question.