"Jrgen_P._Tjern":
> Branch 0 would be the first branch on the /proc/mounts-line? If so,
> that's /vault/disk3, which is xfs. How do I find largest inode number?

Please send me the output of this script.
Set $path correctly before you execute it.

Junjiro Okajima

----------------------------------------------------------------------
#!/bin/sh

path=/tmp
tmp=/tmp/$$

set -x
df -i $path
for i in 1 2
do
        sudo find $path \
                \( \( -name 3.Lbs \
                -o -name libxtst6_1.0.1-3build1_i386.deb \
                -o -name samba-common_3.0.22-1ubuntu4.2_i386.deb \) \
                -fls $tmp.${i}a \) \
                -o -printf '%i\n' |
        sort -n > $tmp.$i
done

diff -u $tmp.[12]a
diff -u $tmp.[12]

cat $tmp.1a
tail $tmp.1
egrep -w '(805306524|134217865|134217862)' $tmp.[12]
rm -f $tmp.*

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

Reply via email to