LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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 01-05-2009, 11:33 PM   #1
gpfromnc
Member
 
Registered: Mar 2006
Posts: 38

Rep: Reputation: 15
How Can I Repair Linux Multiboot? - Only One Distro Boots After Install Difficulties


I have a linux multiboot setup that I have damaged and am trying to recover. I first installed Debian Etch using the entire disk drive, so it is on the first partition of my single disk system (SATA). Later I installed FC10 by resizing the first partition and creating a second partition. After this install Fedora's grub install booted the system. It worked ok until I added Ubuntu (again resizing FC's partition and creating a third partition.) Ubuntu seemed to install without problems, but during the installation, GRUB did not properly install.
Now when I boot I still get Fedora's splash screen and am able to boot Debian but an attempt to boot fedora from this menu will return "Volume group "VolGroup00" not found. mount: error mounting /dev/root on sysroot as ext3: No such file or directory."
No listing for Ubuntu is shown.
When I examine /boot/grub/menu.lst I find the entries for booting Debian, but this is not the list that is being displayed at boot.
So where is the list that the system is booting from? I assume it must be either in the MBR or on the first partition, because the above error message seems to indicate that the second partition is now not mountable.

cat kernel-img.conf returns:
# Kernel image management overrides
# See kernel-img.conf(5) for details
do_symlinks = yes
relative_links = yes
do_bootloader = no
do_bootfloppy = no
do_initrd = yes
link_in_boot = no
postinst_hook = update-grub
postrm_hook = update-grub

df -ah returns:
Filesystem Size Used Avail Use% Mounted on
/dev/sda1 6.5G 2.5G 3.7G 41% /
tmpfs 507M 0 507M 0% /lib/init/rw
proc 0 0 0 - /proc
sysfs 0 0 0 - /sys
procbususb 0 0 0 - /proc/bus/usb
udev 10M 64K 10M 1% /dev
tmpfs 507M 0 507M 0% /dev/shm
devpts 0 0 0 - /dev/pts
/dev/sda6 15G 2.0G 12G 14% /home

I don't have data on the FC or Ubuntu installs, so if I need to reinstall I'm not too concerned, but I want to 1) avoid doing something that will trash my ability to access Debian, and 2) avoid this happening again. If there is a way to repair the boot loader, that would be the best solution of all, of course.
Thank you for any suggestions.
 
Old 01-06-2009, 12:04 AM   #2
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
In the distro that does boot, mount the other distro's /boot (or root partition) and access the /boot/grub/menu.lst of the first two distributions and use the information to add entries for the first two distributions.

The lines to add look like this:
Code:
title openSUSE 11.0 - 2.6.25.18-0.2 (default)
    root (hd1,0)
    kernel /vmlinuz-2.6.25.18-0.2-default root=/dev/disk/by-id/scsi-SATA_Maxtor_6L200M0_L407EABH-part3 resume=/dev/sdb2 splash=silent showopts vga=0x31a
    initrd /initrd-2.6.25.18-0.2-default
On your first two distro's one or more may use device names like (hd0,1) or /dev/sda instead. Resume= refers to the swap partition. You probably have only one so that entry will be the same. AFAIK, the first root entry in the example refers to the partition that contains the kernel. The second one refers to the root partition (/) that contains the other directories of the distro. In the example above, the root= entry on the kernel line refers to /dev/sdb3. The root (hd1,0) entry on the second line is the /boot directory.

Last edited by jschiwal; 01-06-2009 at 12:05 AM.
 
Old 01-06-2009, 12:53 AM   #3
haertig
Senior Member
 
Registered: Nov 2004
Distribution: Debian, Ubuntu, LinuxMint, Slackware, SysrescueCD, Raspbian, Arch
Posts: 2,331

Rep: Reputation: 357Reputation: 357Reputation: 357Reputation: 357
When installing multiple distros using LVM, I recommend first creating your volume groups and logical volumes manually (preferably with a separate LiveCD) and then instructing each distro which VG's and LV's to install itself onto. If you let the distros do their own LVM creation automatically, you can end up with different distros trying to create VolGroup00 which causes conflicts. Ubuntu doesn't particularly like to be installed on LVM unless you use the "alternate installer" (not the standard LiveCD).

Also, it is good to have a separate /boot partition. This is my /dev/hda1. Each distro mounts /dev/hda1 as /boot (it is shared between them all). /dev/hda1 contains my grub bootloader, all my different distro kernels, initrd's, etc., and the single menu.lst to controls it all. As I install each distro, before letting them mess with the bootloader, I make a backup copy. Then they normally overwrite was was previously in menu.lst. After they've done that, I manually fix menu.lst by re-adding in the stuff from the old menu.lst backup copy.

Note that /dev/hda2 is "System Rescue CD", and is the fallback boot if one of the other distros fails to boot. I also have a System Rescue CD LiveCD to boot from in emergencies, but this gives me the option to continue booting from the hard disk during "semi-emergencies" where I don't have to go all the way to a bootable CD for repair.

Here is my shared /boot filesystem:
Code:
root@FamilyRoom:~# ls -lR /boot
/boot:
total 21
drwxr-xr-x 2 root root  1024 2008-09-18 23:24 debian_4.0r4a/
drwxr-xr-x 3 root root  1024 2008-09-21 20:32 fedora_9/
drwxr-xr-x 2 root root  1024 2008-12-28 15:20 grub/
drwx------ 2 root root 12288 2008-09-17 07:41 lost+found/
drwxr-xr-x 3 root root  1024 2008-09-20 21:08 opensuse_11.0/
drwxr-xr-x 2 root root  1024 2008-09-18 23:22 slackware_12.1/
drwxr-xr-x 2 root root  1024 2008-09-18 23:23 ubuntu_8.04.1/
drwxr-xr-x 2 root root  1024 2008-12-28 15:13 ubuntu_8.10/

/boot/debian_4.0r4a:
total 7622
lrwxrwxrwx 1 root root      23 2008-09-18 22:50 System.map -> System.map-2.6.18-6-486
-rw-r--r-- 1 root root  717895 2008-08-18 07:51 System.map-2.6.18-6-486
-rw-r--r-- 1 root root  308326 2008-09-18 22:50 coffee.bmp
lrwxrwxrwx 1 root root      19 2008-09-18 22:51 config -> config-2.6.18-6-486
-rw-r--r-- 1 root root   71719 2008-08-18 01:59 config-2.6.18-6-486
lrwxrwxrwx 1 root root       9 2008-09-18 22:50 debian.bmp -> sarge.bmp
-rw-r--r-- 1 root root  153720 2008-09-18 22:50 debianlilo.bmp
lrwxrwxrwx 1 root root      23 2008-09-18 22:51 initrd.img -> initrd.img-2.6.18-6-486
-rw-r--r-- 1 root root 5241663 2008-09-18 23:06 initrd.img-2.6.18-6-486
-rw-r--r-- 1 root root   23662 2008-09-18 22:50 sarge.bmp
-rw-r--r-- 1 root root   24116 2008-09-18 22:50 sid.bmp
lrwxrwxrwx 1 root root      20 2008-09-18 22:51 vmlinuz -> vmlinuz-2.6.18-6-486
-rw-r--r-- 1 root root 1219393 2008-08-18 07:51 vmlinuz-2.6.18-6-486

/boot/fedora_9:
total 6708
lrwxrwxrwx 1 root root      31 2008-09-21 20:31 System.map -> System.map-2.6.25-14.fc9.x86_64
-rw-r--r-- 1 root root 1118248 2008-05-01 04:16 System.map-2.6.25-14.fc9.x86_64
lrwxrwxrwx 1 root root      27 2008-09-21 20:31 config -> config-2.6.25-14.fc9.x86_64
-rw-r--r-- 1 root root   80174 2008-05-01 04:16 config-2.6.25-14.fc9.x86_64
drwxr-xr-x 3 root root    1024 2008-09-21 20:32 efi/
-rw------- 1 root root 3561363 2008-09-21 19:55 initrd-2.6.25-14.fc9.x86_64.img
lrwxrwxrwx 1 root root      31 2008-09-21 20:31 initrd.img -> initrd-2.6.25-14.fc9.x86_64.img
lrwxrwxrwx 1 root root      28 2008-09-21 20:31 vmlinuz -> vmlinuz-2.6.25-14.fc9.x86_64*
-rwxr-xr-x 1 root root 2069432 2008-05-01 04:16 vmlinuz-2.6.25-14.fc9.x86_64*

/boot/fedora_9/efi:
total 2
drwxr-xr-x 3 root root 1024 2008-09-21 20:32 EFI/

/boot/fedora_9/efi/EFI:
total 2
drwxr-xr-x 2 root root 1024 2008-09-21 20:32 redhat/

/boot/fedora_9/efi/EFI/redhat:
total 217
-rwxr-xr-x 1 root root 219290 2008-09-21 20:32 grub.efi*

/boot/grub:
total 384
-rw-r--r-- 1 root root    197 2008-09-17 08:13 default
-rw-r--r-- 1 root root     30 2008-09-17 08:15 device.map
-rw-r--r-- 1 root root   8052 2008-09-17 08:13 e2fs_stage1_5
-rw-r--r-- 1 root root   7888 2008-09-17 08:13 fat_stage1_5
-rw-r--r-- 1 root root   7140 2008-09-17 08:13 ffs_stage1_5
-rw-r--r-- 1 root root   1688 2008-09-20 20:43 grub.conf
-rw-r--r-- 1 root root   1842 2008-09-17 08:13 grub.conf.sample
-rw-r--r-- 1 root root   7128 2008-09-17 08:13 iso9660_stage1_5
-rw-r--r-- 1 root root   8604 2008-09-17 08:13 jfs_stage1_5
-rw------- 1 root root   1480 2008-12-28 15:20 menu.lst
-rw------- 1 root root   1320 2008-12-28 18:51 menu.lst.bak
-rw-r--r-- 1 root root   7324 2008-09-17 08:13 minix_stage1_5
-rw-r--r-- 1 root root   9632 2008-09-17 08:13 reiserfs_stage1_5
-rw-r--r-- 1 root root  66003 2008-04-11 14:02 splash.xpm.gz
-rw-r--r-- 1 root root    512 2008-09-17 08:13 stage1
-rw-r--r-- 1 root root 104508 2008-09-17 08:13 stage2
-rw-r--r-- 1 root root 104508 2008-09-17 08:13 stage2_eltorito
-rw-r--r-- 1 root root   7480 2008-09-17 08:13 ufs2_stage1_5
-rw-r--r-- 1 root root   6704 2008-09-17 08:13 vstafs_stage1_5
-rw-r--r-- 1 root root   9300 2008-09-17 08:13 xfs_stage1_5

/boot/lost+found:
total 0

/boot/opensuse_11.0:
total 13082
lrwxrwxrwx 1 root root      32 2008-09-20 21:08 System.map -> System.map-2.6.25.16-0.1-default
-rw-r--r-- 1 root root 1175316 2008-08-22 08:13 System.map-2.6.25.16-0.1-default
-rw------- 1 root root     512 2008-09-20 20:43 backup_mbr
lrwxrwxrwx 1 root root       1 2008-09-20 20:43 boot -> ./
lrwxrwxrwx 1 root root      28 2008-09-20 21:08 config -> config-2.6.25.16-0.1-default
-rw-r--r-- 1 root root   83039 2008-08-22 08:16 config-2.6.25.16-0.1-default
drwxr-xr-x 2 root root    1024 2008-09-20 20:43 grub/
lrwxrwxrwx 1 root root      28 2008-09-20 20:56 initrd -> initrd-2.6.25.16-0.1-default
-rw-r--r-- 1 root root 6198075 2008-09-20 20:56 initrd-2.6.25.16-0.1-default
-rw-r--r-- 1 root root  115828 2008-09-20 20:43 memtest.bin
-rw-r--r-- 1 root root  427520 2008-09-20 20:43 message
-rw-r--r-- 1 root root  152391 2008-08-22 08:17 symsets-2.6.25.16-0.1-default.tar.gz
-rw-r--r-- 1 root root  440997 2008-08-22 08:17 symtypes-2.6.25.16-0.1-default.gz
-rw-r--r-- 1 root root  126778 2008-08-22 08:17 symvers-2.6.25.16-0.1-default.gz
-rw-r--r-- 1 root root 2501474 2008-08-22 08:16 vmlinux-2.6.25.16-0.1-default.gz
lrwxrwxrwx 1 root root      29 2008-09-20 20:56 vmlinuz -> vmlinuz-2.6.25.16-0.1-default
-rw-r--r-- 1 root root 2106200 2008-08-22 08:13 vmlinuz-2.6.25.16-0.1-default

/boot/opensuse_11.0/grub:
total 188
-rw------- 1 root root     30 2008-09-20 20:43 device.map
-rw-r--r-- 1 root root     29 2008-09-20 20:43 device.map.old
-rw-r--r-- 1 root root   7596 2008-09-20 20:43 e2fs_stage1_5
-rw-r--r-- 1 root root   7328 2008-09-20 20:43 fat_stage1_5
-rw-r--r-- 1 root root   6604 2008-09-20 20:43 ffs_stage1_5
-rw-r--r-- 1 root root   6600 2008-09-20 20:43 iso9660_stage1_5
-rw-r--r-- 1 root root   8268 2008-09-20 20:43 jfs_stage1_5
-rw------- 1 root root    820 2008-09-20 20:43 menu.lst
-rw-r--r-- 1 root root    851 2008-09-20 20:43 menu.lst.old
-rw-r--r-- 1 root root   6832 2008-09-20 20:43 minix_stage1_5
-rw-r--r-- 1 root root   9216 2008-09-20 20:43 reiserfs_stage1_5
-rw-r--r-- 1 root root    512 2008-09-20 20:43 stage1
-rw-r--r-- 1 root root 105630 2008-09-20 20:43 stage2
-rw-r--r-- 1 root root   6864 2008-09-20 20:43 ufs2_stage1_5
-rw-r--r-- 1 root root   6204 2008-09-20 20:43 vstafs_stage1_5
-rw-r--r-- 1 root root   9028 2008-09-20 20:43 xfs_stage1_5

/boot/slackware_12.1:
total 7055
lrwxrwxrwx 1 root root      37 2008-09-16 08:41 README.initrd -> /usr/doc/mkinitrd-1.3.2/README.initrd
lrwxrwxrwx 1 root root      32 2008-09-16 08:49 System.map -> System.map-huge-smp-2.6.24.5-smp
-rw-r--r-- 1 root root 1320655 2008-04-30 12:42 System.map-huge-smp-2.6.24.5-smp
-rw-r--r-- 1 root root     137 2008-09-16 08:50 boot_message.txt
lrwxrwxrwx 1 root root      28 2008-09-16 08:49 config -> config-huge-smp-2.6.24.5-smp
-rw-r--r-- 1 root root   82536 2008-04-30 12:39 config-huge-smp-2.6.24.5-smp
-rw-r--r-- 1 root root    5040 2008-04-01 01:39 diag1.img
-rw-r--r-- 1 root root 1393180 2008-09-17 16:04 initrd.gz
-rw-r--r-- 1 root root   15754 2008-02-21 17:08 slack.bmp
lrwxrwxrwx 1 root root      29 2008-09-16 08:55 vmlinuz -> vmlinuz-huge-smp-2.6.24.5-smp
-rw-r--r-- 1 root root 4369880 2008-09-16 08:54 vmlinuz-huge-smp-2.6.24.5-smp

/boot/ubuntu_8.04.1:
total 11944
lrwxrwxrwx 1 root root      28 2008-09-18 18:22 System.map -> System.map-2.6.24-19-generic
-rw-r--r-- 1 root root  905170 2008-08-20 22:46 System.map-2.6.24-19-generic
-rw-r--r-- 1 root root  422667 2008-08-20 22:46 abi-2.6.24-19-generic
-rw-r--r-- 1 root root     512 2008-09-18 19:03 boot.0801
-rw-r--r-- 1 root root  308326 2008-09-18 17:41 coffee.bmp
lrwxrwxrwx 1 root root      24 2008-09-18 18:22 config -> config-2.6.24-19-generic
-rw-r--r-- 1 root root   80049 2008-08-20 22:46 config-2.6.24-19-generic
lrwxrwxrwx 1 root root       9 2008-09-18 18:22 debian.bmp -> sarge.bmp
-rw-r--r-- 1 root root  153720 2008-09-18 17:41 debianlilo.bmp
lrwxrwxrwx 1 root root      28 2008-09-18 18:21 initrd.img -> initrd.img-2.6.24-19-generic
-rw-r--r-- 1 root root 8108924 2008-09-18 19:03 initrd.img-2.6.24-19-generic
-rw------- 1 root root  113664 2008-09-18 19:03 map
-rw-r--r-- 1 root root  103204 2007-09-28 04:06 memtest86+.bin
-rw-r--r-- 1 root root   23662 2008-09-18 17:41 sarge.bmp
-rw-r--r-- 1 root root   24116 2008-09-18 17:41 sid.bmp
lrwxrwxrwx 1 root root      25 2008-09-18 18:20 vmlinuz -> vmlinuz-2.6.24-19-generic
-rw-r--r-- 1 root root 1921464 2008-08-20 22:46 vmlinuz-2.6.24-19-generic

/boot/ubuntu_8.10:
total 11335
lrwxrwxrwx 1 root root      28 2008-12-28 15:08 System.map -> System.map-2.6.24-22-generic
-rw-r--r-- 1 root root  905617 2008-11-24 15:47 System.map-2.6.24-22-generic
lrwxrwxrwx 1 root root      21 2008-12-28 15:08 abi -> abi-2.6.24-22-generic
-rw-r--r-- 1 root root  422838 2008-11-24 15:47 abi-2.6.24-22-generic
-rw-r--r-- 1 root root     512 2008-12-28 19:06 boot.0801
lrwxrwxrwx 1 root root      24 2008-12-28 15:09 config -> config-2.6.24-22-generic
-rw-r--r-- 1 root root   80062 2008-11-24 15:47 config-2.6.24-22-generic
lrwxrwxrwx 1 root root      28 2008-12-28 15:08 initrd.img -> initrd.img-2.6.24-22-generic
-rw-r--r-- 1 root root 8107882 2008-12-28 19:09 initrd.img-2.6.24-22-generic
-rw------- 1 root root  113664 2008-12-28 19:09 map
lrwxrwxrwx 1 root root      25 2008-12-28 15:08 vmlinuz -> vmlinuz-2.6.24-22-generic
-rw-r--r-- 1 root root 1921176 2008-11-24 15:47 vmlinuz-2.6.24-22-generic
root@FamilyRoom:~#
Here is my menu.lst
Code:
root@FamilyRoom:~# cat /boot/grub/menu.lst
# Modified by YaST2. Last modification on Sat Sep 20 20:56:55 MDT 2008
#
# Sample boot menu configuration file
#
# Splash screen background
splashimage=(hd0,0)/grub/splash.xpm.gz
# Boot automatically after 30 secs.
timeout 30
# By default, boot the fourth entry (Slackware 12.1)
default 3
# Fallback to the first entry.
fallback 0

title System Rescue CD v1.1.0
    root (hd0,1)
    kernel /sysrcd/rescuecd subdir=sysrcd setkmap=us dodhcp
    initrd /sysrcd/initram.igz
    boot

title Ubuntu v8.04.1 Hardy Heron
    root (hd0,0)
    kernel /ubuntu_8.04.1/vmlinuz root=/dev/vg_ubuntu_8.04.1/lv_root
    initrd /ubuntu_8.04.1/initrd.img
    boot

title Ubuntu v8.10 Intrepid Ibis
    root (hd0,0)
    kernel /ubuntu_8.10/vmlinuz root=/dev/vg_ubuntu_8.10/lv_root
    initrd /ubuntu_8.10/initrd.img
    boot

title Slackware v12.1
    root (hd0,0)
    kernel /slackware_12.1/vmlinuz root=/dev/vg_slackware_12.1/lv_root
    initrd /slackware_12.1/initrd.gz
    boot

title Debian v4.0r4a Etch
    root (hd0,0)
    kernel /debian_4.0r4a/vmlinuz root=/dev/vg_debian_4.0r4a/lv_root
    initrd /debian_4.0r4a/initrd.img
    boot

title Fedora 9 Sulphur
    root (hd0,0)
    kernel /fedora_9/vmlinuz root=/dev/vg_fedora_9/lv_root
    initrd /fedora_9/initrd.img
    boot

title OpenSUSE v11.0
    root (hd0,0)
    kernel /opensuse_11.0/vmlinuz root=/dev/vg_opensuse_11.0/lv_root
    initrd /opensuse_11.0/initrd
    boot

title Windows 2000 Professional
    root(hd0,2)
    makeactive
    chainloader +1

root@FamilyRoom:~#
And here is my LVM setup. Note that I don't have any of the default "VolGroup00". Each VG is named for the distro it contains.
Code:
root@FamilyRoom:~# fdisk -l

Disk /dev/hda: 200.0 GB, 200049647616 bytes
255 heads, 63 sectors/track, 24321 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x405a867f

   Device Boot      Start         End      Blocks   Id  System
/dev/hda1   *           1          13      104391   83  Linux
/dev/hda2              14          99      690795   83  Linux
/dev/hda3             100        1345    10008495    7  HPFS/NTFS
/dev/hda4            1346       24321   184554720    5  Extended
/dev/hda5            1346        2591    10008463+  8e  Linux LVM
/dev/hda6            2592        3837    10008463+  8e  Linux LVM
/dev/hda7            3838        5082    10000431   8e  Linux LVM
/dev/hda8            5083        6328    10008463+  8e  Linux LVM
/dev/hda9            6329        7574    10008463+  8e  Linux LVM
/dev/hda10           7575        8820    10008463+  8e  Linux LVM

Disk /dev/hdb: 200.0 GB, 200049647616 bytes
255 heads, 63 sectors/track, 24321 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x405a867f

   Device Boot      Start         End      Blocks   Id  System
/dev/hdb1   *           1          13      104391   83  Linux
/dev/hdb2              14          99      690795   83  Linux
/dev/hdb3             100       24321   194563215   8e  Linux LVM

root@FamilyRoom:~# pvs
  PV         VG                Fmt  Attr PSize   PFree
  /dev/hda10 vg_ubuntu_8.10    lvm2 a-     9.54G 2.88G
  /dev/hda5  vg_slackware_12.1 lvm2 a-     9.54G 4.16G
  /dev/hda6  vg_ubuntu_8.04.1  lvm2 a-     9.54G 2.88G
  /dev/hda7  vg_debian_4.0r4a  lvm2 a-     9.54G 2.62G
  /dev/hda8  vg_opensuse_11.0  lvm2 a-     9.54G 3.61G
  /dev/hda9  vg_fedora_9       lvm2 a-     9.54G 3.16G
  /dev/hdb3  vg_fileserver     lvm2 a-   185.55G    0

root@FamilyRoom:~# vgs
  VG                #PV #LV #SN Attr   VSize   VFree
  vg_debian_4.0r4a    1   7   0 wz--n-   9.54G 2.62G
  vg_fedora_9         1   7   0 wz--n-   9.54G 3.16G
  vg_fileserver       1   1   0 wz--n- 185.55G    0
  vg_opensuse_11.0    1   7   0 wz--n-   9.54G 3.61G
  vg_slackware_12.1   1   7   0 wz--n-   9.54G 4.16G
  vg_ubuntu_8.04.1    1   7   0 wz--n-   9.54G 2.88G
  vg_ubuntu_8.10      1   7   0 wz--n-   9.54G 2.88G

root@FamilyRoom:~# lvs
  LV      VG                Attr   LSize    Origin Snap%  Move Log Copy%  Convert
  lv_home vg_debian_4.0r4a  -wi-a-   52.00M
  lv_opt  vg_debian_4.0r4a  -wi-a-   52.00M
  lv_root vg_debian_4.0r4a  -wi-a-  300.00M
  lv_swap vg_debian_4.0r4a  -wi-a-  500.00M
  lv_tmp  vg_debian_4.0r4a  -wi-a-   52.00M
  lv_usr  vg_debian_4.0r4a  -wi-a-    5.00G
  lv_var  vg_debian_4.0r4a  -wi-a- 1004.00M
  lv_home vg_fedora_9       -wi-a-  104.00M
  lv_opt  vg_fedora_9       -wi-a-   52.00M
  lv_root vg_fedora_9       -wi-a-  300.00M
  lv_swap vg_fedora_9       -wi-a-  500.00M
  lv_tmp  vg_fedora_9       -wi-a-   52.00M
  lv_usr  vg_fedora_9       -wi-a-    5.00G
  lv_var  vg_fedora_9       -wi-a-  404.00M
  lv_srv  vg_fileserver     -wi-ao  185.55G
  lv_home vg_opensuse_11.0  -wi-a-   52.00M
  lv_opt  vg_opensuse_11.0  -wi-a-  252.00M
  lv_root vg_opensuse_11.0  -wi-a-  400.00M
  lv_swap vg_opensuse_11.0  -wi-a-   52.00M
  lv_tmp  vg_opensuse_11.0  -wi-a-   52.00M
  lv_usr  vg_opensuse_11.0  -wi-a-    5.00G
  lv_var  vg_opensuse_11.0  -wi-a-  152.00M
  lv_home vg_slackware_12.1 -wi-ao   52.00M
  lv_opt  vg_slackware_12.1 -wi-ao   52.00M
  lv_root vg_slackware_12.1 -wi-ao  200.00M
  lv_swap vg_slackware_12.1 -wi-ao  500.00M
  lv_tmp  vg_slackware_12.1 -wi-ao   52.00M
  lv_usr  vg_slackware_12.1 -wi-ao    4.50G
  lv_var  vg_slackware_12.1 -wi-ao   52.00M
  lv_home vg_ubuntu_8.04.1  -wi-a-   52.00M
  lv_opt  vg_ubuntu_8.04.1  -wi-a-   52.00M
  lv_root vg_ubuntu_8.04.1  -wi-a-  300.00M
  lv_swap vg_ubuntu_8.04.1  -wi-a-  500.00M
  lv_tmp  vg_ubuntu_8.04.1  -wi-a-   52.00M
  lv_usr  vg_ubuntu_8.04.1  -wi-a-    5.00G
  lv_var  vg_ubuntu_8.04.1  -wi-a-  752.00M
  lv_home vg_ubuntu_8.10    -wi-a-   52.00M
  lv_opt  vg_ubuntu_8.10    -wi-a-   52.00M
  lv_root vg_ubuntu_8.10    -wi-a-  300.00M
  lv_swap vg_ubuntu_8.10    -wi-a-  500.00M
  lv_tmp  vg_ubuntu_8.10    -wi-a-   52.00M
  lv_usr  vg_ubuntu_8.10    -wi-a-    5.00G
  lv_var  vg_ubuntu_8.10    -wi-a-  752.00M
root@FamilyRoom:~#
 
  


Reply



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
Putting a Linux PPC Distro onto a Multiboot (Yaboot) Drive motsteve Linux - Newbie 0 09-18-2008 08:10 AM
I need a Linux OS other than Ubuntu which has a repair disk or repair software jhmac77 Linux - Newbie 1 03-17-2008 07:04 AM
Running VMWare tools automatically while Linux (Any Distro) starts or boots? mavinashbabu Linux - Newbie 2 09-10-2006 02:57 PM
Installation Difficulties no matter what distro i try Tadaen Linux - Newbie 4 09-01-2006 09:33 PM
multiboot, multi HD, multi distro install help pfschim SUSE / openSUSE 4 05-25-2005 06:28 PM

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

All times are GMT -5. The time now is 06:51 PM.

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