[pocket-linux] Version 1.2 (correction?)
David Horton
pocket-linux@ufo.chicago.il.us
Mon, 23 Jun 2003 14:55:30 -0400
> Thanks Dave, version 1.2 corrected the strip -o command;
>
> I thought that this part
>
> 5.3.1. Install utilities from e2fsprogs
>
> bash# cd /usr/src/e2fsprogs-1.29
> bash# ./configure --host=i386-pc-linux-gnu
> bash# make
> bash# cd e2fsck
> bash# cp e2fsck.shared ~/staging/sbin/e2fsck
> bash# ln -s e2fsck ~/staging/sbin/fsck.ext2
> bash# cd ../misc
> bash# cp fsck mke2fs ~/staging/sbin
> bash# ln -s mke2fs ~/staging/sbin/mkfs.ext2
>
> should have been
>
> 5.3.1. Install utilities from e2fsprogs
>
> bash# cd ~/src/e2fsprogs-1.29
> bash# ./configure --host=i386-pc-linux-gnu
> bash# make
> bash# cd e2fsck
> bash# cp e2fsck.shared ~/staging/sbin/e2fsck
> bash# cd ../misc
> bash# cp fsck mke2fs ~/staging/sbin
> bash# cd ~/staging/sbin
> bash# ln -s mke2fs mkfs.ext2
> bash# ln -s e2fsck fsck.ext2
>
> What do you think? This makes the links (mkfs.ext and fsck.ext2)
> relative to the directory they are in, whereas the previous one makes
> them point to your home directory. (~/)
>
> Joseph
>
Joseph,
I think the two examples above do the same thing, but I will
double-check it. Try "ls -l ~/staging/sbin" and see what comes up for
each method. Hopefully both ways of doing it will result in "mkfs.ext2
-> mke2fs" and "fsck.ext2 -> e2fsck" rather than including the home
directory path like "mkfs.ext2 -> ~/staging/sbin/mke2fs". Or try "ls -l
/sbin" after booting from the diskset.
Dave