- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- LVM for LINUX
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
09-27-2001 06:13 PM
09-27-2001 06:13 PM
LVM for LINUX
correct me if I'm wrong that LVM (logical volume manager) supports LINUX.
If so, where can I get a copied of it and is it free ?
Rgds,
YC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 08:42 PM
09-27-2001 08:42 PM
Re: LVM for LINUX
you must select some linux distribution with Kernel 2.4.
LVM should be included the distribution, but some distribution install program still don't support LVM at the initial install.
LVM in Linux distribution is free.
Enjoy
masanari iida
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 09:13 PM
09-27-2001 09:13 PM
Re: LVM for LINUX
Which particular distribution of LINUX you have come across that supports LVM?
Rgds,
YC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 09:34 PM
09-27-2001 09:34 PM
Re: LVM for LINUX
Versions :
SuSe 7.2 / 7.3
Mandrake 8
last version of Redhat
Rgds
Alexander M. Ermes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2001 12:41 AM
09-28-2001 12:41 AM
Re: LVM for LINUX
http://www.sistina.com/products_lvm.htm
This requires that you compile the LVM modules and utilities, but if you follow the instructions its fairly straight forward.
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2001 03:47 PM
10-04-2001 03:47 PM
Re: LVM for LINUX
AFAIK, even Red Hat7.1 does include the LVM modules
in its kernel - they just do not deliver the commands...
SuSE does, of course :-)
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2001 12:43 PM
10-11-2001 12:43 PM
Re: LVM for LINUX
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2001 05:38 AM
10-17-2001 05:38 AM
Re: LVM for LINUX
Install RH as normal, except with this partition layout (trust me):
sda1: 20MB Linux Native (/boot)
sda2: 512MB Linux Native (/)
sda3: remaining space - sda4 Linux Swap (swap)
sda4: 2 1/2 times RAM Linux Native (/usr)
Now this looks weird, but we're going to play a shell game with the partitions.
Once everything is installed, download the latest kernel (2.4.12 at time of writing) and the latest LVM from www.sistina.com. Configure LVM _first_ because it will generate a patch for the kernel. Patch the kernel, set it to include LVM support in the kernel (not a module).
Compile & install the LVM utilities and kernel (don't forget to edit /etc/lilo.conf) and reboot.
swapoff /dev/sda3
fdisk /dev/sda and change the partition ID of sda3 to '8e'
vgscan
pvcreate /dev/sda3
vgcreate vgroot /dev/sda3
lvcreate -L 1G -n lv_usr vgroot
mke2fs /dev/vgroot/lv_usr
init 1 (go into single-user)
umount /dev/sda4
mkdir /old
mount /dev/sda4 /old
mount /dev/vgroot/lv_usr /usr
cd /old
find . |cpio -pvd --preserve-modification-time /usr
cd ..
umount /dev/sda4
fdisk /dev/sda, change partition type of sda4 to '82' - swap
mkswap /dev/sda4
swapon /dev/sda4
edit /etc/fstab and change /usr and swap devices to our new ones (/dev/vgroot/lv_usr and /dev/sda4, respectively)
Rinse, Repeat for the rest of the volumes you want. I usually use reiserfs instead of ext2, but that's more than I want to write today. Also, I use a shell script for the creation of the volumes so I can build new systems/rebuild them easily and consistently.
Now, you ask, how do I initialize LVM on system boot?
A: the RH init scripts are all set up to initialize and activate LVM out of the box.