LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 12-17-2008, 09:02 AM   #1
catkin
LQ 5k Club
 
Registered: Dec 2008
Location: Tamil Nadu, India
Distribution: Debian
Posts: 8,578
Blog Entries: 31

Rep: Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208
LVM - what if disk partition change causes the PV device file to change?


Hello

Suppose the first logical partition (so /dev/sda5) is the only LVM PV and that there is some space in the extended partition before the first logical partition.

What happens if a new logical partition is created in the space? Presumably the new logical partition gets /dev/sda5 and the logical partition containing the LVM PV becomes /dev/sda6. If that happens would it break LVM?

The question arises because I'm planning partitioning for a 320 GB disk and would like to maximise flexibility. LVM will work fine at the top of the disk; I can't find the Windows XP disk layout restrictions but recall some problems with big disk addresses during boot -- or was that only with NT4 and W2K?

Is there somewhere I can learn how LVM initialises at boot so I could answer my own question?

Most puzzling is how the booting Linux kernel knows to start LVM and how LVM knows where to find the metadata. According to RHEL documentation the "lvm.conf configuration file is loaded from the directory specified by the environment variable LVM_SYSTEM_DIR, which is set to /etc/lvm". How could that work when root is an LVM volume?

Best

Charles
 
Old 12-17-2008, 10:16 AM   #2
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019
I'm not sure about Redhat, as i'm not familiar with its init scripts, but LVM itself won't care what block device it finds the PVs on as it scans all of them looking for PVs when it initialises (dependent on what you tell it in the filters in lvm.conf).

I've made some alterations to my slackware init scripts to allow it to cope with more than 1 encrypted physical volume (it doesn't out of the box) and when the device names changed because of this, it didn't bat an eye.

Unless Redhat do something 'clever' during their init that I'm not aware of, adding a new logical partition and your existing one changing from hda5 to hda6 shouldn't be a problem.

As for the reading. I picked up what I know from dipping into the lvm manual pages, and prior knowledge of IBMs AIX LVM which is almost identical.

Last edited by GazL; 12-17-2008 at 10:17 AM.
 
Old 12-17-2008, 10:27 AM   #3
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019
Just wanted to add...

if / is on a lvm lv then your ramdisk (initrd/initramfs) will need to activate lvm vgscan --mknodes and vgchange -ay commands before trying to mount the real root filesystem to make the lvm devices available.
 
Old 12-18-2008, 01:00 AM   #4
geekyfacts
LQ Newbie
 
Registered: Dec 2008
Posts: 3

Rep: Reputation: 0
pvscan , vgscan and lvscan should be able to bring back your volumes.
 
Old 12-18-2008, 04:05 AM   #5
catkin
LQ 5k Club
 
Registered: Dec 2008
Location: Tamil Nadu, India
Distribution: Debian
Posts: 8,578

Original Poster
Blog Entries: 31

Rep: Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208
Thanks for the education

Thanks

So the booting kernel, having scanned the hardware and created device files in the RAM file system then scans the block devices looking for LVM metadata. That's a nicely robust system and presumably oe of the reasons why /dev ends up being the mount point for the udev file system:

df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/mapper/CW8-root 6241856 2367420 3748608 39% /
varrun 1684456 228 1684228 1% /var/run
varlock 1684456 0 1684456 0% /var/lock
udev 1684456 120 1684336 1% /dev


So that's why the vgscan man page says "In LVM2, vgscans take place automatically; but you might still need to run one explicitly after changing hardware" and "--mknodes Also checks the LVM special files in /dev that are needed for active logical volumes and creates any missing ones and removes unused ones."

Thanks for the education. Now I'll go right ahead and try and break the system (joking!). It's ubuntu, BTW. The RHEL LVM documentation turned up in a netsearch ignoring Linux flavour.

Best

Charles

Last edited by catkin; 12-18-2008 at 04:18 AM. Reason: Improve!
 
Old 12-18-2008, 06:24 AM   #6
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019
Quote:
Originally Posted by catkin View Post
So the booting kernel, having scanned the hardware and created device files in the RAM file system then scans the block devices looking for LVM metadata.
Pretty much, yes.

The bootloader/kernel will load the ramdisk and use that as the temporary root filesystem. It then executes a shell script in the ramdisk, named 'init'. The 'init' script will then do the minimum needed to mount the real root filesystem. This will include loading any needed kernel modules, creating the block devices for the disks/partitions and a 'vgscan --mknodes' to setup the lvm devices.

Once the real root filesystem has been mounted over the ramdisk, the ramdisk's /dev directory contents will no longer be available, so the system init script (rc.S in Slackware) called by the init process will then have to go through the whole process of populating /dev again. This is where udev gets involved, and there'll be a second run of vgscan to setup the devices for the lvm objects again.

It's worth pointing out that, if you've only got a partial LVM setup and your root filesystem is not on an lvm logical volume, the lvm processing in the ramdisk isn't needed at all and creating the lvm devices will be left until the real system init scripts run.

On my systems I prefer to only have /boot on a real partition and everything else in LVM lvs, including the root fs. Some people will advocate leaving the root fs outside of LVM to make recovery easier should you encounter problems in your LVM. Doing this will also negate the need for a ramdisk (assuming you don't need one for reasons other than LVM).

Anyways, getting away from the point now, and I've written far more than you probably care to read. Good luck with your Ubuntu tinkering!
 
Old 12-18-2008, 11:10 AM   #7
catkin
LQ 5k Club
 
Registered: Dec 2008
Location: Tamil Nadu, India
Distribution: Debian
Posts: 8,578

Original Poster
Blog Entries: 31

Rep: Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208
Thanks some more

You certainly haven't written more than I care to read; it is a rare opportunity to learn how LVM actually works; this is invaluable information when diagnosing obscure problems, when recovering from disasters without doing a full system recovery and when designing layouts and procedures (knowing the limits of possibilities.

The LVM documentation is good for HOWTOs and the background to them but short on explanations of the initialisation process.

If you are inclined to answer some further questions to test my understanding ...

Where does the initial init script come from before the real / is mounted?

Presumably changing from RAM / to the LVM root volume requires a chroot (I'd often wondered where there came in useful apart from for security such as used by FTP server)

Is it not possible (it would be more efficient) to copy the RAM /dev rather than re-scanning? That's a polite way of asking if you are sure this is not what actually happens!

FYI, on Debian systems (including unbuntu) the kernel runs init (/sbin/init - an ELF executable) but this is not possible until the LVM / is mounted so perhaps it has its own copy or waits until after LVM / is mounted) which runs /etc/init.d/rc (a shellscript) that runs the scripts pointed to by symlinks in the appropriate /etc/rc<n>.d directory.

There are no /etc/rc*.d/*lvm* symlinks so presumably all the LVM setup has already been done and the Slackware procedure you describe (the system init script (rc.S in Slackware) called by the init process will then have to go through the whole process of populating /dev again. This is where udev gets involved, and there'll be a second run of vgscan to setup the devices for the lvm objects again.) is not used. ???

Best

Charles
 
Old 12-18-2008, 12:35 PM   #8
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019
Quote:
Originally Posted by catkin View Post
If you are inclined to answer some further questions to test my understanding ...
I'll do my best. Bare in mind I'm just a user like you. This is based on my understanding of how it works, which may differ from actuality and shouldn't be taken as absolute gospel

Quote:
Originally Posted by catkin View Post
Where does the initial init script come from before the real / is mounted?
The ramdisk is populated from an archive file, and the bootloader config identifes the file. With lilo, which is the bootloader I use the entry looks like
Code:
image = /boot/vmlinuz-generic-smp-2.6.27.9-smp
  initrd = /boot/initrd-2.6.27.9.gz
  root = /dev/sysvg/lvroot
  label = Slack122
Quite how the bootloader and kernel interact internally to load the ramdisk I'm not sure, but that's how you tell it what file to use. Grub has something simliar, but slightly different syntax

Quote:
Originally Posted by catkin View Post
Presumably changing from RAM / to the LVM root volume requires a chroot (I'd often wondered where there came in useful apart from for security such as used by FTP server)
In the slackware scripts it calls a binary called switch_root which I'm guessing is a specialised equivalent of chrooting which also executes /sbin/init

Code:
exec switch_root /mnt /sbin/init $RUNLEVEL


Quote:
Originally Posted by catkin View Post
Is it not possible (it would be more efficient) to copy the RAM /dev rather than re-scanning? That's a polite way of asking if you are sure this is not what actually happens!
It's an interesting point, but I'm guessing there's not much overhead in rescanning /dev/sysfs for the devices so they don't bother copying them. All I can say for certain is that I could see no evidence for any copying in the scripts I looked at.


Quote:
Originally Posted by catkin View Post
There are no /etc/rc*.d/*lvm* symlinks so presumably all the LVM setup has already been done and the Slackware procedure you describe (the system init script (rc.S in Slackware) called by the init process will then have to go through the whole process of populating /dev again. This is where udev gets involved, and there'll be a second run of vgscan to setup the devices for the lvm objects again.) is not used. ???
Debian systems have a different approach to init scripts than Slackware's so I can't say for certain how they do it. It's been a good 10 years or so since I last ran Debian. Having said that I'd still expect debian to run the vgscan etc before it gets to the runlevel specific rc[1|2|3|4...].d stuff so although there's no rc.lvm anywhere, its probably included in whatever script is debian's equivalent of rc.S. If you really want to dig into this, your best bet is to grep around in some of the scripts that gets mentioned in /etc/inittab for vgscan and you'll probably find it in one of them.
 
Old 12-19-2008, 11:23 AM   #9
catkin
LQ 5k Club
 
Registered: Dec 2008
Location: Tamil Nadu, India
Distribution: Debian
Posts: 8,578

Original Poster
Blog Entries: 31

Rep: Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208
Thank you for all your help; it has been enlightening. ubuntu 8.04 (= debian) does not have an /etc/inittab although some of the scripts are coded to use it if it does exist. I think the replacement is /etc/event.d but that has no scripts that call vgscan. My working hypothesis (don't you just love reverse engineering?!) is that all the LVM work is done before the init scripts are run.

Regardless of the details the essential concept of the booting system scanning the block devices for LVM metadata holds good; what a nice design decision, creating robustness and flexibility.

As a minor aside, I've often wondered what "rc" means in the UNIX lexicon but have never seen an explanation. It stems from the earliest, terse days when user IO was slow (think teletype!). Perhaps it's a contraction of a contraction based on cfg and conf meaning configuration. Maybe rc = "run cfg" = "run configuration".

Best

Charles
 
Old 12-19-2008, 06:43 PM   #10
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019
Quote:
Originally Posted by catkin View Post
As a minor aside, I've often wondered what "rc" means in the UNIX lexicon but have never seen an explanation. It stems from the earliest, terse days when user IO was slow (think teletype!). Perhaps it's a contraction of a contraction based on cfg and conf meaning configuration. Maybe rc = "run cfg" = "run configuration".
A quick google for "unix rc files" will give you your answer. As it happens you weren't that far off.
 
  


Reply

Tags
boot, kernel, linux, lvm



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Tool to change the label of a NTFS disk/partition lothario Linux - Software 3 11-04-2012 09:30 AM
Adjust partition table (end cylinder) after disk change. noisebleed Linux - General 3 12-30-2007 04:39 PM
change file permission of a mouse device file permanently alexandre_fs Linux - General 5 01-09-2007 06:30 AM
Can the hard disk partition be made independent through driver Change Xcom_Cheetah Programming 4 06-03-2004 08:44 AM
How to change character device file name? taphos Linux - General 2 03-28-2004 08:12 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 07:12 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration