Unsolved
This post is more than 5 years old
58 Posts
0
8727
December 7th, 2004 13:00
How to upgrade BIOS on a linux system with no floppy?
I got a Dell 1150 laptop. THe problem is that is supposed to be able to boot off usb and although usb is set to first boot option in my BIOS it does not boot off of it. Under the F12 menu there is no usb. Weird i know. I think newer bios releases fix this?
My BIOS IS A04. Which one is the latest that i need?
Is it possible to make a bootable cd rom off a exe file and if yes how?
Also, i found this page. THis guy has made iso images of all BIOS for Dell's
http://www.bay-wolf.com/flashbios.htm
Not sure which one i need as he does not list a 1150
thanks
My BIOS IS A04. Which one is the latest that i need?
Is it possible to make a bootable cd rom off a exe file and if yes how?
Also, i found this page. THis guy has made iso images of all BIOS for Dell's
http://www.bay-wolf.com/flashbios.htm
Not sure which one i need as he does not list a 1150
thanks
No Events found!


tdexter
63 Posts
0
December 9th, 2004 19:00
Let's say you have the bootable floppy image file named floppy.img in a directory named floppydir (with nothing else in the directory). The following command will make a bootable CD image file named bootcd.iso:
mkisofs -o bootcd.iso -b floppy.img floppydir
You can them burn that bootcd.iso to a CD just as you would with any CD image file. Booting from that CD will give you an A: prompt and you will see the contents of the original floppy image.
As far as getting the update in an image file you can get the 'non-packaged' bios updater from dell (this is just the executable bios updater). Then find any minimal dos boot floppy image. You can add the bios updater to that image by mounting it (as root) to any empty directory using the loop option:
mount floppy.img /path/to/dir -o loop
...and then copy the file:
cp bios_whatever.exe /path/to/dir
...then unmount it as root with:
umount /path/to/dir
Hope this helps. This stuff is good to know with floppys becoming increasingly rare (especially on Dells).
Tom
Alessio.Signori
3 Posts
0
December 13th, 2004 15:00
To make the USB KEY bootable you can use one of the many software that you can find on internet. Just look with Google, and you'll find it.
ToddR
3 Posts
0
January 7th, 2005 17:00