Hi
how can I copy my HDD boot sector to floppy disk
and then how can I copy it back to my HDD.
Thanx
boot sector
- Kevin McGuire
- Member
- Posts: 843
- Joined: Tue Nov 09, 2004 12:00 am
- Location: United States
- Contact:
Try downloading a live CD for Ubuntu:
http://www.ubuntu.com/
1. You could learn a little about linux.
2. You can find a terminal window and try to use dd.
dd bs=512 count=1 if=/dev/hda of=/dev/fda
dd bs=512 count=1 of=/dev/hda if=/dev/fda
http://www.ubuntu.com/
1. You could learn a little about linux.
2. You can find a terminal window and try to use dd.
dd bs=512 count=1 if=/dev/hda of=/dev/fda
dd bs=512 count=1 of=/dev/hda if=/dev/fda
-
- Member
- Posts: 2566
- Joined: Sun Jan 14, 2007 9:15 pm
- Libera.chat IRC: miselin
- Location: Sydney, Australia (I come from a land down under!)
- Contact:
Get Cygwin, use it's dd command.
For instance, your 'C' drive (ie. first) boot sector --> floppy (A:):
Other way around, just change 'if' to 'of' and vice versa.
For instance, your 'C' drive (ie. first) boot sector --> floppy (A:):
Code: Select all
dd count=1 if=/dev/hdd0 of=/dev/fd0