Hello there, I have some problem with my filesystem. #df -h ... /dev/da0s1e 288M 265M -208.0K 100% /var ... #du -h /var .. 19M /var .. Does anybody has an idea what Im supposed to do? Thank you. --------------------------------- Do you Yahoo!? The New Yahoo! Search - Faster. Easier. Bingo.
On Wed, 2003-07-09 at 04:29, bodo ah wrote:> #df -h > ... > /dev/da0s1e 288M 265M -208.0K 100% /var > ... > #du -h /var > .. > 19M /var > .. > > Does anybody has an idea what Im supposed to do?Install sysutils/lsof and use it to find what program has a deleted file open on /var; kill that program, and the space will be reclaimed. -- brandon s. allbery [os/2][linux][solaris][japh] allbery@kf8nh.apk.net system administrator [WAY too many hats] allbery@ece.cmu.edu electrical and computer engineering KF8NH carnegie mellon university ["better check the oblivious first" -ke6sls]
Hi, there are files that are unlinked and still opened ( rm'ing a file won't erase it, unless it has no references). You can use lsof to find out what large files are opened. Domas --- original message I have some problem with my filesystem. #df -h /dev/da0s1e 288M 265M -208.0K 100% /var #du -h /var 19M /var
bodo ah wrote:> > Hello there, > > I have some problem with my filesystem. > > #df -h > ... > /dev/da0s1e 288M 265M -208.0K 100% /var > ... > #du -h /var > .. > 19M /var > .. > > Does anybody has an idea what Im supposed to do? >you might try dropping into single user mode and then unmounting the volume and running fsck against it. kill 1 umount /var fsck /var 200 some odd megs is a fair amount to go missing. good luck.