diff options
author | joerg <joerg@FreeBSD.org> | 1996-11-09 16:25:47 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1996-11-09 16:25:47 +0000 |
commit | ce411f960dcde291410b04a762525490f419123b (patch) | |
tree | 434f699a559264a1da3e540461282ac615b22125 /release/fixit.profile | |
parent | 5e95f3ceb1215a2995223ced1bdad086a2e6ab66 (diff) | |
download | FreeBSD-src-ce411f960dcde291410b04a762525490f419123b.zip FreeBSD-src-ce411f960dcde291410b04a762525490f419123b.tar.gz |
Several improvements to the `fixit' configuration:
. Don't gzip the crunched binary by now; it just fits, and execution is
a lot faster this way (it's truly demand-paged again).
. Add more(1), ft(8), protocols(5), a stripped down services(5).
. Improve the .profile, and make sysinstall actually use it again.
Still no go for a 4 MB configuration though. :-(
Diffstat (limited to 'release/fixit.profile')
-rw-r--r-- | release/fixit.profile | 33 |
1 files changed, 24 insertions, 9 deletions
diff --git a/release/fixit.profile b/release/fixit.profile index 38bdf8b..d096c9d 100644 --- a/release/fixit.profile +++ b/release/fixit.profile @@ -1,15 +1,30 @@ : -# $Id$ -PATH=/stand -BLOCKSIZE=K -PS1="Fixit# " - -echo '+---------------------------------------------------+' -echo '| You are now running from a FreeBSD "fixit" floppy |' -echo '+---------------------------------------------------+' +# $Id: fixit.profile,v 1.1 1995/03/15 06:14:19 phk Exp $ + +export BLOCKSIZE=K +export PS1="Fixit# " +export EDITOR="/mnt2/stand/vi" +export PAGER="/mnt2/stand/more" + +alias ls="ls -F" +alias ll="ls -l" +alias m="more -e" + +echo '+---------------------------------------------------------------+' +echo '| You are now running from a FreeBSD "fixit" floppy. |' +echo '| ------------------------------------------------------------- |' +echo "| When you're finished with this shell, please type exit. |" +echo '| The fixit floppy itself is mounted as /mnt2. |' +echo '| |' +echo '| You might want to symlink /mnt/etc/*pwd.db and /mnt/etc/group |' +echo '| to /etc after mounting a root filesystem from your disk. |' +echo '| tar(1) will not restore all permissions correctly otherwise! |' +echo '+---------------------------------------------------------------+' echo echo 'Good Luck!' echo -export PATH BLOCKSIZE PS1 +# Make the arrow keys work; everybody will love this. +set -o emacs 2>/dev/null +cd / |