- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how to extend /tmp partition in hp-ux
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
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
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
01-16-2012 11:31 PM
01-16-2012 11:31 PM
how to extend /tmp partition in hp-ux
Dear Team
Please help me to extend /tmp partion in hpux.
Regards
Niruk**bleep**ha
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2012 01:15 AM
01-17-2012 01:15 AM
Re: how to extend /tmp partition in hp-ux
use extendfs command
Ajin.S
Proverbs 3:5,6 Trust in the Lord with all your heart and lean not on your own understanding; in all your ways acknowledge him, and he will make all your paths straight.
- Tags:
- extendfs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2012 01:27 AM
01-17-2012 01:27 AM
Re: how to extend /tmp partition in hp-ux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2012 07:28 AM
01-17-2012 07:28 AM
Re: how to extend /tmp partition in hp-ux
If you have online JFS installed there is no need to unmount /tmp.
lvextend -L 1024 /dev/vg00/lvol4
fsadm -b 1024m /tmp
- Tags:
- fsadm
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2012 12:55 PM
01-19-2012 12:55 PM
Re: how to extend /tmp partition in hp-ux
Hi ,
Steps :
1] check the if you have JFS online installed on your HP-UX box( Usually post HP-UX 11.23 ,it is by default present)
#swlist |grep -i online
2] If JFS online is installed ,Check if you have enough PE's avaialable under vg00 to extend file system
#vgdisplay -v vg00 (Check for Free PE)
3]If you have enough PE's available , you can extend the file system to that size (Free space = Free PE x PE size)
#lvextend -L <Free space> <logical Volume name>
#fsadm -b Freespace M /tmp
4]Cross check if the space is increased,
# bdf /tmp
Regards
Yogesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2012 05:31 PM
01-21-2012 05:31 PM
Re: how to extend /tmp partition in hp-ux
Hi all
This has vxfs. So I tried to unmount /tmp and increase the tmp. But I am getting following error when trying to unmount.
# umount /tmp
umount: cannot unmount /tmp : Device busy
umount: return error 1
Then tried followings and kill processes.
# fuser -ku /dev/vg00/lvol4
/dev/vg00/lvol4: 1287o(root) 1296o(root) 1305o(root) 1317o(root) 2083mo(root) 2075mo(root) 2074mo(root)
# kill -9 1287
Sh: kill :A specified process does not exist
Please let me know how to unmount /tmp with this situation.
Regards
Niru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2012 06:05 PM
01-21-2012 06:05 PM
Re: how to extend /tmp partition in HP-UX
>Then tried following and kill processes.
># fuser -ku /dev/vg00/lvol4
/dev/vg00/lvol4: 1287o(root) 1296o(root) 1305o(root) 1317o(root) 2083mo(root) 2075mo(root) 2074mo(root)
># kill -9 1287
The -k would have killed those processes. What does "fuser -u /dev/vg00/lvol4" show now?
It is very dangerous to "kill -9" various root processes and you should look up what's running on each of those PIDs.
You may make the system unusable and you have to reboot. And if you do that, might as well bring it up in single user mode.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2012 06:58 PM
01-21-2012 06:58 PM
Re: how to extend /tmp partition in HP-UX
Hi
I am going to ectend /tmp in single user mode due to some complications when it is in online. Please let me know the steps for extending /tmp in single user mode.
Regrds
Niruk**bleep**ha