Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 Oct 2002 17:34:03 -0400 (EDT)
From:      Jerry McAllister <jerrymc@clunix.cl.msu.edu>
To:        tcooper1@telusplanet.net (Terry Cooper)
Cc:        questions@FreeBSD.ORG
Subject:   Re: FreeBSD bootable floppy Script NOT WORKING
Message-ID:  <200210212134.g9LLY3s15081@clunix.cl.msu.edu>
In-Reply-To: <004901c27947$f71829b0$fb69cecd@donatev49iknkl> from "Terry Cooper" at Oct 21, 2002 02:22:31 PM

next in thread | previous in thread | raw e-mail | index | archive | help
> 
> Ok, I'm frustrated out. Do people actually use this script because the only
> one I find is the the one referenced from freebsd.org.
> 
> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/backup-basics.html
> #AEN14848
> 
> I cut and paste this script into a file in windows and then did a fetch from
> my server. When my script run's into the EOM command I get problems. I am
> running sh shell I think.
> 
> cat << EOM
> 
> I'm using FreeBSD 4.62 and EOM is just putting everything into one file. I
> retyped everything and getting the same problem. So I don't know if it's
> hidden characters or not. Is there a place to fetch this file!!!!! Because
> I'm going crazy.

I am not sure what all else is happening, but EOM here 
is not exactly a command.

The sequence:

  cat > /mnt/etc/fstab <<EOM
  /dev/fd0a    /    ufs    rw  1  1
EOM

Tells it to cat the following lines up until the EOM in to
the file names /mnt/etc/fstab

Namely, it puts the line
    /dev/fd0a    /    ufs    rw  1  1

in to that file.
It is making a mini /etc/fstab file with the /dev/fdoa entry.

You may need to put other/more stuff in it.

The other ones are similar, but different stuff to different
files - the passwd and master.passwd files.

////jerry

> 
> Also is this bootable floppy suppose to let me see something because so far
> all I get is a no /boot/loader.
> 
> 
> To Unsubscribe: send mail to majordomo@FreeBSD.org
> with "unsubscribe freebsd-questions" in the body of the message
> 


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200210212134.g9LLY3s15081>