Thursday, January 10, 2008

bigbrother: Filesystem of /home/bbuser/bb/tmp is FULL

  1. go to /home/bbuser/bb
  2. change SORT \"+${DFSORT} to SORT \" -k${DFSORT+1}\" like below ( 2 places to change)
  3. [bbuser@jephe bin]$ grep DFCMD bb-disk.sh
    eval "$DFCMD | $EGREP \"$DFUSE\" | $EGREP -v \"$DFEXCLUDE\" | $SORT \"-k${DFSORT+1}\" > $BBTMP/DFOUT.$$"
    wclen1=`eval "$DFCMD | $EGREP \"$DFUSE\" | $EGREP -v \"$DFEXCLUDE\" | $SORT \"-k${DFSORT+1}\" | $WC"`
    [bbuser@jephe bin]$ pwd
    /home/bbuser/bb/bin
  4. starting up bb again by running : cd /home/bbuser/bb; sh runbb.sh
  5. check BBOUT output to see if you still encounter errors.
Conclution : sort +4 is the old obsolte syntax, use sort -k5 instead.

3 comments:

Unknown said...

Thanks it works like a charm

Unknown said...

It worked fine
Thanks

Unknown said...

Or just change line 59 of the bbsys.sh script in etc
DFSORT="-k5"