- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- increasing the of /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
11-01-2004 11:54 PM
11-01-2004 11:54 PM
increasing the of /tmp
I must increase the size of the /tmp file system on HP-UX 11.11. HOW can I perform this job. Thanks for your help !!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2004 12:02 AM
11-02-2004 12:02 AM
Re: increasing the of /tmp
Assuming you can do this, I would use SAM as it is easier than the command line. SAM -> discs/filesystems -> logical volumes -> actions -> extend.
Select the lvol containing /tmp (this should be displayed) and you will be guided through the next steps.
Mark Syder (like the drink but spelt different)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2004 12:06 AM
11-02-2004 12:06 AM
Re: increasing the of /tmp
you cant extend the /tmp is when the system is up and running , unless you have online-jfs .
if you have online-jfs you just need to do this :
lvextend -L newsize /dev/vgXX/lvolX
fsadm -F vxfs -b newsize
if not , you need to boot to single username , do lvextnd -L newsize
( remember that when issue lvextend the new size is with m.b )
so the commands are :
lvextend -L larger_size /dev/vg00/lvol1
extendfs -F hfs /dev/vg00/rlvol1
mount /dev/vg00/lvol1 mount_directory
eran maor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2004 12:15 AM
11-02-2004 12:15 AM
Re: increasing the of /tmp
check how much free space in vg00
#vgdisplay vg00
total free space=free extents*1 extents size.
check any users or processes are accessing /tmp
#fuser -cu /tmp
if any processes or applications are accesing /tmp --shutdown that process or applications.
again if any users are accessing the /tmp
then (assuming /dev/vg00/lvol6 is your /tmp as per standard confogurations.)
#fuser -ku /dev/vg00/lvol6
then
#umount /tmp
#lvextend -L size-in-MB /dev/vg00/lvol6
#extendfs -F vxfs /dev/vg00/rlvol6
#mount -a
warning:- remember extendfs is usring rlvol6 and not lvol6.
size-in-MB is the new size of the lv which should be larger than current size.it should be specified in MegaBytes.
regds,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2004 12:27 AM
11-02-2004 12:27 AM
Re: increasing the of /tmp
if you are using online-jfs in your system the do the following
#fsadm -F vxfs -b size-in-MB /tmp
note: fsadm: /dev/vg00/rlvol6 is currently 32768 sectors - size will be increased
fsadm: attempt to resize /dev/vg00/rlvol6 failed with errno 28
You may get this type of message if you are trying to extend a filesystem that is 100% full. If that is the case, you must get the usage % below 100, to 98 or 99, and then try your fsadm command again.
regds,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2004 01:39 AM
11-02-2004 01:39 AM
Re: increasing the of /tmp
Mark