- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: EMC / LVM Issue
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
08-23-2006 03:05 AM
08-23-2006 03:05 AM
EMC / LVM Issue
I have a linux server running as4.0 attached to a cx300. We have 2 luns created as such when I view it..
[root@s3prtp1 lvm]# fdisk -l |grep emc
Disk /dev/emcpowerb: 287.0 GB, 287005343744 bytes
/dev/emcpowerb1 1 34893 280277991 8e Linux LVM
Disk /dev/emcpowera: 273.6 GB, 273663262720 bytes
/dev/emcpowera1 1 33270 267241243+ 8e Linux LVM
We need to install Oracle.
Now here is what the user is requesting..
They want to divide the 2 luns into 4 devies and mount each device seperately.
It needs to look something lik this..
/dev/disk7/u01 /u01
/dev/disk7/u02 /u02
/dev/disk7/u03 /u03
/dev/disk7/u04 /u04
The other device should be the same except for..
/dev/disk8/u01 /u01
/dev/disk8/u02 /u02
/dev/disk8/u03 /u03
/dev/disk8/u04 /u04
CAn anyone underdstand what I'm trying to accomplish here and help me through this..Will give you all points for your input and assistance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2006 03:18 AM
08-23-2006 03:18 AM
Re: EMC / LVM Issue
This looks good.
Disk /dev/emcpowerb: 287.0 GB, 287005343744 bytes
/dev/emcpowerb1 1 34893 280277991 8e Linux LVM
Disk /dev/emcpowera: 273.6 GB, 273663262720 bytes
/dev/emcpowera1 1 33270 267241243+ 8e Linux LVM
After saving this configuration, perhaps use the Linux LVM GUI tool to prepare the disk space. It will run mkfs.ext3 for you.
This seems like a Linux call to me.
:-)
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2006 03:33 AM
08-23-2006 03:33 AM
Re: EMC / LVM Issue
Any pointers will help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2006 12:21 AM
08-24-2006 12:21 AM
Re: EMC / LVM Issue
# fdisk /dev/emcpowera
You could create 4 primary partitions, which is the max for primaries on a disk. Or you could use an extended partition and then subdivide that into logical partitions, the max being 12. Since you only need exactly 4, primaries would be OK.
I'm not familiar with EMC device naming, but it appears that your partition devices would be:
... /dev/emcpowera1
... /dev/emcpowera2
... /dev/emcpowera3
... /dev/emcpowera4
... /dev/emcpowerb1
... /dev/emcpowerb2
... /dev/emcpowerb3
... /dev/emcpowerb4
Then, you do the 'pvcreate' on each partition device name, then the 'vgcreate', yadayada.
# pvcreate /dev/emcpowera1
# pvcreate /dev/emcpowera2
......
hth
bv
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2006 12:36 AM
08-24-2006 12:36 AM
Re: EMC / LVM Issue
pvcreate /dev/{disk}
vgcreate vgname /dev/{disk}
lvcreate -L size -n lvname vgname
repeat the lvcreate command for each logical volume. then repeat for the other disk.
here is an lvm howto link:
http://www.tldp.org/HOWTO/LVM-HOWTO/index.html
it contains alot of information
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2006 12:39 AM
08-24-2006 12:39 AM