- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: expand /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-18-2005 11:33 PM
10-18-2005 11:33 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2005 11:34 PM
10-18-2005 11:34 PM
			
				
					
						
							Re: expand /tmp
						
					
					
				
			
		
	
			
	
	
	
	
	
# fuser -ku /tmp
then, you can extend it.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2005 11:49 PM
10-18-2005 11:49 PM
			
				
					
						
							Re: expand /tmp
						
					
					
				
			
		
	
			
	
	
	
	
	
use this:
init 1 (Attention !)
login ...
umount /tmp
lvextend -L 600 /dev/vg00/lvol4
extendfs /dev/vg00/rlvol4
mount /tmp
init 4
By
Ralf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2005 11:52 PM
10-18-2005 11:52 PM
			
				
					
						
							Re: expand /tmp
						
					
					
				
			
		
	
			
	
	
	
	
	
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2005 11:53 PM
10-18-2005 11:53 PM
			
				
					
						
							Re: expand /tmp
						
					
					
				
			
		
	
			
	
	
	
	
	
Yes you can, but try to do it in single user mode.
Regards,
Borislav
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2005 11:53 PM
10-18-2005 11:53 PM
			
				
					
						
							Re: expand /tmp
						
					
					
				
			
		
	
			
	
	
	
	
	
The following link provides the details about "How to Extend Logical Volumes".
http://www.compute-aid.com/hpux/extend_vg00.htm
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2005 12:21 AM
10-19-2005 12:21 AM
			
				
					
						
							Re: expand /tmp
						
					
					
				
			
		
	
			
	
	
	
	
	
The easits solution, is to boot in single mode
# lvextend ....
# extendfs .....
# mount -a
# shutdown -r -y now
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2005 12:25 AM
10-19-2005 12:25 AM
			
				
					
						
							Re: expand /tmp
						
					
					
				
			
		
	
			
	
	
	
	
	
how would I do that?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2005 12:38 AM
10-19-2005 12:38 AM
			
				
					
						
							Re: expand /tmp
						
					
					
				
			
		
	
			
	
	
	
	
	
lvextend -L 500 /dev/vgXX/logical_volume_name
fsadm -b newsize_in_fs_blocks /mount_point
Like:
fsadm -b 51200 /mount_point
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2005 12:45 AM
10-19-2005 12:45 AM
SolutionRefer "Increase the size of a file system existing on a logical volume." in lvextend man page.
# lvextend -L 400 /dev/vg06/lvol3
Unmount the file system.
# umount /dev/vg06/lvol3
Extend the file system to occupy the entire (larger) logical vol
# extendfs /dev/vg06/rlvol3
Remount the file system.
# mount /dev/vg06/lvol3 /mnt
In this umount and mount operation is not needed for online JFS.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2005 12:55 AM
10-19-2005 12:55 AM
			
				
					
						
							Re: expand /tmp
						
					
					
				
			
		
	
			
	
	
	
	
	
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2005 12:56 AM
10-19-2005 12:56 AM
			
				
					
						
							Re: expand /tmp
						
					
					
				
			
		
	
			
	
	
	
	
	
if u have onlinejfs do:
if u have a mirror
FreePe from vgdisplay:2
from lvdisplay
currentLE+size from vgdisplay
No mirror
freePe+currentLe=LE size
lvextend -l LE Size /dev/vg.../lvol?
fsadm -F vxfs -b $((100*1024*8)) /tmp
100=lesize
8= pe size
u dont need mount or unmount
regards gga
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2005 01:03 AM
10-19-2005 01:03 AM
			
				
					
						
							Re: expand /tmp
						
					
					
				
			
		
	
			
	
	
	
	
	
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=781480
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2005 01:22 AM
10-19-2005 01:22 AM
			
				
					
						
							Re: expand /tmp
						
					
					
				
			
		
	
			
	
	
	
	
	
umount /tmp
lvextend -L Newsize /dev/vg00/lvol4
extendfs /dev/vg00/rlvol4
mount /tmp
with online JFS
lvextend -L Newsize /dev/vg00/lvol4
umount /dev/vg00/lvol4
extendfs /dev/vg00/rlvol4
mount /dev/vg00/lvol4 /tmp
Awadhesh
