Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Find the answer to your Linux question:
New to Linux Forums? Register here for free!
    Linux Forums > Your Distro > Knoppix Help Forum > 5.1.1 hdd access

Forgot Password?
 Knoppix Help Forum   For all discussions about Knoppix, the Linux "Live CD" that lets you run Linux without needing to install on your hard drive.

Site Navigation
Linux Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
IRC Chat
RSS Feeds


Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
Reply
 
Thread Tools Display Modes
Old 05-19-2007   #1 (permalink)
Just Joined!
 
Join Date: Feb 2007
Posts: 17
5.1.1 hdd access

hey guys, sorry if this info is somewhere else but im lost.
im booting the live cd and want to access the files on my WD 250g sata hdd but cant seem to get knoppix to find the drive.
after trying previous methods to rescue files off the hdd ( previously fc6 install), i was hoping to use knoppix to burn files to disc then formatt the hdd

is this poss? and any ideas how to get knoppix to find my hdd?

any help would be great
trashchris is offline  


Reply With Quote
Old 05-19-2007   #2 (permalink)
Super Moderator
 
devils casper's Avatar
 
Join Date: Jun 2006
Location: Chandigarh, India
Posts: 21,081
Send a message via Yahoo to devils casper
what filesystem Fedora has? post the output of 'fdisk -l' command?
__________________
It takes a lot of time to be a genius, you have to sit around so much doing nothing, really doing nothing. - Gertrude Stein
New Users: Read This First
devils casper is offline   Reply With Quote
Old 05-19-2007   #3 (permalink)
Just Joined!
 
Join Date: Feb 2007
Posts: 17
Quote:
Originally Posted by devils_casper View Post
what filesystem Fedora has? post the output of 'fdisk -l' command?
filesystem size used availi used% mounted on

/dev/Volgroup01/LogVol00

224G 182G 21G 86% /

/dev/mapper/navidia_afhfbecep1

99m 12m 83m 12% /boot
trashchris is offline   Reply With Quote
Old 05-19-2007   #4 (permalink)
Super Moderator
 
devils casper's Avatar
 
Join Date: Jun 2006
Location: Chandigarh, India
Posts: 21,081
Send a message via Yahoo to devils casper
its LVM. you have to activate volume groups first.
execute this
Code:
vgascan
vgachange -a y
execute lvs or vgdisplay or lvdisplay command and note down volume names.
output example :
Quote:
LV VG Attr LSize Origin Snap% Move Log Copy%
home vg -wi-ao 7.09G
var vg -wi-ao 1.02G
two volgroups, home and var. execute these to mount volgroups :
Code:
mkdir first second
mount /dev/vg/home  first
mount /dev/vg/var    second
check first and second folders.
__________________
It takes a lot of time to be a genius, you have to sit around so much doing nothing, really doing nothing. - Gertrude Stein
New Users: Read This First
devils casper is offline   Reply With Quote
Old 05-19-2007   #5 (permalink)
Just Joined!
 
Join Date: Feb 2007
Posts: 17
Quote:
Originally Posted by devils_casper View Post
its LVM. you have to activate volume groups first.
execute this
Code:
vgascan
vgachange -a y
execute lvs or vgdisplay or lvdisplay command and note down volume names.
output example :
two volgroups, home and var. execute these to mount volgroups :
Code:
mkdir first second
mount /dev/vg/home  first
mount /dev/vg/var    second
check first and second folders.
sorry im a total linux noob

do u mean run the first code to find out the volume names then use the last code to mount them in knoppix?

sorry like i said im a n00b with linux
trashchris is offline   Reply With Quote
Old 05-19-2007   #6 (permalink)
Super Moderator
 
devils casper's Avatar
 
Join Date: Jun 2006
Location: Chandigarh, India
Posts: 21,081
Send a message via Yahoo to devils casper
Quote:
do u mean run the first code to find out the volume names then use the last code to mount them in knoppix?
yes. open Konsole and execute 'vgascan' and 'vgachange -a y' to activate volume groups.
well ! execute this
Code:
vgascan
vgachange -a y
vgdisplay
post output here. if vgdisplay doesn't give any output, try lvs or lvdisplay.
__________________
It takes a lot of time to be a genius, you have to sit around so much doing nothing, really doing nothing. - Gertrude Stein
New Users: Read This First
devils casper is offline   Reply With Quote
Old 05-19-2007   #7 (permalink)
Just Joined!
 
Join Date: Feb 2007
Posts: 17
Quote:
Originally Posted by devils_casper View Post
yes. open Konsole and execute 'vgascan' and 'vgachange -a y' to activate volume groups.
well ! execute this
Code:
vgascan
vgachange -a y
vgdisplay
post output here. if vgdisplay doesn't give any output, try lvs or lvdisplay.
is all the code in knoppix terminal, i tried the vgascan in a fc6 resue window and got nothing i asume jn gettin mxed up
trashchris is offline   Reply With Quote
Old 05-19-2007   #8 (permalink)
Super Moderator
 
devils casper's Avatar
 
Join Date: Jun 2006
Location: Chandigarh, India
Posts: 21,081
Send a message via Yahoo to devils casper
aren't you using knoppix? you wrote that in your first post.
__________________
It takes a lot of time to be a genius, you have to sit around so much doing nothing, really doing nothing. - Gertrude Stein
New Users: Read This First
devils casper is offline   Reply With Quote
Old 05-19-2007   #9 (permalink)
Just Joined!
 
Join Date: Feb 2007
Posts: 17
Quote:
Originally Posted by devils_casper View Post
aren't you using knoppix? you wrote that in your first post.
yea sorry i was gettin confused with other advise

when i run "vgascan" i get "vgascan: command not found"

if i run "vgdisplay"

i get --- Volume group ---
VG Name VolGroup01
System ID
Format lvm2
Metadata Areas 1
Metadata Sequence No 3
VG Access read/write
VG Status resizable
MAX LV 0
Cur LV 2
Open LV 0
Max PV 0
Cur PV 1
Act PV 1
VG Size 232.78 GB
PE Size 32.00 MB
Total PE 7449
Alloc PE / Size 7448 / 232.75 GB
Free PE / Size 1 / 32.00 MB
VG UUID PS7PsU-ufMx-uXKS-iOZq-Gq9B-JKAs-J1Mkre
trashchris is offline   Reply With Quote
Old 05-19-2007   #10 (permalink)
Just Joined!
 
Join Date: Feb 2007
Posts: 17
i also changed ur command vgascan and vgachange

i took out the "a" and they ran correctly now

root@Knoppix:~# lvdisplay
--- Logical volume ---
LV Name /dev/VolGroup01/LogVol00
VG Name VolGroup01
LV UUID DvPqQg-0ZuP-bgQX-c2HJ-g5hM-nfAk-0P0r7u
LV Write Access read/write
LV Status available
# open 0
LV Size 230.81 GB
Current LE 7386
Segments 1
Allocation inherit
Read ahead sectors 0
Block device 254:3

--- Logical volume ---
LV Name /dev/VolGroup01/LogVol01
VG Name VolGroup01
LV UUID vBpqi6-QunR-6eEh-0oho-FdUl-7eAW-1p9zd1
LV Write Access read/write
LV Status available
# open 0
LV Size 1.94 GB
Current LE 62
Segments 1
Allocation inherit
Read ahead sectors 0
Block device 254:4
trashchris is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Free Magazines
Run Your Own Web Server Using Linux & Apache - Free 191 Page Preview
Learn about everything you'll need to build and maintain your Linux servers, and to deploy Web applications to them.
subscribe
Open Source Security Myths Dispelled
Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization
subscribe
InformationWeek
InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology.
subscribe



All times are GMT. The time now is 06:11 AM.






© 2000 - 2009 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.3.0 RC2