Creating a boot diskette that does nothing but boot from hard disk

Ask a Question related to FreeBSD, Design and Development.

  1. #1

    Default Creating a boot diskette that does nothing but boot from hard disk

    Is it possible to create a boot diskette that does nothing more than
    boot from a specific hard disk? How would I go about doing so?

    If I can't figure out why my system won't boot from the hard disk on its
    own, I figure that perhaps I could create a diskette to pop into the
    machine that would simple boot immediately from the hard disk. It
    shouldn't require much code and should easily fit on a single diskette.

    The method I'm using at the moment of changing floppies for ten minutes
    then entering the loader and changing parameters and booting is much too
    awkward.

    --
    Anthony


    Anthony Atkielski Guest

  2. Similar Questions and Discussions

    1. boot disk on sgi
      Does anyone have info on how to get boot image for SGI indigo2 ? I am trying to make a boot CD Thank you very much kyle
    2. boot disk
      How do I make a boot disk for windows xp? I t keep's asking for it.
    3. cd boot disk
      My new laptop dosen't have a floppy drive. How do I create a cd boot disk? Thanks in advance, Mike.
    4. dd disk image won't boot
      Hello, I have the following problem : I took a dd image from a boot disk on a E4500 to another disk on a second diskboard. disk0 (source) =...
    5. SCO 5 boot disk
      Hello, I got the boot image for SCO 5 installation. How can I mount this disk and see the files in it? Thanks, ts.
  3. #2

    Default Re: Creating a boot diskette that does nothing but boot from hard disk


    ----- Original Message -----
    From: "Anthony Atkielski" <atkielski.anthony@wanadoo.fr>
    To: <freebsd-questions@freebsd.org>
    Sent: Wednesday, February 23, 2005 9:28 PM
    Subject: Creating a boot diskette that does nothing but boot from hard disk

    > Is it possible to create a boot diskette that does nothing more than
    > boot from a specific hard disk? How would I go about doing so?
    >
    > If I can't figure out why my system won't boot from the hard disk on its
    > own, I figure that perhaps I could create a diskette to pop into the
    > machine that would simple boot immediately from the hard disk. It
    > shouldn't require much code and should easily fit on a single diskette.
    >
    > The method I'm using at the moment of changing floppies for ten minutes
    > then entering the loader and changing parameters and booting is much too
    > awkward.
    >
    > --
    > Anthony
    >
    >
    I now that there is a boot loader named fatload you can find it on
    [url]http://www.vortex.prodigynet.co.uk/boot/index.html[/url]
    you can install it with dd.

    If that dont work you can write a program that loads a sector (boot sector)
    to your RAM
    memory and then jump there. Sounds simple but you musst not forget that you
    should switch
    to protected mode from real mode.

    But I think fatload will work just fine. Good luck!
    _______________________________________________
    > [email]freebsd-questions@freebsd.org[/email] mailing list
    > [url]http://lists.freebsd.org/mailman/listinfo/freebsd-questions[/url]
    > To unsubscribe, send any mail to
    "freebsd-questions-unsubscribe@freebsd.org"

    Richard Jansson Guest

  4. #3

    Default Re: Creating a boot diskette that does nothing but boot from hard disk

    On Wed, 2005-02-23 at 21:28 +0100, Anthony Atkielski wrote:
    > Is it possible to create a boot diskette that does nothing more than
    > boot from a specific hard disk? How would I go about doing so?
    Assuming you are unable to boot after completing the installation, have
    you tried a third-party boot manager like GAG? GAG in particular is
    quite good at booting weird hardware and might very well find your
    installation and offer it when you run the setup.

    [url]http://gag.sourceforge.net/[/url]

    >
    > If I can't figure out why my system won't boot from the hard disk on its
    > own, I figure that perhaps I could create a diskette to pop into the
    > machine that would simple boot immediately from the hard disk. It
    > shouldn't require much code and should easily fit on a single diskette.
    In fact, you can set up a floppy with GAG on it like this. But you might
    as well install GAG to the hard drive.

    Peter.


    Peter Risdon Guest

  5. #4

    Default Re: Creating a boot diskette that does nothing but boot from hard disk

    Richard Jansson writes:
    > If that dont work you can write a program that loads a sector (boot
    > sector) to your RAM memory and then jump there. Sounds simple but you
    > musst not forget that you should switch to protected mode from real
    > mode.
    I haven't written in assembler in years. I was hoping that maybe I
    could just copy a boot program from somewhere to somewhere else. After
    all, the usual boot program on the floppy boots the OS from the floppy,
    so all one needs to do is change that program to point to the correct
    hard drive instead.

    --
    Anthony


    Anthony Atkielski Guest

  6. #5

    Default Re: Creating a boot diskette that does nothing but boot from harddisk

    Try to use fatload [url]http://www.vortex.prodigynet.co.uk/boot/index.html[/url]
    Richard Jansson Guest

  7. #6

    Default Re: Creating a boot diskette that does nothing but boot from hard disk

    Peter Risdon writes:
    > Assuming you are unable to boot after completing the installation, have
    > you tried a third-party boot manager like GAG? GAG in particular is
    > quite good at booting weird hardware and might very well find your
    > installation and offer it when you run the setup.
    >
    > [url]http://gag.sourceforge.net/[/url]
    I tried it. GaG boots, and finds the FreeBSD installation, and I
    installed the installation it found as a boot option. But when I
    actually select FreeBSD from the boot menu, I get the same blank screen
    as before. GaG has no trouble booting from the hard disk, but FreeBSD
    does.

    --
    Anthony


    Anthony Atkielski Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139