- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Creating /tcb on a separate filesystem
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
05-25-2010 08:51 AM
05-25-2010 08:51 AM
Creating /tcb on a separate filesystem
In order to solve the problem of being unable to remotely connect (SSH, FTP, etc...) to a HP/UX server whenever the / filesystem becomes full, I managed to create the /tcb direcotry on a separate filesystem.
This seems to have solved the issue, but do you think there are any drawbacks?
Thanks in advance!
Cheers,
Daniele
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2010 09:07 AM
05-25-2010 09:07 AM
Re: Creating /tcb on a separate filesystem
And what happens if you boot into single-user mode where only '/' and subordinate directories like '/sbin' and '/etc' are mounted?
You need to reconsider your action.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2010 09:07 AM
05-25-2010 09:07 AM
Re: Creating /tcb on a separate filesystem
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2010 09:24 AM
05-25-2010 09:24 AM
Re: Creating /tcb on a separate filesystem
Start by analyzing where the space has gone -- do NOT look for big files. Look for big directories like this:
du -kx / | sort -rn | head -30
Post the results and we can point out what does not belong in /. To find just files (not directories) in /, use this:
cd /
find * -prune -type f -exec ls -ld {} ;
The most common cause of junk in / is spelling errors and inappropriate directories for applications.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2010 04:23 AM
05-26-2010 04:23 AM
Re: Creating /tcb on a separate filesystem
Thanks a lot for all your replies!
@James: single-user boot is not affected by this change; you don't get prompted for the root password and /etc/passwd is still available; so no problem from this point of view.
@Pete: /tcb resides on the same VG and physical disk(s) of the / filesystem; I think that a failure of /tcb wouldn't be more likely than a failure of /...
@Bill: Boot works perfectly, both in single user and multiuser. Of course, I know that the / filesystem should NOT get full, but you know, when you manage several hundreds of systems, sometimes this happens... and the biggest hassle is being unable to connect to the system to free space immediately...
Do you see any other drawbacks?
Thanks again!
Cheers,
Daniele