Full Partition?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Full Partition?
# 1  
Old 09-08-2006
Full Partition?

Hi Everyone,

I think I've filled up one of the partitions on my drive. I suspect that one of the applications I've been running has been spitting out junk files to this partition - most of which can be deleted. The problem is that I have no idea how to go look at what's on that partition and remove it.

In particular, the command:
df -h
produces the output

Filesystem Size Used Avail Use% Mounted on
/dev/sda1 5.8G 5.5G 0 100% /
none 501M 0 501M 0% /dev/shm
/dev/sda3 361G 68G 275G 20% /state/partition1
tmpfs 242M 5.4M 237M 3% /var/lib/ganglia/rrds
/state/partition1/home/workhorse
361G 68G 275G 20% /home/workhorse

As you can see, /dev/sda1 is full. Any advice on how I can find out what's filling up this partition?

(My apologies if this is a common/basic question. I tried to do a search, but I'm afraid I don't even know what to search for.)
# 2  
Old 09-08-2006
Run the following command:
Code:
find / -xdev -type f -size +100000000c -print

This should print all files larger than 100MB in the / filesystem. Then you can see what these files are and decide to remove/truncate/compress them.
# 3  
Old 09-08-2006
Thanks Blowtorch, this seems to have worked.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

TRU64 - Cluster boot partition is FULL

Good day, Anybody, know how to clean/free up the Cluster_boot partition in TRU64 Thank you in advance Miaka (0 Replies)
Discussion started by: miaka1012
0 Replies

2. Red Hat

Shrink LVM partition & create new Linux Primary partition

Hello All, I have a Red Hat Linux 5.9 Server installed with one hard disk & 2 Partitions created on it as follows, /boot - Linux Partition & another is LVM - One VG & under that 5-6 Logical volumes(var,opt,home etc). Here my requirement is to take out 1GB of space from LVM ( Any logical... (5 Replies)
Discussion started by: gr8_usk
5 Replies

3. Solaris

Partition overlaps another partition while creating new parition in solaris

hi all while formatting hard disk i am getting following error. Partition 1 ends at 266338338 It must be between 34 and 143374704. label error: EFI Labels do not support overlapping partitions Partition 8 overlaps partition 1. Warning: error writing EFI. Label failed. I have formatted the... (2 Replies)
Discussion started by: nikhil kasar
2 Replies

4. HP-UX

/var partition full need help

My /var partition is almost utilized ... Here am not sure where to release space now OS/model : HP-UX B.11.11 U 9000/800 # bdf /var Filesystem kbytes used avail %used Mounted on /dev/vg00/lvol9 6144000 6142176 1824 100% /var <root@pb>/var # du -sk * | sort -n |... (20 Replies)
Discussion started by: Shirishlnx
20 Replies

5. HP-UX

effect of full root partition on server

hi, I want to know that "What Happen if the root partition gets full on the server? I have HP-Unix 11.11 installed. (3 Replies)
Discussion started by: majidtahir
3 Replies

6. UNIX for Advanced & Expert Users

Hard-disk partition is Full problem?

HI, Currently I am working in One of the webhosting company and I found on one of my server "/home" partition is getting full say 105% usage... But when I actually check the partition size using "du -h", exact partition utilization is only 60-70%. So... (1 Reply)
Discussion started by: jagdish.machhi@
1 Replies

7. UNIX for Dummies Questions & Answers

I've created a partition with GNU Parted, how do I mount the partition?

I've created a partition with GNU Parted, how do I mount the partition? The manual information at http://www.gnu.org/software/parted/manual/parted.html is good, but I am sure about how I mount the partition afterwards. Thanks, --Todd (1 Reply)
Discussion started by: jtp51
1 Replies

8. UNIX for Advanced & Expert Users

root partition full and problem start

We have SunOS 5.7 m/c. Following is the situation and problem what we are facing - - The root partition was full. - No login was possible on server (not from console also) - M/c was power swithced off - After this only console login is possible. FTP is possible. No telnet is possible. I... (1 Reply)
Discussion started by: rahul72
1 Replies

9. Filesystems, Disks and Memory

root partition was full and problem start

We have SunOS 5.7 m/c. Following is the situation and problem what we are facing - - The root partition was full. - No login was possible on server (not from console also) - M/c was power swithced off - After this only console login is possible. FTP is possible. No telnet is possible. I... (3 Replies)
Discussion started by: rahul72
3 Replies
Login or Register to Ask a Question