[pocket-linux] Version 1.2 (correction?)

joseph mpora pocket-linux@ufo.chicago.il.us
Mon, 23 Jun 2003 12:26:23 +0300


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