- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- extending /tmp
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-24-2000 11:29 AM
10-24-2000 11:29 AM
extending /tmp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2000 11:35 AM
10-24-2000 11:35 AM
Re: extending /tmp
With online JFS, you do not even need to umount the directory. Do:
lvextend -L
fsadm -F vxfs -b
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2000 01:11 PM
10-24-2000 01:11 PM
Re: extending /tmp
Do like this:
lvextend -L
fsadm -F vxfs -b
After this type ( in order to check the extension): bdf /tmp
regards,
federico
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2000 10:15 PM
10-24-2000 10:15 PM
Re: extending /tmp
fsadm -F vxfs -b $(expr
For example if /tmp is to be increased to 500 MB:
fsadm -F vxfs -b $(expr 500 * 1024) /tmp
Hope this is of help to you.
Regards
Johan Carlsson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2000 10:19 PM
10-24-2000 10:19 PM
Re: extending /tmp
You should use backslash before the asterisk (*)
fsadm -F vxfs -b $(expr 500
Sorry about this.
/Johan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2000 11:21 AM
11-10-2000 11:21 AM
Re: extending /tmp
You can follow the steps mentioned above.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2000 01:06 PM
11-16-2000 01:06 PM
Re: extending /tmp
fsadm -F vxfs -b $(( 1024 * 128)) /tmp
for a 128 MB /tmp filesystem. This is a little more readable than mixing the POSIX $(cmd) syntax with the Bourne expr command, IMO.