There's no such thing as a stupid question, but they're the easiest to answer.
JoinTour
Login
 
Tag Cloud
access audio avg avg 8 bios blue screen boot bsod computer connection cpu crash css dell desktop dma driver drivers dvd email error excel explorer firefox firefox 3 freeze gimp graphics hard drive hardware hijackthis hjt install internet internet explorer itunes keyboard laptop macro malware monitor motherboard network networking outlook outlook 2003 outlook 2007 outlook express pio problem problems router seo server slow sound sp3 spyware trojan usb video virtumonde virus vista vundo windows windows vista windows xp winxp wireless
UNIX/Linux
Search
Search in:
 
Advanced Search
Tech Support Guy Forums > Operating Systems > UNIX/Linux >
Help accessing hard drive with Gnome live cd


HELLO AND WELCOME! Before you can post your question, you'll have to register -- it's completely free! Click here to join today! We highly recommend that you print a copy of our Guide for New Members. Enjoy!

 
Thread Tools
fats_mat's Avatar
Computer Specs
Junior Member with 5 posts.
 
Join Date: Sep 2007
Location: Australia
Experience: Beginner
26-Sep-2007, 08:27 PM #1
Help accessing hard drive with Gnome live cd
Basically my computer wont let access windows so I'm just going to reformat my hard drive. But here's the problem, I need to recover files and I only have a external usb hard drive to use as a data storage place. So I was told to use Gnoppix, Gnome 2.10 LiveCD, my computer starts up with that fine but I am unable to get into my hard drive, I have no linux experience so I don't know if that is what's needed or not.
Please someone let my know how to get into my hard drive with this live cd if it doesn't support that than can someone suggest on that does.
CouchMaster's Avatar
Distinguished Member with 3,340 posts.
 
Join Date: May 2003
Location: West Texas
Experience: n00b
26-Sep-2007, 09:05 PM #2
When the Linux CD boots up it should auto mount the windows partition, provided that there is nothing wrong with the HD. If you can't see it on the desktop then you might have to find the Linux file manager and poke around in there. But it is there, and then you can burn what you want to a CDR. Its actually pretty cool to watch Linux do this!
__________________
Registered Linux user #385997

Some Anagrams:
Linux User = Unix Rules
Windows User = Unwise Words
Vista User = I Starve Us
Macintosh User = Sure isn't Macho
fats_mat's Avatar
Computer Specs
Junior Member with 5 posts.
 
Join Date: Sep 2007
Location: Australia
Experience: Beginner
26-Sep-2007, 09:12 PM #3
So how do I get this Linux file manager?
lotuseclat79's Avatar
Distinguished Member with 10,037 posts.
 
Join Date: Sep 2003
Location: -71.45091, 42.27841
27-Sep-2007, 07:58 AM #4
Gnoppix, Gnome 2.10 LiveCD is an Ubuntu based Live CD to demo "an Ubuntu verseion of Gnome" to be specific.

As Ubuntu Fiesty (7.04) does not auto mount any drives you won't see any hard drives mounted. I am assuming that Gnoppix is based on Ubuntu Fiesty (7.04).

Issuing the mount command from a terminal window:
$ mount
should tell you what is mounted.

In order to discover the identity of the device for your Windows disk, issue:
$ sudo fdisk -l
You might see something like:
Disk /dev/sda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/sda1 * 1 9728 78140128+ 7 HPFS/NTFS

The NTFS is the giveaway that it is the Windows disk.

In order to access the Windows disk, issue the following two commands:
$ sudo mkdir /mnt/Win
$ sudo mount -v -t ntfs /dev/sda1 /mnt/Win

Note: if the device name on your computer is not /dev/sda1 as output from the fdisk -l command, then modify the above mount command accordingly.

That may only give you read only access to the Windows disk (ro) which should appear in the output of the mount command results using the -v parameter (verbose). DO NOT ATTEMPT TO WRITE TO THE WINDOWS DISK.

From there you need to do:
$ sudo pushd /mnt/Win
$ sudo ls

If you are going to recover your docs and want to copy them over to the external hard drive, that drive also needs to be mounted. Is it already formatted? If so, what format: Fat32, NTFS, Fat16? It might at least need to be formatted as Fat32.

To mount the external hard drive:
$ sudo mkdir /mnt/Extrn
$ sudo mount -v -t <filesytem type format> /dev/sdxx /mnt/Extrn

Then you can Move through the Win folders using an * for the space in a folder name, and issue a cp (copy command in Linux speak) from the Doc folder to the /mnt/Extrn mounted filesystem:

$ sudo cd /mnt/sda1/,,,
$ sudo cp -rp ./* /mnt/Extrn

The ... assumes you have located to the Doc folder by issuing several cd commands to get there after looking at the output of the ls command issued above just after the initial mount of the Windows disk.

The cp command will recursively copy all items and subfolds from the Doc folder to the mounted Extrn usb hard drive.

-- Tom
__________________
The independence created by philosophical insight is - in my opinion - the mark of distinction between a mere artisan or specialist and a real seeker after truth. - Einstein wrote in 1944.

Some say knowledge is power, I say knowledge without action is powerless. - lotuseclat79

Don't confuse action with movement. - Hemingway to Gardner

Imagination is more important than knowledge. - Einstein
fats_mat's Avatar
Computer Specs
Junior Member with 5 posts.
 
Join Date: Sep 2007
Location: Australia
Experience: Beginner
28-Sep-2007, 05:44 AM #5
Quote:
Originally Posted by lotuseclat79
In order to discover the identity of the device for your Windows disk, issue:
$ sudo fdisk -l
You might see something like:
Disk /dev/sda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/sda1 * 1 9728 78140128+ 7 HPFS/NTFS

The NTFS is the giveaway that it is the Windows disk.
When I type $ sudo fdisk -l all I get is >
What am I doing wrong?
lotuseclat79's Avatar
Distinguished Member with 10,037 posts.
 
Join Date: Sep 2003
Location: -71.45091, 42.27841
28-Sep-2007, 07:35 AM #6
Hi fats_mat,

Are you doing the sudo -fdisk -l command on a Linux system or a Windows?

Look at the Linux man page for fdisk by issuing the command:
$ man fdisk

The command: sudo fdisk -l (i.e. lower case L) Lists the partition tables for the specified devices and then exits. If no devices are given, those mentioned in /proc/partitions (if that exists) are used.

If you forgot the -l parameter, the fact that you are getting '>' (which is a prompt waiting for an internal fdisk command) seems likely.

Try again, but be advised, do not respond if you get the '>' by typing in an internal fdisk command. Kick out of the prompt level of fdisk with Ctrl-c (meaning hold down the Ctrl key and simultaneously press the 'c' key).

-- Tom
__________________
The independence created by philosophical insight is - in my opinion - the mark of distinction between a mere artisan or specialist and a real seeker after truth. - Einstein wrote in 1944.

Some say knowledge is power, I say knowledge without action is powerless. - lotuseclat79

Don't confuse action with movement. - Hemingway to Gardner

Imagination is more important than knowledge. - Einstein
Reply


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

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

You Are Using:
Server ID
Advertisements do not imply our endorsement of that product or service.
All times are GMT -4. The time now is 06:14 AM.
Copyright © 1996 - 2008 TechGuy, Inc. All rights reserved.
Powered by vBulletin, Copyright © 2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Powered by Cermak Technologies, Inc.