Brak wolnego miejsca na urządzeniu (ram fdd lub hda1)
Pakiety przewaznie
ładuja sie do katalogu /tmp a ten jest w ramdysku
Najpierw zrób
mkdir /mnt/tmp
a potem do /rc/rc_user dopisz:
#----------------------------------------------------------------------
$DONE; [ "$1" = stop ] && exit; fi
echo -n "Starting rc_user... "
# Add commands here you want to execute when booting. Use the fork
# command to launch programs which normally stay in the foreground.
cp -f /tmp/* /mnt/tmp 2>/dev/null
rm -rf /tmp
ln -s /mnt/tmp /tmp
#----------------------------------------------------------------------
$DONE