- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how to extend / directory?
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
10-20-2008 07:48 AM
10-20-2008 07:48 AM
how to extend / directory?
Thanks
Rick
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2008 08:00 AM
10-20-2008 08:00 AM
Re: how to extend / directory?
# du -kx / | sort -rn | head -20
Only two filesystems should be at the top: /etc and /sbin. If /dev is more than 50-100 KB then the root user made a spelling error with a backup command. Find the error with:
# find /dev -type f
There must be no regular files in /dev. If /dev is OK, then look at / which should have only directories present. Unfortunately, root's $HOME is there by default so a lot of junk appears in /. To check if there are any files in /, use:
find /* -prune -type f
Regular files, especially big files, do not belong in the / directory.
Now look at any directories that do not begin with /sbin or /etc.
Regards!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2008 08:02 AM
10-20-2008 08:02 AM
Re: how to extend / directory?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2008 08:40 AM
10-20-2008 08:40 AM
Re: how to extend / directory?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2008 09:29 AM
10-20-2008 09:29 AM
Re: how to extend / directory?
Permanent solution. Stop letting applications write into the root filesystem.
One of the most common is a device file typo.
find /dev -type f ( there should be NO file type of files in /dev )
If you post your OS version and bdf we can compare to what a typical OS install should have for the STATIC root environment.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2008 10:48 AM
10-20-2008 10:48 AM
Re: how to extend / directory?
/etc/cmlcuster/cluster1/cluster1.cntl.log
this log has been accumulating. After I emptied the log, the / usage reduced to 75%.
Thanks