Root partition filling up


 
Thread Tools Search this Thread
Operating Systems Solaris Root partition filling up
# 1  
Old 07-12-2011
Root partition filling up

I have a T1000 Sparc server that has a relatively small root partition which is 24Gb and a larger partition dedicated to /export/home that is approximately 100 Gb. We have a lot of data going to /var/audit and to /var/core/corefiles. Is there any non-destructive way to redirect files from /var/core and /var/audit to a newly created partition on /export/home without causing any adverse affects upon the system. I had thought of creating a soft link to /var/core and audit but was unsure of the implications of that move.
# 2  
Old 07-12-2011
Something like that should relocate the global core directory:
Code:
coreadm -g /export/home/corefiles

You should however figure out why cores are generated and fix that in the first place.
This User Gave Thanks to jlliagre For This Post:
# 3  
Old 07-12-2011
We know what is generating the core files, but, since it's a production server, we can't fix it for a while. Thanks for the coreadm command, I'll take a look at it.

Do you have any ideas on linking /var/audit to /export/home/var/audit?
# 4  
Old 07-13-2011
Code:
# mv /var/audit /var/audit_old
# mkdir -p /export/home/var/audit
# ln -s /export/home/var/audit/ /var/audit
# ls -s /var/audit
lrwxrwxrwx   1 root     root          23 Jul 13 08:15 /var/audit -> /export/home/var/audit/

# 5  
Old 07-13-2011
Beta17, thanks for the info. I know how to make the changes, my question is will making the change to /var/audit have any adverse affects upon the system. I don't think that it will, but, just in case, I will try it out on my workstation first and see how it works out.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Ubuntu

Regarding OS partition and root user

Dear Concern, I am new in ubuntu. Is root user disable in ubuntu? Also, is os partition default in ubuntu? I don't find any feature to create customize mount point to install OS. Below is my current OS partition. amirislam@blnidapp03:~$ df -h Filesystem Size Used... (1 Reply)
Discussion started by: makauser
1 Replies

2. Solaris

Cannot tell what is filling up root (/) partition on Sol10

I can see that my root partition is down to single-digit GB free out of 134GB root partition on a larger server with many SAN, NFS, LOFS mounts etc mounted at the root (/) partition. How can I specifically tell which directories is causing the most utilization in my root (/) partition? (3 Replies)
Discussion started by: ckmehta
3 Replies

3. Solaris

Need to partition root

Hello guys, I am using Solaris 10 x86 OS. While installing OS i have allocated entire 10 GB space to the root. Now i am not able to create new partition it says me "out of range" or "<cylinder number> not expected". Can someone please help me to allocated a default recommended space i.e 8GB or... (2 Replies)
Discussion started by: bhargav90
2 Replies

4. Red Hat

increase root partition

i am using redhat 5.4 and my root size shows 98 %, how can i increase root size # df -h Filesystem Size Used Avail Use% Mounted on /dev/sda2 77G 16G 75G 98% / /dev/sda1 2.4G 82M 2.2G 4% /boot tmpfs 3.8G 0 3.8G 0%... (8 Replies)
Discussion started by: reply.ravi
8 Replies

5. Solaris

increasing root / partition

Dear all, I have a root partition which is 20 G in size. I have var and /tmp as seperate file systems. But this 20 G of root is not sufficeint. I want to increase the size of the / partition. Is there any way to increase with out down time. my df -k output is Filesystem ... (4 Replies)
Discussion started by: jegaraman
4 Replies

6. UNIX for Dummies Questions & Answers

Root filesystem filling up!

Hi all. New to the forum and new to Unix admin... / filesystem filled up and I can't find where the large files are. Any help will be apppreciated: # df -k Filesystem kbytes used avail capacity Mounted on /dev/dsk/c1t0d0s0 8063580 7941745 41200 100% / /proc ... (4 Replies)
Discussion started by: jamie_collins
4 Replies

7. AIX

how to find whats filling up Root Directory

Hi guys I am running AIX 5.3 and a newbie to it. And I am getting reports telling me that the Root Directory is reaching almost max capacity, can someone give m some advice to find out what files are causing it to grow? , or how I can identify the growing files? Thanks (6 Replies)
Discussion started by: ryanbsc@gmail.c
6 Replies

8. Solaris

Can't metattach root partition

I'm mirroring up a T2000. Able to metainit and metattach all partitions with the exception of root. Getting the following error: metattach: <hostname>; c1t1d0s0; is mounted on / I'm stumped. By the way, target 1 is the boot disk. (7 Replies)
Discussion started by: Probos
7 Replies

9. UNIX for Advanced & Expert Users

freebsd /usr partition filling up, but du shows low usage

I have a freebsd email server which is running out of space on /usr. du doesn't show any large directories, but df confirms that the partition is running out of space. Is there a way to find out if there is an idle process tying up disk space. Also, what happens when /usr is full, will... (0 Replies)
Discussion started by: jjamd64
0 Replies

10. Solaris

Reinstall root partition

I had Solaris 8 installed on a Ultra 10 machine but during a shutdown the root partition got corrupted. I have 3 other partitions on the drive (var, swap, home). Is there a way to reinstall the root partition without effecting the other partitions? Also, when I run format from single user mode I... (4 Replies)
Discussion started by: jbestor
4 Replies
Login or Register to Ask a Question