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 |
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.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
|
01-20-2010, 02:54 PM
|
#1
|
LQ Newbie
Registered: Jan 2010
Posts: 11
Rep:
|
External Hard Drive Won't Mount
Straight to the point:
I am trying to recover files off a 3.5" IDE Hard Drive that had Windows ME installed on it. I have access to a MacBook, Windows XP Desktop PC, and a cd with Ubuntu 8.10 on it.
Attempts:
1) If I make the HD the only primary master HD it won't boot up.
2) If I make it a slave drive it won't boot up.
3) I purchased an external enclosure from Radio Shack which turned out to be crap and online reports supported this conclusion. I got nowhere with that thing. Bestbuy doesn't sell 3.5" IDE enclosures.
4) By using an IDE / SATA to USB kit, I am able to connect the HD to the PC via USB cable. XP will detect the drive, however the HD will not my displayed under "My Computer" nor "Disk Management".
Onto linux (this is where I grabbed the Ubuntu cd):
5) When connected, the HD will show up under "Computer" as a "USB Drive". When I double click on it I get the error "Unable to mount location Can't mount file".
Allow me to show you some commands I ran:
sudo fdisk -l
Code:
ubuntu@ubuntu:~$ sudo fdisk -l
Disk /dev/sda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0xdca7dca7
Device Boot Start End Blocks Id System
/dev/sda1 * 1 9728 78140128+ 7 HPFS/NTFS
sudo lsusb
Code:
ubuntu@ubuntu:~$ sudo lsusb
Bus 005 Device 002: ID 152d:2338 JMicron Technology Corp. / JMicron USA Technology Corp. JM20337 Hi-Speed USB to SATA & PATA Combo Bridge
Bus 005 Device 001: ID 0000:0000
Bus 004 Device 001: ID 0000:0000
Bus 003 Device 001: ID 0000:0000
Bus 002 Device 001: ID 0000:0000
Bus 001 Device 001: ID 0000:0000
sudo dmesg | tail
Code:
ubuntu@ubuntu:~$ sudo dmesg | tail
[ 143.626823] [drm] Initialized drm 1.1.0 20060810
[ 143.676818] ACPI: PCI Interrupt 0000:01:00.0[A] -> GSI 16 (level, low) -> IRQ 21
[ 143.677112] [drm] Initialized via 2.11.1 20070202 on minor 0
[ 143.685470] agpgart: Found an AGP 3.5 compliant device at 0000:00:00.0.
[ 143.685513] agpgart: Device is in legacy mode, falling back to 2.x
[ 143.685523] agpgart: Putting AGP V2 device at 0000:00:00.0 into 0x mode
[ 143.685619] agpgart: Putting AGP V2 device at 0000:01:00.0 into 0x mode
[ 145.487398] NET: Registered protocol family 10
[ 145.488470] lo: Disabled Privacy Extensions
[ 155.801176] eth0: no IPv6 routers present
Sorry for the long post. I HAVE searched this forum, ubuntu forums, and google and have yet to find the solution to this problem (that many people have had as well)
Thank you for any help you may provide!
|
|
|
01-20-2010, 04:31 PM
|
#2
|
Member
Registered: Feb 2009
Distribution: Debian, CentOS 5, Gentoo, FreeBSD, Fedora, Mint, Slackware64
Posts: 208
Rep:
|
Well, at first glance, it looks like you can see the disk (because you can fdisk it). So long as /dev/sda is the drive you are trying to work with. So, what I would do is bring up an xterm shell and try:
Code:
mkdir /tmp/mntplace
mount -t ntfs /dev/sda /tmp/mntplace
If you can mount it manually, see if you can see your data. It's possible that Ubuntu doesn't have ntfs support compiled in the CD kernel (but I doubt that). Anyway, from your other two listings, I'm not too sure that it has recognized the drive. Might want to look through the entire dmesg and see if it's recognizing the drive.
|
|
|
01-20-2010, 06:54 PM
|
#3
|
LQ Newbie
Registered: Jan 2010
Posts: 11
Original Poster
Rep:
|
Quote:
Originally Posted by nuwen52
Well, at first glance, it looks like you can see the disk (because you can fdisk it). So long as /dev/sda is the drive you are trying to work with. So, what I would do is bring up an xterm shell and try:
Code:
mkdir /tmp/mntplace
mount -t ntfs /dev/sda /tmp/mntplace
If you can mount it manually, see if you can see your data. It's possible that Ubuntu doesn't have ntfs support compiled in the CD kernel (but I doubt that). Anyway, from your other two listings, I'm not too sure that it has recognized the drive. Might want to look through the entire dmesg and see if it's recognizing the drive.
|
Unfortunately the drive showing up in fdisk is the internal drive. I'm trying to get my files out of the external drive. I post the dmesg in a little while.
|
|
|
01-20-2010, 07:19 PM
|
#4
|
LQ Newbie
Registered: Jan 2010
Posts: 11
Original Poster
Rep:
|
Quote:
Originally Posted by nuwen52
Well, at first glance, it looks like you can see the disk (because you can fdisk it). So long as /dev/sda is the drive you are trying to work with. So, what I would do is bring up an xterm shell and try:
Code:
mkdir /tmp/mntplace
mount -t ntfs /dev/sda /tmp/mntplace
If you can mount it manually, see if you can see your data. It's possible that Ubuntu doesn't have ntfs support compiled in the CD kernel (but I doubt that). Anyway, from your other two listings, I'm not too sure that it has recognized the drive. Might want to look through the entire dmesg and see if it's recognizing the drive.
|
sudo dmesg
Code:
[ 0.000000] Enabling fast FPU save and restore... done.
[ 0.000000] Enabling unmasked SIMD FPU exception support... done.
[ 0.000000] Initializing CPU#0
[ 0.000000] PID hash table entries: 4096 (order: 12, 16384 bytes)
[ 0.000000] Detected 2296.314 MHz processor.
[ 32.840136] Console: colour VGA+ 80x25
[ 32.840142] console [tty0] enabled
[ 32.840953] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[ 32.843013] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 32.877585] Memory: 962184k/982976k available (2177k kernel code, 20284k reserved, 1006k data, 368k init, 65472k highmem)
[ 32.877599] virtual kernel memory layout:
[ 32.877600] fixmap : 0xfff4b000 - 0xfffff000 ( 720 kB)
[ 32.877601] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
[ 32.877603] vmalloc : 0xf8800000 - 0xff7fe000 ( 111 MB)
[ 32.877604] lowmem : 0xc0000000 - 0xf8000000 ( 896 MB)
[ 32.877605] .init : 0xc0421000 - 0xc047d000 ( 368 kB)
[ 32.877606] .data : 0xc0320434 - 0xc041bdc4 (1006 kB)
[ 32.877607] .text : 0xc0100000 - 0xc0320434 (2177 kB)
[ 32.877612] Checking if this processor honours the WP bit even in supervisor mode... Ok.
[ 32.877692] SLUB: Genslabs=11, HWalign=64, Order=0-1, MinObjects=4, CPUs=1, Nodes=1
[ 32.957560] Calibrating delay using timer specific routine.. 4598.85 BogoMIPS (lpj=9197715)
[ 32.957610] Security Framework initialized
[ 32.957621] SELinux: Disabled at boot.
[ 32.957647] AppArmor: AppArmor initialized
[ 32.957655] Failure registering capabilities with primary security module.
[ 32.957669] Mount-cache hash table entries: 512
[ 32.957909] Initializing cgroup subsys ns
[ 32.957920] Initializing cgroup subsys cpuacct
[ 32.957940] CPU: After generic identify, caps: bfebfbff 00000000 00000000 00000000 00004400 00000000 00000000 00000000
[ 32.957958] CPU: Trace cache: 12K uops, L1 D cache: 8K
[ 32.957961] CPU: L2 cache: 128K
[ 32.957965] CPU: Hyper-Threading is disabled
[ 32.957969] CPU: After all inits, caps: bfebfbff 00000000 00000000 0000b080 00004400 00000000 00000000 00000000
[ 32.957984] Compat vDSO mapped to ffffe000.
[ 32.958009] Checking 'hlt' instruction... OK.
[ 32.974093] SMP alternatives: switching to UP code
[ 32.976360] Freeing SMP alternatives: 11k freed
[ 32.976562] Early unpacking initramfs... done
[ 33.416645] ACPI: Core revision 20070126
[ 33.416729] ACPI: Looking for DSDT in initramfs... error, file /DSDT.aml not found.
[ 33.422096] CPU0: Intel(R) Celeron(R) CPU 2.30GHz stepping 07
[ 33.422154] Total of 1 processors activated (4598.85 BogoMIPS).
[ 33.422917] ENABLING IO-APIC IRQs
[ 33.423256] ..TIMER: vector=0x31 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 33.568413] Brought up 1 CPUs
[ 33.568487] CPU0 attaching sched-domain:
[ 33.568492] domain 0: span 01
[ 33.568494] groups: 01
[ 33.569009] net_namespace: 64 bytes
[ 33.569025] Booting paravirtualized kernel on bare hardware
[ 33.569925] Time: 0:27:26 Date: 01/01/03
[ 33.569985] NET: Registered protocol family 16
[ 33.570953] EISA bus registered
[ 33.571009] ACPI: bus type pci registered
[ 33.578578] PCI: PCI BIOS revision 2.10 entry at 0xfbb80, last bus=1
[ 33.578583] PCI: Using configuration type 1
[ 33.578604] Setting up standard PCI resources
[ 33.592172] ACPI: EC: Look up EC in DSDT
[ 33.599250] ACPI: Interpreter enabled
[ 33.599261] ACPI: (supports S0 S1 S4 S5)
[ 33.599291] ACPI: Using IOAPIC for interrupt routing
[ 33.615235] ACPI: PCI Root Bridge [PCI0] (0000:00)
[ 33.617003] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 33.675498] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 6 7 *10 11 12)
[ 33.675772] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 6 7 10 *11 12)
[ 33.676086] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 6 7 10 11 12) *5
[ 33.676359] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 6 7 10 11 12) *0, disabled.
[ 33.676610] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 6 7 10 11 12) *0, disabled.
[ 33.676852] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 6 7 10 11 12) *0, disabled.
[ 33.677098] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 6 7 10 11 12) *0, disabled.
[ 33.677340] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 6 7 10 11 12) *0, disabled.
[ 33.677668] ACPI: PCI Interrupt Link [ALKA] (IRQs 20) *11
[ 33.677934] ACPI: PCI Interrupt Link [ALKB] (IRQs *21)
[ 33.678185] ACPI: PCI Interrupt Link [ALKC] (IRQs *22)
[ 33.678469] ACPI: PCI Interrupt Link [ALKD] (IRQs *23)
[ 33.678937] Linux Plug and Play Support v0.97 (c) Adam Belay
[ 33.679090] pnp: PnP ACPI init
[ 33.679113] ACPI: bus type pnp registered
[ 33.687344] pnp: PnP ACPI: found 13 devices
[ 33.687353] ACPI: ACPI bus type pnp unregistered
[ 33.687359] PnPBIOS: Disabled by ACPI PNP
[ 33.688550] PCI: Using ACPI for IRQ routing
[ 33.688558] PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report
[ 33.763882] NET: Registered protocol family 8
[ 33.763887] NET: Registered protocol family 20
[ 33.764128] AppArmor: AppArmor Filesystem Enabled
[ 33.767843] Time: tsc clocksource has been installed.
[ 33.776020] system 00:00: iomem range 0xd0000-0xd3fff has been reserved
[ 33.776025] system 00:00: iomem range 0xf0000-0xf7fff could not be reserved
[ 33.776029] system 00:00: iomem range 0xf8000-0xfbfff could not be reserved
[ 33.776032] system 00:00: iomem range 0xfc000-0xfffff could not be reserved
[ 33.776035] system 00:00: iomem range 0x3bff0000-0x3bffffff could not be reserved
[ 33.776040] system 00:00: iomem range 0xffff0000-0xffffffff could not be reserved
[ 33.776044] system 00:00: iomem range 0x0-0x9ffff could not be reserved
[ 33.776047] system 00:00: iomem range 0x100000-0x3bfeffff could not be reserved
[ 33.776050] system 00:00: iomem range 0xfec00000-0xfec00fff could not be reserved
[ 33.776053] system 00:00: iomem range 0xfee00000-0xfee00fff could not be reserved
[ 33.776057] system 00:00: iomem range 0xfff80000-0xfffeffff could not be reserved
[ 33.776072] system 00:02: ioport range 0x400-0x47f has been reserved
[ 33.776075] system 00:02: ioport range 0x500-0x50f has been reserved
[ 33.776085] system 00:03: ioport range 0x4d0-0x4d1 has been reserved
[ 33.776088] system 00:03: ioport range 0x800-0x805 has been reserved
[ 33.807861] PCI: Bridge: 0000:00:01.0
[ 33.807867] IO window: disabled.
[ 33.807874] MEM window: dc000000-ddffffff
[ 33.807880] PREFETCH window: d8000000-dbffffff
[ 33.807906] PCI: Setting latency timer of device 0000:00:01.0 to 64
[ 33.807932] NET: Registered protocol family 2
[ 33.847808] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[ 33.848320] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[ 33.850020] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[ 33.850903] TCP: Hash tables configured (established 131072 bind 65536)
[ 33.850910] TCP reno registered
[ 33.859901] checking if image is initramfs... it is
[ 34.310700] Switched to high resolution mode on CPU 0
[ 34.668061] Freeing initrd memory: 7667k freed
[ 34.670031] audit: initializing netlink socket (disabled)
[ 34.670058] audit(1041380846.692:1): initialized
[ 34.670407] highmem bounce pool size: 64 pages
[ 34.676854] VFS: Disk quotas dquot_6.5.1
[ 34.677101] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 34.677498] io scheduler noop registered
[ 34.677504] io scheduler anticipatory registered
[ 34.677507] io scheduler deadline registered
[ 34.677549] io scheduler cfq registered (default)
[ 34.677572] PCI: VIA PCI bridge detected. Disabling DAC.
[ 34.677659] PCI: Bypassing VIA 8237 APIC De-Assert Message
[ 34.677671] Boot video device is 0000:01:00.0
[ 34.678851] isapnp: Scanning for PnP cards...
[ 35.032432] isapnp: No Plug & Play device found
[ 35.248917] Real Time Clock Driver v1.12ac
[ 35.249269] Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
[ 35.249542] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 35.252357] 00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 35.253143] ACPI: PCI Interrupt 0000:00:0a.0[A] -> GSI 18 (level, low) -> IRQ 16
[ 35.259438] 0000:00:0a.0: ttyS1 at I/O 0x9028 (irq = 16) is a 8250
[ 35.262880] 0000:00:0a.0: ttyS2 at I/O 0x9040 (irq = 16) is a 8250
[ 35.265165] 0000:00:0a.0: ttyS3 at I/O 0x9050 (irq = 16) is a 8250
[ 35.265577] Couldn't register serial port 0000:00:0a.0: -28
[ 35.268114] RAMDISK driver initialized: 16 RAM disks of 65536K size 1024 blocksize
[ 35.268326] input: Macintosh mouse button emulation as /devices/virtual/input/input0
[ 35.268798] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 35.269449] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 35.269460] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 35.277030] mice: PS/2 mouse device common for all mice
[ 35.277561] EISA: Probing bus 0 at eisa.0
[ 35.277603] EISA: Detected 0 cards.
[ 35.277608] cpuidle: using governor ladder
[ 35.277611] cpuidle: using governor menu
[ 35.277780] NET: Registered protocol family 1
[ 35.277841] Using IPI No-Shortcut mode
[ 35.277916] registered taskstats version 1
[ 35.278091] Magic number: 3:962:454
[ 35.278309] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 35.278312] EDD information not available.
[ 35.278873] Freeing unused kernel memory: 368k freed
[ 35.316624] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[ 36.781125] fuse init (API version 7.9)
[ 36.820782] ACPI: Fan [FAN] (on)
[ 36.833966] ACPI Exception (processor_core-0816): AE_NOT_FOUND, Processor Device is not present [20070126]
[ 36.836628] ACPI: Thermal Zone [THRM] (40 C)
[ 38.130919] SCSI subsystem initialized
[ 38.200401] usbcore: registered new interface driver usbfs
[ 38.200451] usbcore: registered new interface driver hub
[ 38.234348] usbcore: registered new device driver usb
[ 38.270243] USB Universal Host Controller Interface driver v3.0
[ 38.270727] ACPI: PCI Interrupt Link [ALKB] enabled at IRQ 21
[ 38.270742] ACPI: PCI Interrupt 0000:00:10.0[A] -> Link [ALKB] -> GSI 21 (level, low) -> IRQ 17
[ 38.270763] uhci_hcd 0000:00:10.0: UHCI Host Controller
[ 38.271483] uhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 1
[ 38.271539] uhci_hcd 0000:00:10.0: irq 17, io base 0x0000b000
[ 38.271789] usb usb1: configuration #1 chosen from 1 choice
[ 38.271845] hub 1-0:1.0: USB hub found
[ 38.271859] hub 1-0:1.0: 2 ports detected
[ 38.290162] libata version 3.00 loaded.
[ 38.351858] via-rhine.c:v1.10-LK1.4.3 2007-03-06 Written by Donald Becker
[ 38.351869] via-rhine: Broken BIOS detected, avoid_D3 enabled.
[ 38.374235] ACPI: PCI Interrupt 0000:00:10.1[A] -> Link [ALKB] -> GSI 21 (level, low) -> IRQ 17
[ 38.374260] uhci_hcd 0000:00:10.1: UHCI Host Controller
[ 38.374327] uhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 2
[ 38.374363] uhci_hcd 0000:00:10.1: irq 17, io base 0x0000b400
[ 38.374569] usb usb2: configuration #1 chosen from 1 choice
[ 38.374619] hub 2-0:1.0: USB hub found
[ 38.374636] hub 2-0:1.0: 2 ports detected
[ 38.477969] ACPI: PCI Interrupt 0000:00:10.2[B] -> Link [ALKB] -> GSI 21 (level, low) -> IRQ 17
[ 38.477996] uhci_hcd 0000:00:10.2: UHCI Host Controller
[ 38.478063] uhci_hcd 0000:00:10.2: new USB bus registered, assigned bus number 3
[ 38.478100] uhci_hcd 0000:00:10.2: irq 17, io base 0x0000b800
[ 38.478323] usb usb3: configuration #1 chosen from 1 choice
[ 38.478388] hub 3-0:1.0: USB hub found
[ 38.478406] hub 3-0:1.0: 2 ports detected
[ 38.581760] ACPI: PCI Interrupt 0000:00:10.3[B] -> Link [ALKB] -> GSI 21 (level, low) -> IRQ 17
[ 38.581786] uhci_hcd 0000:00:10.3: UHCI Host Controller
[ 38.581854] uhci_hcd 0000:00:10.3: new USB bus registered, assigned bus number 4
[ 38.581891] uhci_hcd 0000:00:10.3: irq 17, io base 0x0000bc00
[ 38.582101] usb usb4: configuration #1 chosen from 1 choice
[ 38.582162] hub 4-0:1.0: USB hub found
[ 38.582178] hub 4-0:1.0: 2 ports detected
[ 38.590657] Floppy drive(s): fd0 is 1.44M
[ 38.611761] FDC 0 is a post-1991 82077
[ 38.613475] usb 1-1: new full speed USB device using uhci_hcd and address 2
[ 38.685785] ACPI: PCI Interrupt 0000:00:10.4[C] -> Link [ALKB] -> GSI 21 (level, low) -> IRQ 17
[ 38.685816] ehci_hcd 0000:00:10.4: EHCI Host Controller
[ 38.685893] ehci_hcd 0000:00:10.4: new USB bus registered, assigned bus number 5
[ 38.685959] ehci_hcd 0000:00:10.4: irq 17, io mem 0xde001000
[ 38.741213] ehci_hcd 0000:00:10.4: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
[ 38.741423] usb usb5: configuration #1 chosen from 1 choice
[ 38.741478] hub 5-0:1.0: USB hub found
[ 38.741494] hub 5-0:1.0: 8 ports detected
[ 38.849887] ACPI: PCI Interrupt Link [ALKD] enabled at IRQ 23
[ 38.849904] ACPI: PCI Interrupt 0000:00:12.0[A] -> Link [ALKD] -> GSI 23 (level, low) -> IRQ 18
[ 38.855456] eth0: VIA Rhine II at 0xde002000, 00:11:5b:e1:e9:17, IRQ 18.
[ 38.856171] eth0: MII PHY found at address 1, status 0x786d advertising 01e1 Link 41e1.
[ 38.858494] ACPI: PCI Interrupt Link [ALKA] BIOS reported IRQ 11, using IRQ 20
[ 38.858502] ACPI: PCI Interrupt Link [ALKA] enabled at IRQ 20
[ 38.858514] ACPI: PCI Interrupt 0000:00:0f.0[B] -> Link [ALKA] -> GSI 20 (level, low) -> IRQ 19
[ 38.858611] ACPI: PCI interrupt for device 0000:00:0f.0 disabled
[ 38.858681] ACPI: PCI Interrupt 0000:00:0f.1[A] -> Link [ALKA] -> GSI 20 (level, low) -> IRQ 19
[ 38.858750] ACPI: PCI interrupt for device 0000:00:0f.1 disabled
[ 38.865694] sata_via 0000:00:0f.0: version 2.3
[ 38.865729] ACPI: PCI Interrupt 0000:00:0f.0[B] -> Link [ALKA] -> GSI 20 (level, low) -> IRQ 19
[ 38.865800] sata_via 0000:00:0f.0: routed to hard irq line 11
[ 38.875424] scsi0 : sata_via
[ 38.879054] scsi1 : sata_via
[ 38.879169] ata1: SATA max UDMA/133 cmd 0x9400 ctl 0x9800 bmdma 0xa400 irq 19
[ 38.879173] ata2: SATA max UDMA/133 cmd 0x9c00 ctl 0xa000 bmdma 0xa408 irq 19
[ 39.080481] ata1: SATA link down 1.5 Gbps (SStatus 0 SControl 300)
[ 39.136323] usb 1-1: device not accepting address 2, error -71
[ 39.292024] ata2: SATA link down 1.5 Gbps (SStatus 0 SControl 300)
[ 39.303171] pata_via 0000:00:0f.1: version 0.3.3
[ 39.303219] ACPI: PCI Interrupt 0000:00:0f.1[A] -> Link [ALKA] -> GSI 20 (level, low) -> IRQ 19
[ 39.305408] scsi2 : pata_via
[ 39.306319] scsi3 : pata_via
[ 39.308319] ata3: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xac00 irq 14
[ 39.308325] ata4: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xac08 irq 15
[ 39.472986] ata3.00: ATA-5: WDC WD800AB-00CBA1, 04.07B04, max UDMA/100
[ 39.472992] ata3.00: 156301488 sectors, multi 16: LBA
[ 39.488778] ata3.00: configured for UDMA/100
[ 39.807302] ata4.00: ATAPI: LITE-ON LTR-48246S, STS1, max UDMA/33
[ 39.970793] ata4.00: configured for UDMA/33
[ 39.971043] scsi 2:0:0:0: Direct-Access ATA WDC WD800AB-00CB 04.0 PQ: 0 ANSI: 5
[ 39.971765] scsi 3:0:0:0: CD-ROM LITE-ON LTR-48246S STS1 PQ: 0 ANSI: 5
[ 40.161226] Driver 'sd' needs updating - please use bus_type methods
[ 40.161408] sd 2:0:0:0: [sda] 156301488 512-byte hardware sectors (80026 MB)
[ 40.161449] sd 2:0:0:0: [sda] Write Protect is off
[ 40.161454] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 40.161517] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 40.161646] sd 2:0:0:0: [sda] 156301488 512-byte hardware sectors (80026 MB)
[ 40.161685] sd 2:0:0:0: [sda] Write Protect is off
[ 40.161689] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 40.161752] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 40.161761] sda:<4>Driver 'sr' needs updating - please use bus_type methods
[ 40.180987] sda1
[ 40.181127] sd 2:0:0:0: [sda] Attached SCSI disk
[ 40.191378] sr0: scsi3-mmc drive: 32x/40x writer cd/rw xa/form2 cdda tray
[ 40.191387] Uniform CD-ROM driver Revision: 3.20
[ 40.191484] sr 3:0:0:0: Attached scsi CD-ROM sr0
[ 40.193124] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 40.193168] sr 3:0:0:0: Attached scsi generic sg1 type 5
[ 40.329757] usb 5-1: new high speed USB device using ehci_hcd and address 2
[ 40.463325] usb 5-1: configuration #1 chosen from 1 choice
[ 40.490583] usbcore: registered new interface driver libusual
[ 40.502348] Initializing USB Mass Storage driver...
[ 40.504430] scsi4 : SCSI emulation for USB Mass Storage devices
[ 40.505422] usbcore: registered new interface driver usb-storage
[ 40.505431] USB Mass Storage support registered.
[ 40.505700] usb-storage: device found at 2
[ 40.505705] usb-storage: waiting for device to settle before scanning
[ 44.149494]
[ 44.149502] floppy driver state
[ 44.149504] -------------------
[ 44.149508] now=4294895094 last interrupt=4294894259 diff=835 last called handler=f8923340
[ 44.149511] timeout_message=floppy start
[ 44.149513] last output bytes:
[ 44.149516] 0 90 4294894259
[ 44.149518] 1a 90 4294894259
[ 44.149520] 0 90 4294894259
[ 44.149522] 3 90 4294894259
[ 44.149525] c1 90 4294894259
[ 44.149527] 10 90 4294894259
[ 44.149529] 7 80 4294894259
[ 44.149531] 0 90 4294894259
[ 44.149533] 8 81 4294894259
[ 44.149535] 4 80 4294894259
[ 44.149537] 0 90 4294894259
[ 44.149540] e6 80 4294894349
[ 44.149542] 0 90 4294894349
[ 44.149544] 0 90 4294894349
[ 44.149546] 0 90 4294894349
[ 44.149548] 1 90 4294894349
[ 44.149550] 2 90 4294894349
[ 44.149552] 12 90 4294894349
[ 44.149554] 1b 90 4294894349
[ 44.149557] ff 90 4294894349
[ 44.149559] last result at 4294894259
[ 44.149561] last redo_fd_request at 4294894254
[ 44.149563] 38
[ 44.149575] status=50
[ 44.149577] fdc_busy=1
[ 44.149579] do_floppy=f891eb90
[ 44.149581] fd_timer.function=f891fa70
[ 44.149583] cont=f8928f54
[ 44.149585] current_req=f7f9d240
[ 44.149587] command_status=-1
[ 44.149588]
[ 44.149593] floppy0: floppy timeout called
[ 44.149599] end_request: I/O error, dev fd0, sector 0
[ 45.494869] usb-storage: device scan complete
[ 45.495701] scsi 4:0:0:0: Direct-Access PQ: 0 ANSI: 2 CCS
[ 45.505198] sd 4:0:0:0: [sdb] Attached SCSI disk
[ 45.505285] sd 4:0:0:0: Attached scsi generic sg2 type 0
[ 47.143051]
[ 47.143059] floppy driver state
[ 47.143061] -------------------
[ 47.143065] now=4294895844 last interrupt=4294895094 diff=750 last called handler=f8923340
[ 47.143069] timeout_message=floppy start
[ 47.143070] last output bytes:
[ 47.143073] 0 90 4294895094
[ 47.143075] 13 90 4294895094
[ 47.143077] 0 90 4294895094
[ 47.143079] 1a 90 4294895094
[ 47.143081] 0 90 4294895094
[ 47.143083] 3 90 4294895094
[ 47.143085] c1 90 4294895094
[ 47.143088] 10 90 4294895094
[ 47.143090] 7 80 4294895094
[ 47.143092] 0 90 4294895094
[ 47.143094] 8 81 4294895094
[ 47.143096] e6 80 4294895094
[ 47.143098] 0 90 4294895094
[ 47.143100] 0 90 4294895094
[ 47.143102] 0 90 4294895094
[ 47.143104] 1 90 4294895094
[ 47.143106] 2 90 4294895094
[ 47.143108] 12 90 4294895094
[ 47.143110] 1b 90 4294895094
[ 47.143112] ff 90 4294895094
[ 47.143114] last result at 4294895094
[ 47.143116] last redo_fd_request at 4294895094
[ 47.143118] 20 0
[ 47.143131] status=50
[ 47.143132] fdc_busy=1
[ 47.143134] do_floppy=f891eb90
[ 47.143136] fd_timer.function=f891fa70
[ 47.143138] cont=f8928f54
[ 47.143140] current_req=f7f9d000
[ 47.143142] command_status=-1
[ 47.143143]
[ 47.143149] floppy0: floppy timeout called
[ 47.143155] end_request: I/O error, dev fd0, sector 0
[ 47.143163] Buffer I/O error on device fd0, logical block 0
[ 50.136610]
[ 50.136618] floppy driver state
[ 50.136619] -------------------
[ 50.136623] now=4294896594 last interrupt=4294895844 diff=750 last called handler=f8923340
[ 50.136626] timeout_message=floppy start
[ 50.136628] last output bytes:
[ 50.136630] 0 90 4294895844
[ 50.136633] 13 80 4294895844
[ 50.136635] 0 90 4294895844
[ 50.136637] 1a 90 4294895844
[ 50.136638] 0 90 4294895844
[ 50.136640] 3 90 4294895844
[ 50.136642] c1 90 4294895844
[ 50.136644] 10 90 4294895844
[ 50.136646] 7 80 4294895844
[ 50.136648] 0 90 4294895844
[ 50.136650] 8 81 4294895844
[ 50.136652] e6 80 4294895844
[ 50.136654] 0 90 4294895844
[ 50.136656] 0 90 4294895844
[ 50.136658] 0 90 4294895844
[ 50.136660] 1 90 4294895844
[ 50.136662] 2 90 4294895844
[ 50.136664] 12 90 4294895844
[ 50.136666] 1b 90 4294895844
[ 50.136668] ff 90 4294895844
[ 50.136670] last result at 4294895844
[ 50.136672] last redo_fd_request at 4294895844
[ 50.136674] 20 0
[ 50.136686] status=50
[ 50.136687] fdc_busy=1
[ 50.136689] do_floppy=f891eb90
[ 50.136691] fd_timer.function=f891fa70
[ 50.136693] cont=f8928f54
[ 50.136695] current_req=df9ca0c0
[ 50.136697] command_status=-1
[ 50.136698]
[ 50.136704] floppy0: floppy timeout called
[ 50.136709] end_request: I/O error, dev fd0, sector 0
[ 50.136716] Buffer I/O error on device fd0, logical block 0
[ 50.928780] ISO 9660 Extensions: Microsoft Joliet Level 3
[ 50.948925] ISO 9660 Extensions: RRIP_1991A
[ 51.184165] Registering unionfs 1.4
[ 51.184171] unionfs: debugging is not enabled
[ 51.210116] loop: module loaded
[ 51.492379] squashfs: version 3.3 (2007/10/31) Phillip Lougher
[ 110.486795] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 110.528092] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 110.577622] Linux agpgart interface v0.102
[ 111.287363] agpgart: Detected VIA PM800/PN800/PM880/PN880 chipset
[ 111.300837] agpgart: AGP aperture is 128M @ 0xd0000000
[ 112.052239] input: Power Button (FF) as /devices/virtual/input/input2
[ 112.063424] ACPI: Power Button (FF) [PWRF]
[ 112.063577] input: Power Button (CM) as /devices/virtual/input/input3
[ 112.079366] ACPI: Power Button (CM) [PWRB]
[ 112.079526] input: Sleep Button (CM) as /devices/virtual/input/input4
[ 112.095335] ACPI: Sleep Button (CM) [SLPB]
[ 114.561327] ACPI: PCI Interrupt Link [ALKC] enabled at IRQ 22
[ 114.561345] ACPI: PCI Interrupt 0000:00:11.5[C] -> Link [ALKC] -> GSI 22 (level, low) -> IRQ 20
[ 114.561514] PCI: Setting latency timer of device 0000:00:11.5 to 64
[ 114.715128] input: PC Speaker as /devices/platform/pcspkr/input/input5
[ 115.204800] input: ImPS/2 Logitech Wheel Mouse as /devices/platform/i8042/serio1/input/input6
[ 115.660480] parport_pc 00:0a: reported by Plug and Play ACPI
[ 115.660565] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA]
[ 121.548696] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 124.979768] No dock devices found.
[ 129.516353] apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac)
[ 129.516363] apm: overridden by ACPI.
[ 129.696266] lp0: using parport0 (interrupt-driven).
[ 129.772620] ppdev: user-space parallel port driver
[ 135.816705] eth0: link up, 100Mbps, full-duplex, lpa 0x41E1
[ 136.259217] Bluetooth: Core ver 2.11
[ 136.260674] NET: Registered protocol family 31
[ 136.260685] Bluetooth: HCI device and connection manager initialized
[ 136.260692] Bluetooth: HCI socket layer initialized
[ 136.335236] Bluetooth: L2CAP ver 2.9
[ 136.335247] Bluetooth: L2CAP socket layer initialized
[ 136.579297] Bluetooth: RFCOMM socket layer initialized
[ 136.579331] Bluetooth: RFCOMM TTY layer initialized
[ 136.579334] Bluetooth: RFCOMM ver 1.8
[ 139.091719] NET: Registered protocol family 17
[ 142.115275] [drm] Initialized drm 1.1.0 20060810
[ 142.159649] ACPI: PCI Interrupt 0000:01:00.0[A] -> GSI 16 (level, low) -> IRQ 21
[ 142.159933] [drm] Initialized via 2.11.1 20070202 on minor 0
[ 142.168148] agpgart: Found an AGP 3.5 compliant device at 0000:00:00.0.
[ 142.168192] agpgart: Device is in legacy mode, falling back to 2.x
[ 142.168201] agpgart: Putting AGP V2 device at 0000:00:00.0 into 0x mode
[ 142.168297] agpgart: Putting AGP V2 device at 0000:01:00.0 into 0x mode
[ 143.939559] NET: Registered protocol family 10
[ 143.940574] lo: Disabled Privacy Extensions
[ 154.045054] eth0: no IPv6 routers present
I don't know how to make the terminal show me all of the results of the command. I scroll all the way up on the terminal and it doesn't display the original command like it usually does.
|
|
|
01-20-2010, 08:03 PM
|
#5
|
Member
Registered: Oct 2009
Location: England
Distribution: Kubuntu, Ubuntu, Debian, Proxmox.
Posts: 553
Rep: 
|
"mount -t ntfs /dev/sda /tmp/mntplace"
That should be /dev/sda1.
And does Windows ME even use ntfs? I think it uses vfat.
|
|
|
01-20-2010, 08:35 PM
|
#6
|
LQ Newbie
Registered: Jan 2010
Posts: 11
Original Poster
Rep:
|
Quote:
Originally Posted by cantab
"mount -t ntfs /dev/sda /tmp/mntplace"
That should be /dev/sda1.
And does Windows ME even use ntfs? I think it uses vfat.
|
sudo mount -t ntfs /dev/sda /tmp/mntplace
Code:
root@ubuntu:/home/ubuntu# sudo mount -t ntfs /dev/sda /tmp/mntplace
NTFS signature is missing.
Failed to mount '/dev/sda': Invalid argument
The device '/dev/sda' doesn't have a valid NTFS.
Maybe you selected the wrong device? Or the whole disk instead of a
partition (e.g. /dev/hda, not /dev/hda1)? Or the other way around?
|
|
|
01-20-2010, 09:10 PM
|
#7
|
Senior Member
Registered: Sep 2003
Location: UK
Distribution: Debian
Posts: 1,215
Rep:
|
Quote:
Originally Posted by jo_smithey
sudo mount -t ntfs /dev/sda /tmp/mntplace
Code:
root@ubuntu:/home/ubuntu# sudo mount -t ntfs /dev/sda /tmp/mntplace
NTFS signature is missing.
Failed to mount '/dev/sda': Invalid argument
The device '/dev/sda' doesn't have a valid NTFS.
Maybe you selected the wrong device? Or the whole disk instead of a
partition (e.g. /dev/hda, not /dev/hda1)? Or the other way around?
|
I have just looked at this thread now and do not fully follow. But it looks like the above poster is right and ME does not us NTFS. So just change things to
Code:
sudo mount -t vfat /dev/sda /tmp/mntplace
and is there something above about it should be /dev/sda1?? Like the error message says /dev/sda sounds like the whole disk, not a partition. Try variations. Try this:
Code:
sudo mkdir /mnt/myDrive
sudo mount -t vfat /dev/hda1 /mnt/myDrive
cd /mnt/myDrive
ls
|
|
|
01-20-2010, 09:44 PM
|
#8
|
LQ Newbie
Registered: Jan 2010
Posts: 11
Original Poster
Rep:
|
before plugging in USB adapter,
sudo dmesg | tail
Code:
root@ubuntu:/home/ubuntu# sudo dmesg | tail
[ 169.978020] [drm] Initialized drm 1.1.0 20060810
[ 170.021987] ACPI: PCI Interrupt 0000:01:00.0[A] -> GSI 16 (level, low) -> IRQ 21
[ 170.022260] [drm] Initialized via 2.11.1 20070202 on minor 0
[ 170.030489] agpgart: Found an AGP 3.5 compliant device at 0000:00:00.0.
[ 170.030531] agpgart: Device is in legacy mode, falling back to 2.x
[ 170.030540] agpgart: Putting AGP V2 device at 0000:00:00.0 into 0x mode
[ 170.030628] agpgart: Putting AGP V2 device at 0000:01:00.0 into 0x mode
[ 171.033157] NET: Registered protocol family 10
[ 171.034148] lo: Disabled Privacy Extensions
[ 181.959916] eth0: no IPv6 routers present
after plugging in USB adapter,
sudo dmesg
Code:
[ 569.145240] usb 5-4: new high speed USB device using ehci_hcd and address 2
[ 569.278989] usb 5-4: configuration #1 chosen from 1 choice
[ 573.691117] usbcore: registered new interface driver libusual
[ 573.753087] Initializing USB Mass Storage driver...
[ 573.770448] scsi4 : SCSI emulation for USB Mass Storage devices
[ 573.778474] usbcore: registered new interface driver usb-storage
[ 573.779003] USB Mass Storage support registered.
[ 573.780454] usb-storage: device found at 2
[ 573.780465] usb-storage: waiting for device to settle before scanning
[ 578.768660] usb-storage: device scan complete
[ 578.769736] scsi 4:0:0:0: Direct-Access PQ: 0 ANSI: 2 CCS
[ 578.784697] sd 4:0:0:0: [sdb] Attached SCSI disk
[ 578.784815] sd 4:0:0:0: Attached scsi generic sg2 type 0
|
|
|
01-20-2010, 09:50 PM
|
#9
|
LQ Newbie
Registered: Jan 2010
Posts: 11
Original Poster
Rep:
|
Quote:
Originally Posted by lugoteehalt
I have just looked at this thread now and do not fully follow. But it looks like the above poster is right and ME does not us NTFS. So just change things to
Code:
sudo mount -t vfat /dev/sda /tmp/mntplace
and is there something above about it should be /dev/sda1?? Like the error message says /dev/sda sounds like the whole disk, not a partition. Try variations. Try this:
Code:
sudo mkdir /mnt/myDrive
sudo mount -t vfat /dev/hda1 /mnt/myDrive
cd /mnt/myDrive
ls
|
sudo mount -t vfat /dev/sda /tmp/mntplace
Code:
mount: mount point /tmp/mntplace does not exist
sudo mkdir /mnt/myDrive
sudo mount -t vfat /dev/hda1 /mnt/myDrive
Code:
mount: special device /dev/hda1 does not exist
cd /mnt/myDrive
ls
no results
|
|
|
01-20-2010, 10:07 PM
|
#10
|
Member
Registered: Oct 2009
Location: England
Distribution: Kubuntu, Ubuntu, Debian, Proxmox.
Posts: 553
Rep: 
|
Try the following
This gives you a list of disks and partitions, in a form that makes it easy to identify which each one is. Assuming you know the make of the hard drive you are trying to recover (and model if you have others of the same make), it should be easy to spot the right one. Then you can try and mount it with
Code:
mount -t vfat /dev/disk/by-id/relevant id /mnt/myDrive
. Make sure you mount the partition (it will have '-part1' at the end).
(EDIT: You'll need to prepend the mount command with sudo of course)
|
|
|
01-20-2010, 10:15 PM
|
#11
|
LQ Newbie
Registered: Jan 2010
Posts: 11
Original Poster
Rep:
|
Quote:
Originally Posted by cantab
Try the following
This gives you a list of disks and partitions, in a form that makes it easy to identify which each one is. Assuming you know the make of the hard drive you are trying to recover (and model if you have others of the same make), it should be easy to spot the right one. Then you can try and mount it with
Code:
mount -t vfat /dev/disk/by-id/relevant id /mnt/myDrive
. Make sure you mount the partition (it will have '-part1' at the end).
(EDIT: You'll need to prepend the mount command with sudo of course)
|
sudo ls /dev/disk/by-id
Code:
root@ubuntu:/mnt/myDrive# sudo ls /dev/disk/by-id
ata-WDC_WD800AB-00CBA1_WD-WCAA52211773 scsi-1ATA_WDC_WD800AB-00CBA1_WD-WCAA52211773 usb-JMicron_USB_to_ATA.ATAPI_Bridge_152D203380B6-0:0
ata-WDC_WD800AB-00CBA1_WD-WCAA52211773-part1 scsi-1ATA_WDC_WD800AB-00CBA1_WD-WCAA52211773-part1
would the next command be: ?
mount -t vfat /dev/disk/by-id/ata-WDC_WD800AB-00CBA1_WD-WCAA52211773-part1 /mnt/myDrive
|
|
|
01-20-2010, 10:16 PM
|
#12
|
LQ Newbie
Registered: Jan 2010
Posts: 11
Original Poster
Rep:
|
Thanks to all so far for helping me out. Keep the suggestions coming!!! I'm still learning.
|
|
|
01-20-2010, 10:26 PM
|
#13
|
Senior Member
Registered: Sep 2003
Location: UK
Distribution: Debian
Posts: 1,215
Rep:
|
Quote:
Originally Posted by jo_smithey
sudo mkdir /mnt/myDrive
sudo mount -t vfat /dev/hda1 /mnt/myDrive
Code:
mount: special device /dev/hda1 does not exist
cd /mnt/myDrive
ls
no results
|
Should be
Code:
sudo mount -t vfat /dev/sda1 /mnt/myDrive
It was a typo.
|
|
|
01-20-2010, 10:31 PM
|
#14
|
LQ Newbie
Registered: Jan 2010
Posts: 11
Original Poster
Rep:
|
Quote:
Originally Posted by lugoteehalt
Should be
Code:
sudo mount -t vfat /dev/sda1 /mnt/myDrive
It was a typo.
|
sudo mount -t vfat /dev/sda1 /mnt/myDrive
Code:
root@ubuntu:/mnt/myDrive# sudo mount -t vfat /dev/sda1 /mnt/myDrive
mount: wrong fs type, bad option, bad superblock on /dev/sda1,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
dmesg | tail
Code:
root@ubuntu:/mnt/myDrive# dmesg | tail
[ 573.780454] usb-storage: device found at 2
[ 573.780465] usb-storage: waiting for device to settle before scanning
[ 578.768660] usb-storage: device scan complete
[ 578.769736] scsi 4:0:0:0: Direct-Access PQ: 0 ANSI: 2 CCS
[ 578.784697] sd 4:0:0:0: [sdb] Attached SCSI disk
[ 578.784815] sd 4:0:0:0: Attached scsi generic sg2 type 0
[ 2235.042433] FAT: bogus number of reserved sectors
[ 2235.042450] VFS: Can't find a valid FAT filesystem on dev sda1.
[ 3307.652019] FAT: bogus number of reserved sectors
[ 3307.652037] VFS: Can't find a valid FAT filesystem on dev sda1.
|
|
|
01-20-2010, 10:38 PM
|
#15
|
Member
Registered: Oct 2009
Location: England
Distribution: Kubuntu, Ubuntu, Debian, Proxmox.
Posts: 553
Rep: 
|
Quote:
Originally Posted by jo_smithey
sudo ls /dev/disk/by-id
Code:
root@ubuntu:/mnt/myDrive# sudo ls /dev/disk/by-id
ata-WDC_WD800AB-00CBA1_WD-WCAA52211773 scsi-1ATA_WDC_WD800AB-00CBA1_WD-WCAA52211773 usb-JMicron_USB_to_ATA.ATAPI_Bridge_152D203380B6-0:0
ata-WDC_WD800AB-00CBA1_WD-WCAA52211773-part1 scsi-1ATA_WDC_WD800AB-00CBA1_WD-WCAA52211773-part1
would the next command be: ?
mount -t vfat /dev/disk/by-id/ata-WDC_WD800AB-00CBA1_WD-WCAA52211773-part1 /mnt/myDrive
|
At the moment the drive in question is connected to the USB adapter you have, correct?
In that case, the relevant device SHOULD be
/dev/disk/by-id/usb-JMicron_USB_to_ATA.ATAPI_Bridge_152D203380B6-0:0-part1
But that device isn't there!
This means one of two things. Either the hard drive isn't properly connected to the USB adapter, or it has a broken partition table.
To determine which, run
Code:
sudo fdisk -l "/dev/disk/by-id/usb-JMicron_USB_to_ATA.ATAPI_Bridge_152D203380B6-0:0"
If the drive is connected properly, you will get some output. If it is not, you will get nothing.
edit: also, if these long disk ids are bothering you, 'ls -l /dev/disk/by-id' will tell you where the symlinks point to, which is the more usual '/dev/sdb1' or similar
Last edited by cantab; 01-20-2010 at 10:40 PM.
|
|
|
All times are GMT -5. The time now is 05:51 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
|
|