| Fedora This forum is for the discussion of the Fedora Project. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
07-15-2007, 10:09 AM
|
#1
|
|
LQ Newbie
Registered: Jul 2007
Posts: 14
Rep:
|
How can I mount LVM partition in ubuntu?
Hi. I have fedora LVM partitions. I want to mount them in ubuntu Live CD, but I don't know how. Is there a way
Thanks.
|
|
|
|
07-15-2007, 01:22 PM
|
#2
|
|
Guru
Registered: Jan 2003
Location: Seymour, Indiana
Distribution: Distribution: RHEL 5 with Pieces of this and that.
Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,697
Rep:
|
Not sure if the Live CD supports LVM but from a quick google search there are many links on the subject. This one is simply. http://www.linux-sxs.org/storage/fedora2ubuntu.html
Brian
|
|
|
|
11-21-2008, 02:57 AM
|
#4
|
|
Member
Registered: Oct 2008
Location: KL Malaysia
Distribution: Fedora 9, Ubuntu Hardy, Puppy Linux
Posts: 32
Rep:
|
Quote:
Originally Posted by Brian1
|
Brian, thanks
The link you provided above worked real well for me.
murthy
|
|
|
|
09-29-2009, 11:16 PM
|
#5
|
|
LQ Newbie
Registered: Jul 2009
Posts: 13
Rep:
|
Quote:
Originally Posted by pirulo
|
Thanks alot this was a mammoth task,
because all my critical data were in the hard disk and I was just lost what to do!!!!!!!!!!
Thanks a lot for your guidance
|
|
|
|
02-24-2010, 06:00 PM
|
#6
|
|
LQ Newbie
Registered: Dec 2006
Posts: 8
Rep:
|
Thanks much! Once more, LQ comes through for me. 
|
|
|
|
07-20-2010, 11:46 AM
|
#7
|
|
LQ Newbie
Registered: Jul 2010
Posts: 1
Rep:
|
Just quoting the instructions from the linked page from archive.org since the original is down.
@#$!@$ can't link to the page on archive.org because I just registered to post this.
Quote:
Accessing a Fedora Logical Volume from Ubuntu
Submitted by: Kurt Wall
Update by:
Date Submitted: 10 Apr 2007
Document Version: 1.0
Last Updated: Sat, 02 Feb 2008 17:46:54 GMT
A while back, I started experimenting with Ubuntu after playing with Fedora. I decided to jump to Ubuntu and needed to move data from the Fedora-managed logical volume to Ubuntu. Here's what I did.
Boot Ubuntu.
Install lvm2:
$ sudo apt-get install lvm2
Load the necessary module(s):
$ sudo modprobe dm-mod
Scan your system for LVM volumes and identify in the output the volume group name that has your Fedora volume (mine proved to be VolGroup00):
$ sudo vgscan
Activate the volume:
$ sudo vgchange -ay VolGroup00
Find the logical volume that has your Fedora root filesystem (mine proved
to be LogVol00):
$ sudo lvs
Create a mount point for that volume:
$ sudo mkdir /mnt/fcroot
Mount it:
$ sudo mount /dev/VolGroup00/LogVol00 /mnt/fcroot -o ro,user
Copied my files.
|
You can skip the modprobe now, at least on Jaunty.
|
|
|
|
10-28-2010, 07:54 AM
|
#8
|
|
LQ Newbie
Registered: Oct 2010
Posts: 1
Rep:
|
Does anyone have an idea why Ubuntu would be unable to locate lvm2 package? I'm trying to mount and LVM partition for an emergency recovery.
This is the error I receive:
root@chuckd-System-Product-Name:~# apt-get install lvm2
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package lvm2
root@chuckd-System-Product-Name:~#
|
|
|
|
10-29-2010, 02:06 PM
|
#9
|
|
LQ Newbie
Registered: Dec 2006
Posts: 8
Rep:
|
TheJaspMan,
Not sure what version of Ubuntu you're on. At a guess though, based on your post, your network may not be configured.
Here's what I get:
Quote:
# cat /etc/*release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=10.04
DISTRIB_CODENAME=lucid
DISTRIB_DESCRIPTION="Ubuntu 10.04.1 LTS"
# apt-get install lvm2
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
libdevmapper-event1.02.1 watershed
The following NEW packages will be installed:
libdevmapper-event1.02.1 lvm2 watershed
0 upgraded, 3 newly installed, 0 to remove and 3 not upgraded.
Need to get 463kB of archives.
After this operation, 1,266kB of additional disk space will be used.
Do you want to continue [Y/n]?
|
|
|
|
|
03-18-2011, 06:48 AM
|
#10
|
|
LQ Newbie
Registered: Jul 2009
Posts: 13
Rep:
|
Installing lvm2
Quote:
Originally Posted by TheJaspMan
Does anyone have an idea why Ubuntu would be unable to locate lvm2 package? I'm trying to mount and LVM partition for an emergency recovery.
This is the error I receive:
root@chuckd-System-Product-Name:~# apt-get install lvm2
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package lvm2
root@chuckd-System-Product-Name:~#
|
I have no idea what version of Ubuntu you are using but I also faced the same issue while
installing lvm2 using ubuntu 5.10.
Firstly ensure that you have proper network connection(you may check by making any search on google)
And then try apt-get install lvm2.....
Hope it works for ...... 
|
|
|
|
10-27-2011, 09:14 AM
|
#11
|
|
LQ Newbie
Registered: Mar 2006
Posts: 4
Rep:
|
1. Boot Ubuntu.
2. Install lvm2:
$ sudo apt-get install lvm2
3. Load the necessary module(s):
$ sudo modprobe dm-mod
4. Scan your system for LVM volumes and identify in the output the volume group name that has your Fedora volume (mine proved to be VolGroup00):
$ sudo vgscan
5. Activate the volume:
$ sudo vgchange -ay VolGroup00
6. Find the logical volume that has your Fedora root filesystem (mine proved to be LogVol00):
$ sudo lvs
7. Create a mount point for that volume:
$ sudo mkdir /mnt/fcroot
8. Mount it:
$ sudo mount /dev/VolGroup00/LogVol00 /mnt/fcroot -o ro,user
OR sudo mount /dev/mapper/VolGroup00/LogVol00 /mnt/fcroot -o ro,user
9. Copied my files.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 03:15 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|