/ partition full

2009-03-13 Thread Warren Liddell
I've looked as much as i can, but with only 5meg free on / .. its making things in terms of building world kernel a lil difficult .. what's the command so i can see exactly what dir on / is using up all the space so i can free it up ? ___

Re: / partition full

2009-03-13 Thread Neal Hogan
just to clarify (it's early) man du(1) On Fri, Mar 13, 2009 at 6:33 AM, Warren Liddell shin...@maydias.com wrote: I've looked as much as i can, but with only 5meg free on / .. its making things in terms of building world kernel a lil difficult .. what's the command so i can see exactly

Re: / partition full

2009-03-13 Thread Mehul Ved
On Fri, Mar 13, 2009 at 5:03 PM, Warren Liddell shin...@maydias.com wrote: I've looked as much as i can, but with only 5meg free on / .. its making things in terms of building world kernel a lil difficult .. what's the command so i can see exactly what dir on / is using up all the space so i

Re: / partition full

2009-03-13 Thread Wojciech Puchar
I've looked as much as i can, but with only 5meg free on / .. its making things in terms of building world kernel a lil difficult .. what's the command so i can see exactly what dir on / is using up all the space so i can free it up ? du -s directory good lesson to NOT make multiple

Re: / partition full

2009-03-13 Thread Warren Liddell
Neal Hogan wrote: man du Thanks that gave me what i needed .. now i goto figure out what i can del an what not to .. never had a prob with / filling up before *g* enterprise# du -h -d 1 / 2.0K/.snap 2.0K/dev 34K/tmp 537G/usr 740M/var 1.7M/etc 2.0K/cdrom 2.0K

Re: / partition full

2009-03-13 Thread Mehul Ved
On Fri, Mar 13, 2009 at 6:06 PM, Warren Liddell shin...@maydias.com wrote: Thanks that gave me what i needed .. now i goto figure out what i can del an what not to .. never had a prob with / filling up before *g* enterprise# du -h -d 1 / 537G    /usr 538G    / Pretty easy to figure out

Re: / partition full

2009-03-13 Thread Olivier Nicole
396M/boot I'd say this /boot is pretty big, you may have several versions of older kernel that you can remove. Olivier ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send

Re: / partition full

2009-03-13 Thread Bill Moran
In response to Warren Liddell shin...@maydias.com: Neal Hogan wrote: man du Thanks that gave me what i needed .. now i goto figure out what i can del an what not to .. never had a prob with / filling up before *g* enterprise# du -h -d 1 / Try du -hxd1 / It'll save you from having

Re: / partition full

2009-03-13 Thread Bill Moran
In response to Wojciech Puchar woj...@wojtek.tensor.gdynia.pl: good lesson to NOT make multiple partitions :) And when a rogue app fills up /var and kills 4 other apps that could have kept going ... are we then learning conflicting lessons? Enterprise-class servers should have many partitions

Re: / partition full

2009-03-13 Thread Ian Smith
On Fri, 13 Mar 2009 21:33:53 +1000 Warren Liddell shin...@maydias.com wrote: I've looked as much as i can, but with only 5meg free on / .. its making things in terms of building world kernel a lil difficult .. what's the command so i can see exactly what dir on / is using up all the

Re: / partition full

2009-03-13 Thread Jacques Manukyan
Definitely take a look at the /usr/home directory like Mehul stated. Try something like this to get a list of large files in that file system: find /usr -type f -size +50M -exec ls -la {} \; or find /usr/home -type f -size +50M -exec ls -la {} \; The above commands will print out a list of

Re: / partition full

2009-03-13 Thread John Almberg
On Mar 13, 2009, at 8:46 AM, Bill Moran wrote: In response to Wojciech Puchar woj...@wojtek.tensor.gdynia.pl: good lesson to NOT make multiple partitions :) And when a rogue app fills up /var and kills 4 other apps that could have kept going ... are we then learning conflicting lessons?

Re: / partition full

2009-03-13 Thread Warren Liddell
Mehul Ved wrote: On Fri, Mar 13, 2009 at 6:06 PM, Warren Liddell shin...@maydias.com wrote: Thanks that gave me what i needed .. now i goto figure out what i can del an what not to .. never had a prob with / filling up before *g* enterprise# du -h -d 1 / 537G/usr 538G/ Pretty

Re: / partition full

2009-03-13 Thread Warren Liddell
Olivier Nicole wrote: 396M/boot I'd say this /boot is pretty big, you may have several versions of older kernel that you can remove. Olivier with thanks to the added du command not looking into mounts, it seemd /boot was it, there was a kernel.old file in there rather large,

Re: / partition full

2009-03-13 Thread Jos Chrispijn
Warren Liddell wrote: with thanks to the added du command not looking into mounts, it seemd /boot was it, there was a kernel.old file in there rather large, removed it an an old loader file which has freed up quite a bit of space .. How much space did you get rid of? Jos Chrispijn

Re: / partition full

2009-03-13 Thread Kaspars Bankovskis
On Fri, Mar 13, 2009 at 1:42 PM, Mehul Ved mehul.n@gmail.com wrote: On Fri, Mar 13, 2009 at 5:03 PM, Warren Liddell shin...@maydias.com wrote: I've looked as much as i can, but with only 5meg free on / .. its making things in terms of building world kernel a lil difficult .. what's the

partition full, recreating a tape device

2004-11-24 Thread David Newman
Greetings. This is regarding a FSBD 4.10-RELEASE system. df -h shows the root file system is 109 percent utilized: Filesystem Size Used Avail Capacity Mounted on /dev/aacd0s1a 126M 126M -9.9M 109%/ The culprit is a rewindable tape drive in /dev. It shows up as an ordinary

Re: partition full, recreating a tape device

2004-11-24 Thread Dan Nelson
In the last episode (Nov 24), David Newman said: Greetings. This is regarding a FSBD 4.10-RELEASE system. df -h shows the root file system is 109 percent utilized: Filesystem Size Used Avail Capacity Mounted on /dev/aacd0s1a 126M 126M -9.9M 109%/ The culprit is a

Re: partition full, recreating a tape device

2004-11-24 Thread David Newman
On Wed, 24 Nov 2004, Dan Nelson wrote: 1. /dev/nsa1 shows up as a regular device; and 2. /dev/nsa1 doesn't fill up the filesystem Remove /dev/nsa1, and run ./MAKEDEV sa1, which will recreate all the device nodes for sa1, including nsa1. Worked like a charm. Thanks for your speedy reply! dn

HELP! root partition full!

2003-01-30 Thread Jason Morgan
I got a strange error from my server this morning - root partition full. I then looked at my email and had this in my inbox (of course I get this every day): Disk status: Filesystem1K-blocksUsedAvail Capacity Mounted on /dev/ad0s1a 516062 505036 -30258 106

Re: HELP! root partition full!

2003-01-30 Thread Jeff Jirsa
On Thu, 30 Jan 2003, Jason Morgan wrote: I got a strange error from my server this morning - root partition full. I then looked at my email and had this in my inbox (of course I get this every day): Disk status: Filesystem1K-blocksUsedAvail Capacity Mounted on /dev/ad0s1a

Re: HELP! root partition full!

2003-01-30 Thread Jim Trigg
On Thu, Jan 30, 2003 at 12:05:50PM -0500, Jason Morgan wrote: I got a strange error from my server this morning - root partition full. I then looked at my email and had this in my inbox (of course I get this every day): Disk status: Filesystem1K-blocksUsedAvail Capacity

Re: HELP! root partition full!

2003-01-30 Thread Beech Rintoul
- Original Message - From: Jason Morgan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 30, 2003 8:05 AM Subject: HELP! root partition full! I got a strange error from my server this morning - root partition full. I then looked at my email and had this in my inbox

Re[2]: HELP! root partition full!

2003-01-30 Thread Ben Williams
Thursday, January 30, 2003, 3:56:58 PM, you wrote: BR - Original Message - BR From: Jason Morgan [EMAIL PROTECTED] BR To: [EMAIL PROTECTED] BR Sent: Thursday, January 30, 2003 8:05 AM BR Subject: HELP! root partition full! I got a strange error from my server this morning - root