boot sector

All off topic discussions go here. Everything from the funny thing your cat did to your favorite tv shows. Non-programming computer questions are ok too.
Post Reply
User avatar
xyjamepa
Member
Member
Posts: 397
Joined: Fri Sep 29, 2006 8:59 am

boot sector

Post by xyjamepa »

Hi
how can I copy my HDD boot sector to floppy disk
and then how can I copy it back to my HDD.
Thanx
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Libera.chat IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Post by Combuster »

under DOS and derivates:

sys c: a: (from disk to floppy)
or
sys a: c: (from floppy to harddisk)
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
User avatar
xyjamepa
Member
Member
Posts: 397
Joined: Fri Sep 29, 2006 8:59 am

Post by xyjamepa »

It didn't work with me any other way?
I'm using windows enviroment.
Thanx.
User avatar
Kevin McGuire
Member
Member
Posts: 843
Joined: Tue Nov 09, 2004 12:00 am
Location: United States
Contact:

Post by Kevin McGuire »

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
pcmattman
Member
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:

Post by pcmattman »

Get Cygwin, use it's dd command.

For instance, your 'C' drive (ie. first) boot sector --> floppy (A:):

Code: Select all

dd count=1 if=/dev/hdd0 of=/dev/fd0
Other way around, just change 'if' to 'of' and vice versa.
Post Reply