- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- File Systems on HP-UX 10.20
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2001 09:33 PM
09-20-2001 09:33 PM
I am currently working on a custom procedure on monitoring of our file systems on our K250 running HP-UX 10.20.
I need to know what are the file systems used the Operating System that grow in size during a normal operation (log files?)
Please help.
Kind Regards
Yogeeraj
o(*_*)o
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2001 09:54 PM
09-20-2001 09:54 PM
SolutionOk, the normal essential file system on HPUX are "/stand, /opt, /var , /usr , /home , /tmp , / " .Out of these /stand,/opt/usr are most likely be the same FS use space provide there is no change in the Software/driver/additional patches etc.; eventhough the changes will be nominal.
"/opt" contains all the installed package / driver files etc so won't be a bid deal.
"/var" contains all the spooling info etc. and its quiet dynamic in nature so the files in it always grows - so need to be very careful.
"/home" will increase only if you guys tend to keep something inside own home directories.
"/stand" is static , as it contains only the kernel related stuff - so once booted the machine there won't be any change in the space used.
Hope this helps,
Cheers !!!
Mathew
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2001 10:10 PM
09-20-2001 10:10 PM
Re: File Systems on HP-UX 10.20
Basically all filesystems that are contained
in the /dev/vg00 volume group are part of
the operating systems. I would suggest that
if you are writing a script to do the monitoring
that you monitor all of them. You don't know
when one of them my fill up accidently.
/var and /tmp are generally the filesystems
that get logfiles written to them, but as I've
suggested above any of the filesystems even
the stagnant ones can fill up.
HTH
-Michael
below is something simple that can be improved upon very easily.
bdf -l | grep -v cdrom | grep 100% > /tmp/chkfsu.txt
if [ $? = 0 ]; then
elm -s "100% full file system in `hostname`" sysadmin,dbadmin < /tmp/chkfsu.txt
else echo
fi
bdf -l | grep -v cdrom | grep 99% > /tmp/chkfsu.txt
if [ $? = 0 ]; then
elm -s "99% full file system in `hostname`" sysadmin,dbadmin < /tmp/chkfsu.txt
else echo
fi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2001 10:11 PM
09-20-2001 10:11 PM
Re: File Systems on HP-UX 10.20
for the quick response.
received these precious info at the right time. I will be having a meeting in a few seconds with my team.
kind regards
Yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2001 10:24 PM
09-20-2001 10:24 PM
Re: File Systems on HP-UX 10.20
Also see the link below:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0x8a99ee3e323bd5118fef0090279cd0f9,00.html
http://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0xb65e68c57f64d4118fee0090279cd0f9,00.html
Regards
Animesh