enlarge tmp directorie

Discussion in 'Server Operation' started by ColdDoT, May 4, 2006.

  1. ColdDoT

    ColdDoT Member

    Hello

    my tmp directory is to small. i know how to enlarge it on freeBSD
    Code:
    $mdmfs -s 512m md /tmp
    but how to do it on debian sarge?

    i asking this because of this error
    Code:
    server:/tmp# /etc/init.d/clamav-daemon start
    Starting ClamAV daemon: clamdLibClamAV Error: Wrote 0 instead of 512 (/tmp/clamav-afb00de901bb2711/main.ndb).
    cli_untgz: No space left on device
    LibClamAV Error: cli_cvdload(): Can't unpack CVD file.
    LibClamAV Error: Can't load /var/lib/clamav/main.cvd: CVD extraction failure
    ERROR: CVD extraction failure
     failed!
    
    Greets kevin
     
  2. ColdDoT

    ColdDoT Member

    nvm
    my / system was full 100% :(
    but is there a command to find all big files
    like
    $find size>10mb
     
  3. falko

    falko Super Moderator ISPConfig Developer

    I've found this this morning: http://linuxcommand.org/learning_the_shell.php
    Try this command:
    Code:
    du -s * | sort -nr > $HOME/space_report.txt
     

Share This Page