HPE GreenLake Administration
- Community Home
 - >
 - Servers and Operating Systems
 - >
 - Operating Systems
 - >
 - Operating System - Linux
 - >
 - How to create lv of 500GB on Linux V 4
 
Operating System - Linux
        1840213
        Members
    
    
        5340
        Online
    
    
        110162
        Solutions
    
Forums
        Categories
Company
Local Language
                
                  
                  back
                
        
                
        
                
        
                
        
        
        
                
        
                
        
        
        
                
        
              
              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
                
                  
                  back
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
            
                
            
                
            
                
            
                
            
            
                
            
                
            
            
                
            
                
              
            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
Blogs
        Information
        Community
Resources
Community Language
        Language
        Forums
Blogs
	
		
			
            
                
            Go to solution
        
            
		
		
			
            	
	
		
        
		
	
	
		Topic Options
			
				
					
	
			
		
	- 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
 
09-26-2005 01:17 AM
09-26-2005 01:17 AM
			
				
					
					
						Hello
I am a HP-ux Person.
How do I create vgs, lvs, add disks etc in Linux V 4.x
Thanks
					
				
			
			
				
			
			
				
	
			
				
		
			
			
			
			
			
			
		
		
		
	
	
	
I am a HP-ux Person.
How do I create vgs, lvs, add disks etc in Linux V 4.x
Thanks
Solved! Go to Solution.
		3 REPLIES 3
	
	            
            
		
		
			
            
                - Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
09-26-2005 01:51 AM
09-26-2005 01:51 AM
Solution
			
				
					
					
						- First, using fdisk, you create a partition (n) on a device (like /dev/sda), and set it as LVM (t - 8e).
- Then, use pvcreate /dev/sda1 (create the physical volume in the partition)
- Then, use vgcreate to create the Volume Group:
vgcreate oracle_vg /dev/sda1
Next, use lvcreate to create the Logical Volume in the VG:
lvcreate -L 500G -n lvoracle oracle_vg
-L size
-n name
Then, create the filesystem or use it as raw device as usual, you will have a /dev/oracle_vg directory with the lv names in it.
		
		
	
	
	
- Then, use pvcreate /dev/sda1 (create the physical volume in the partition)
- Then, use vgcreate to create the Volume Group:
vgcreate oracle_vg /dev/sda1
Next, use lvcreate to create the Logical Volume in the VG:
lvcreate -L 500G -n lvoracle oracle_vg
-L size
-n name
Then, create the filesystem or use it as raw device as usual, you will have a /dev/oracle_vg directory with the lv names in it.
	Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
			
			
				
			
			
			
			
			
			
		- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
09-26-2005 03:02 AM
09-26-2005 03:02 AM
			
				
					
						
							Re: How to create lv of 500GB on Linux V 4
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						I think that in RHEL4, there is a GUI tool, system-config-lvm, where you can do most of the tasks.
					
				
			
			
				
		
		
	
	
	
	Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
			
			
				
			
			
			
			
			
			
		- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
09-26-2005 04:42 AM
09-26-2005 04:42 AM
			
				
					
						
							Re: How to create lv of 500GB on Linux V 4
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Hi,
-If you have ide disk :fdsik /dev/hdax, if SCSI fdisk /dev/sdax press t and change type to LVMLinux
-pvcreate /dev/hdax or sdax
-vgcreate -s (4M is the default) vg0 /dev/(hdax or sdax)
-lvcreate -L (size) -n data vg0
-mke2fs -j /dev/vg0/data (create an ext3 file system)
-mount /dev/vg0/data /data, and in /etc/fstab put a new line.
If you want to resize the filesystem use e2fsadm.
Regards,
Ziad
					
				
			
			
				
			
			
				
			
			
			
			
			
			
		
		
		
	
	
	
-If you have ide disk :fdsik /dev/hdax, if SCSI fdisk /dev/sdax press t and change type to LVMLinux
-pvcreate /dev/hdax or sdax
-vgcreate -s (4M is the default) vg0 /dev/(hdax or sdax)
-lvcreate -L (size) -n data vg0
-mke2fs -j /dev/vg0/data (create an ext3 file system)
-mount /dev/vg0/data /data, and in /etc/fstab put a new line.
If you want to resize the filesystem use e2fsadm.
Regards,
Ziad
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
		
	
	
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP