LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 11-09-2007, 10:39 PM   #1
aogborne
LQ Newbie
 
Registered: Nov 2007
Posts: 5

Rep: Reputation: 0
completely new, don't know how to use my external harddrive


I have feather linux on a CD. I am using to get files off of my laptop because windows crashed. I want to hook up my external hard drive so i can pull off files. Can you please be really descriptive because i am totally new to this and i don't kow where anythign is thanks for your help.

Aline
 
Old 11-09-2007, 11:20 PM   #2
Netgh0st
LQ Newbie
 
Registered: Apr 2006
Distribution: Slackware 11
Posts: 18

Rep: Reputation: 0
I dare say, what you would like to do is 'mount' your external hard drive. Two ways to do this, and I'm assuming you are using a gui ( like KDE or what not)?

The first way is going into your System directory, or Home / Storage Media ( or something similar). You want to right click on /sda1 and try to mount it.

The second way is going into terminal and mounting from there.
Code:
mount /dev/sda1
Try it, see how it flies. Hope it works, though I must address to you that I am indeed a novice.
---------------------------------------
When you load the live cd, you should see a Windows directory. Once you have the external harddrive mounted, you should be able to do some basic copying from that directory to your external hard drive's. *nod*

Last edited by Netgh0st; 11-09-2007 at 11:23 PM.
 
Old 11-12-2007, 12:52 AM   #3
aogborne
LQ Newbie
 
Registered: Nov 2007
Posts: 5

Original Poster
Rep: Reputation: 0
thanks Net for your post,

i couldn't go into home and find the sda1 file, also i tried mopunting it from the terminal, but i have to say i'm not exactly sure where the targeting is, ( i told you i'm new)i tried the command prompt thing and i used your code but it didn't find anythign it just said that there is no such folder. So any other help would be much appreciated. Thhis really sucks noty being able to get my files:S thanks guys for your help

Aline
 
Old 11-12-2007, 01:07 AM   #4
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
Run "dmesg | tail" after you plug the device in and show us the output.
 
Old 11-12-2007, 01:10 PM   #5
aogborne
LQ Newbie
 
Registered: Nov 2007
Posts: 5

Original Poster
Rep: Reputation: 0
When i put that in the command prompt thing, it came out [-c] [-n level] [-s bufsize]. Is that good?

Aline
 
Old 11-12-2007, 01:49 PM   #6
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
No. The middle character is a pipe, not a L or 1. See this for info. FWIW, the output you're seeing from dmesg is telling you how to use dmesg, i.e. what kinds of options you can pass to it. What the pipe character between the two commands does is to send the output of the one on the left to the one on the right as input. tail will print the last 10 lines or so.
 
Old 11-12-2007, 02:41 PM   #7
aogborne
LQ Newbie
 
Registered: Nov 2007
Posts: 5

Original Poster
Rep: Reputation: 0
ok thanks i retyped it properly and this is what it read,
i810: Intel ICH4 found at IO 0x18c0 and 0x1c00, MEM 0xe0100c00 and 0xe0100800, IRQ 17
i810: Intel ICH4 mmio at 0xdec1cc00 and 0xdec1e800
i810_audio: Primary codec has ID 0
i810_audio: Audio controller supports 6 channels
i810_audio: Defaulting to base 2 channel mode.
i810_audio: Resetting connection 0
i810_audio: Connection 0 with codedc id 0
ac97_codec: AC97 Audio codec, id: ADS116 (unknown)
i810_audio: AC'97 codec 0 supports AMAP, total channels = 2
b44: eth0: link is down.

i don't know what that means i hope you can tell me and how it relates to my extrenal hard drive. Thanks for all your time
 
Old 11-12-2007, 03:15 PM   #8
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
None of that relates to your hard drive, as you can probably tell. Did you run dmesg after plugging in the device?
 
Old 11-12-2007, 03:53 PM   #9
aogborne
LQ Newbie
 
Registered: Nov 2007
Posts: 5

Original Poster
Rep: Reputation: 0
yes i did right after i plugged it in i tried it a couple of times. what now?
 
Old 11-12-2007, 10:34 PM   #10
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
Post the complete output. Also try a different port.
 
Old 11-13-2007, 01:37 AM   #11
LlNUX
Member
 
Registered: Oct 2007
Location: Sydney, Australia
Distribution: Debian
Posts: 63

Rep: Reputation: 15
are you talking about usb drive?

how to mount usb drive in linux
 
Old 11-13-2007, 01:59 AM   #12
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
You could also monitor /var/log/messages as you plug in the external drive.

sudo tail -f /var/log/messages

You could also list the /dev/sd* devices before and after plugging in the drive. The drive will probably be the new device.
A) ls /dev/sd*
B) plug in the device
C) ls /dev/sd*

You also need to know the filesystem that the external drive has on it. Is it fat32 or ntfs? If it is ntfs, I don't know if feather linux has either "fuse" module support and the "ntfs-3g" package installed or the "ntfs" kernel module. If just the latter, I don't know if you will be able to write to the drive.

If it has ntfs-3g installed, and the external drive's partition is formatted with the NTFS filesystem, then you can mount it like (as root):

Code:
modprobe fuse
mount -t ntfs-3g </dev/sdX#> /mnt -o rw
if your device is /dev/sda1 then this would be
mount -t ntfs-3g /dev/sda1 /mnt -o rw
The device might be something like /dev/sdb1 or /dev/sdc1 depending on what is used for the external drive.
Since windows is broken, the filesystem of the windows partition might not be mountable. Are you able to read the Windows files already. If so then it was mounted.
 
  


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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
External harddrive and Linux hendoc Linux - General 2 10-19-2007 09:09 PM
external harddrive problems psycospaz Linux - Hardware 7 09-07-2006 09:55 PM
Installing on external harddrive bw3000 Linux - Newbie 2 01-22-2006 05:59 PM
External Harddrive cerealdaemon Linux - General 4 07-12-2005 08:33 PM
external harddrive scorpion777 Slackware 4 05-05-2004 02:22 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 11:28 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