Sponsored Content
Operating Systems Solaris Unable to find utilized disk space on zone server. Post 302853055 by manoj.solaris on Friday 13th of September 2013 04:37:59 AM
Old 09-13-2013
Unable to find utilized disk space on zone server.

Hi,

I am unable to find remaining space on solaris 10. below is output.

I am facing this issue on zone server.
Code:
bash-3.00# df -h /
 Filesystem size used avail capacity Mounted on
 / 59G 59G 0K 100% /
 bash-3.00# pwd
 /
 bash-3.00# du -sh *
 1K File_Stores
 19K TT_DB
 9K app
 1K bin
 752K dep.h2.db
 64K dev
 53M etc
 3.1G export
 1K home
 25M lib
 1K mnt
 1K net
 151M opt
 377K platform
 3.0G proc
 793K sbin
 31K system
 14K test.h2.db
 208K tmp
 1021M u01
 2.7G usr
 1.4G var
 bash-3.00# format
 Searching for disks...done
 No disks found!


Last edited by Franklin52; 09-13-2013 at 08:32 AM.. Reason: Please use code tags
 

10 More Discussions You Might Find Interesting

1. SCO

unable to find a root hard disk

Hey,I'm new with Unixware. Lately,I worked with Unixware7.1.3.I ran into problems while installing it.The problem is : Error:unable to find a root hard disk... Well,I have a HBA floppy disk,but my pc has no floppy driver.Is there any way to solve the problem with USB driver?What should I... (1 Reply)
Discussion started by: DorrSmith
1 Replies

2. Solaris

solaris server resources utilized

Hi i have a requirement when i have to check the solaris 9 os resources utilised by the applications( Oracle, veritas cluster, veritas net backup ) what are the commands i should use or any utility to check the resources Regards (7 Replies)
Discussion started by: maooah
7 Replies

3. Linux

Unable to remove file using rm: Disk space is full

Hi all, My disk space is 100% full. df -k <dir> -> 100% One of my debug files consume huge amount of space and i want to remove the same to start off fresh debugs. However i'm unable to remove the file giving out the following error message: rm -f debug.out22621 rm: cannot remove... (8 Replies)
Discussion started by: Pankajakshan
8 Replies

4. Solaris

[Sol10/VMWare] Unable to see new disk space.

The master copy was set to 5 gigs. As the instance is cloned, additional space is provided. I was given a new instance along with 15 gigs of additional space. The problem is I can't see the additional space, either as additional space on the primary disk or as a second disk. # format Searching... (8 Replies)
Discussion started by: BOFH
8 Replies

5. Solaris

Unable to understand disk layout and where are the free space

Hi I am unable to understand the disk layout of one of my disk attached to v240. This is newly installed system from jumpstart. I am unable to see the free space on backup slice 2 and there are 0 to 8 slices listed when I run format and print the disk info, also there is no reference of... (9 Replies)
Discussion started by: kumarmani
9 Replies

6. UNIX for Dummies Questions & Answers

How to find the disk space allocated.

Hello, I need to find the total allocated disk space for the home directory. How can i find that in unix?(in GB). Thanks. (4 Replies)
Discussion started by: kailash19
4 Replies

7. SCO

unable to find a root hard disk on vmware

Hello guys i need some guidence on why i am getting the unable to find a root disk and how i can overcome this problem. Thanks :confused:Paddyl (1 Reply)
Discussion started by: paddyl
1 Replies

8. UNIX for Dummies Questions & Answers

Script to find Disk utilized processes.

I have written a script that triggers a mail if the server load average goes beyond a specific value. The mail contains following field Current Load average. Top 10 CPU utilized processes. ps -auxf | sort -nr -k 3 | head -10 Top 10 Memory Utilized processes. ps -auxf | sort -nr -k 4 | head... (1 Reply)
Discussion started by: pinga123
1 Replies

9. Red Hat

Help to Find out Available disk space

I need to find available disk space for /home. $ df /home Filesystem 1K-blocks Used Available Use% Mounted on /dev/mahhh/VolGroup11-LogVol00 32281452 45028 26034172 15% / $df /home |tail -1| awk '{print $4}' 15% The above result shows the... (5 Replies)
Discussion started by: Anu_1
5 Replies

10. Solaris

Check free disk space in server

Hi, I need about 500G space in one corporate solaris server. However, I am not sure which command to use to check this. There are few volume groups in the server, and I deleted unused, old volume groups to clear some space. However, now I am not sure how to check the free space itself. ... (2 Replies)
Discussion started by: anaigini45
2 Replies
LIBBASH(7)							  libbash Manual							LIBBASH(7)

NAME
libbash -- A bash shared libraries package. DESCRIPTION
libbash is a package that enables bash dynamic-like shared libraries. Actually its a tool for managing bash scripts whose functions you may want to load and use in scripts of your own. It contains a 'dynamic loader' for the shared libraries ( ldbash(1)), a configuration tool (ldbashconfig(8)), and some libraries. Using ldbash(1) you are able to load loadable bash libraries, such as getopts(1) and hashstash(1). A bash shared library that can be loaded using ldbash(1) must answer 4 requirments: 1. It must be installed in $LIBBASH_PREFIX/lib/bash (default is /usr/lib/bash). 2. It must contain a line that begins with '#EXPORT='. That line will contain (after the '=') a list of functions that the library exports. I.e. all the function that will be usable after loading that library will be listed in that line. 3. It must contain a line that begins with '#REQUIRE='. That line will contain (after the '=') a list of bash libraries that are required for our library. I.e. every bash library that is in use in our bash library must be listed there. 4. The library must be listed (For more information, see ldbashconfig(8)). Basic guidelines for writing library of your own: 1. Be aware, that your library will be actually sourced. So, basically, it should contain (i.e define) only functions. 2. Try to declare all variables intended for internal use as local. 3. Global variables and functions that are intended for internal use (i.e are not defined in '#EXPORT=') should begin with: __<library_name>_ For example, internal function myfoosort of hashstash library should be named as __hashstash_myfoosort This helps to avoid conflicts in global name space when using libraries that come from different vendors. 4. See html manual for full version of this guide. AUTHORS
Hai Zaar <haizaar@haizaar.com> Gil Ran <ril@ran4.net> SEE ALSO
ldbash(1), ldbashconfig(8), getopts(1), hashstash(1) colors(1) messages(1) urlcoding(1) locks(1) Linux Epoch Linux
All times are GMT -4. The time now is 02:06 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy