/opt file system full !!!


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users /opt file system full !!!
# 8  
Old 01-18-2010
here is what i get..

Code:
#lsof +L1
 
COMMAND     PID USER   FD   TYPE  DEVICE   SIZE/OFF NLINK   NODE NAME
gstd      21811 root    0w  VREG    85,3 3146831005     0  12684 /opt (/dev/md/dsk/d3)
gstd      21811 root    1w  VREG    85,3 3146831005     0  12684 /opt (/dev/md/dsk/d3)
gstd      21811 root    2w  VREG    85,3 3146831005     0  12684 /opt (/dev/md/dsk/d3)

Any help on fixing this is appreciated.

Last edited by DukeNuke2; 01-18-2010 at 07:31 PM..
# 9  
Old 01-18-2010
Is there a symbolic link in your system that points to /opt? Maybe some software application that loads in other directories but links itself to /opt?
# 10  
Old 01-18-2010
In desperation there are likely to be applications in /opt that are not constantly running that could therefore be moved to a different filesystem and then linked to from /opt to make them appear to be still in /opt. e.g. if you had Adobe Acrobat (highly unlikely on a backup server but it will serve for this example) then you could do the following to move Adobe Acrobat to the root file system:
Code:
 
# mv /opt/Adobe /opt_Adobe
# ln -s /opt_Adobe /opt/Adobe

# 11  
Old 01-18-2010
No symbolic liink pointing to /opt ..
# 12  
Old 01-19-2010
No I'm suggesting you move something out of /opt to free up some space and then use a symbolic link to make appear to be still in /opt.
# 13  
Old 01-19-2010
Are we sure that some log file isn't leaking or ran crazy and caused this, or perhaps some temp file or what not?

What does du display of the /opt directory? You can do it at a directory level and if you know certain directories should not be that large then you can narrow the problem down, or are you really just out of space on that volume due to having too much installed in /opt?
# 14  
Old 01-19-2010
if there is a big difference between the output of du and df, there are
probably open files (by a running process), that are deleted or moved.
you can find them, as already reported, with
Code:
lsof -a +L1

or something like this:
Code:
find /proc/ -type f -links 0 -exec ls -l {} \;

should have a similar effect
(find(1) - find files (man pages section 1: User Commands) - Sun Microsystems)

a reboot would probably be the easiest solution.

Last edited by Mulekk; 01-20-2010 at 04:48 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

File system full, swap

hi all I am having a t5240 server in that zone is there in /var/adm/messages i am getting the following warning WARNING: /zoneroot/zonename-zone/root/tmp: File system full, swap space limit exceeded if a swap is getting full what can i do. Please use code tags next time for your... (2 Replies)
Discussion started by: nikhil kasar
2 Replies

2. Emergency UNIX and Linux Support

ufs_aolloc.c :/ file system full

I am running Ubix SVR4, namely MP-Ras unix. I installed a remote printer and now I keep getting an error that looks like this: ufs_alloc.c /: file system full I have deleted the remote printer but am still receiving this error. I know it has something to do with the fact that my / partition... (3 Replies)
Discussion started by: Rutgerncas
3 Replies

3. Red Hat

File system full, but not really.

Hey all, What do you think mostly happened in the following situation? I have a Red Hat 5.5 server. Someone, somehow, managed to get two .nfs000.... type files that totaled over a terabyte in size. I removed them and thought things were back to normal. Then I started getting complains from... (2 Replies)
Discussion started by: geelsu
2 Replies

4. Solaris

file system full

hello Even though I am not out of inodes or of space, the /var/adm/messages shows messages: file system full I am doing now fcsk -m (400G) and I am still waiting to see the fragmentation results (should I add another option to df to have a faster output?) Do you have any other hints... (6 Replies)
Discussion started by: melanie_pfefer
6 Replies

5. Solaris

file system full

I am receving following Error message in /var/adm/messages "NOTICE: alloc: /: file system full" Disk space usage is as beklow: df -k $ Filesystem kbytes used avail capacity Mounted on /dev/md/dsk/d10 76678257 56962561 18948914 76% / /proc ... (8 Replies)
Discussion started by: Asteroid
8 Replies

6. Solaris

Full file system?

I read the sticky and thought of a script I use on a regular basis. Since unless you patch/upgrade the df command on solaris you have a very tought time teling how full the system truly is. Output looks like $ biggest.sh /tmp Filesystem kbytes used avail capacity Mounted... (0 Replies)
Discussion started by: meyerder
0 Replies

7. Solaris

File system full?

Hi, I just started working with UNIX on an old semi-fossilized Sun workstation which I use to process LOTS of images,however, I just started to get an error message that the file system is full and then my shell tool or/and text editor freeze up. Help? (8 Replies)
Discussion started by: Bend
8 Replies

8. UNIX for Advanced & Expert Users

Full File System

Hi All, There was a background process running on a Solaris 2.8 machine, and appeared to have filled all available disk-space. I done a killall, and upon re-booting found that the file system had filled up, and will not boot as normal as a result. For example, I'm getting /usr/adm/messages: No... (8 Replies)
Discussion started by: Breen
8 Replies

9. UNIX Desktop Questions & Answers

file system full

When I try to log in as root I get the following message realloccg /: file system full sendmail :NO Queue:low on space (have 0,SMTP-DAEMON needs 101 in /var/spool/mqueue) What should I do? (1 Reply)
Discussion started by: hopeless
1 Replies
Login or Register to Ask a Question