Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Thread: Can't get into my hard drive

  1. #1
    Junior Member
    Join Date
    Feb 2010
    Posts
    3

    Can't get into my hard drive

    I'm totally new at Knoppix and I need help. I have the 6.2 live knoppix CD. The computer boots up fine, I get to the knoppix desktop and I don't see any options to load the HD. I'm trying to copy my files from the HD since Win XP doesn't seem to want to boot due to virus damage. How do I get to the files in my HD???? Anyone out there with any info? REALLY frustrating since I've seen Knoppix versions with HD icons right on the desktop. The version I got just has a fancy wallpaper with LDE on it. I bought this from a Knoppix distributor online and it seems like its just MS Word with an OS.Anyone please help!!!!

  2. #2
    Senior Member registered user
    Join Date
    Sep 2006
    Posts
    802

    Search "How do I get to the files in my HD"

    I got several pages of hits just by doing a forum search with your exact wording.
    If you can't get useful information from that, this forum might not be the right one for you.
    But someone should write a recipe for this situation. You might ask the CD vendor to contribute a piece on that to the wiki here. And please post the response and the name here if they decline.

    The people trying to help out in this forum are mostly just ordinary Knoppix users, with very little time. And no time at all for repeating answers already given dozens of times.

  3. #3
    Junior Member
    Join Date
    Feb 2010
    Posts
    3
    Thanks for that info, I haven't tried searching the forum but I will get on it right now. I haven't really explored the replies. In any case I'll look thanx.

  4. #4
    Member registered user
    Join Date
    Jan 2010
    Posts
    33

    insert a usb flash drive and see if the live cd sees it.

    Hi
    This may seem kind of strange, but....... there are those who say that I'm just strange anyway!

    How about turning the system off and then inserting a usb flash drive with maybe a FAT or NTFS file system on it with some files that you are SURE are there. In other words, there are words that you would easily recognize on the files.

    When you then run the live cd and if you CAN see the usb flash drive, and then open it....

    you "should" see some plain vanilla folders that have the files that you recognize as the files to which I referred above.

    This then indicates to you that the PARTICULAR cd that you purchased does, indeed, "see" various file systems.

    If you do not, then, AT THE SAME TIME, see the Windblows hard drive then it might indicate that said HD is, indeed, truely unreadable.

    If, however, you do not see the USB flash drive then that would indicate, to me at least, that the commercial operation has well...... scre@#$ you.

    just a thought, and one of the ways that I've tested various HDs over the past couple of years.

    just a thought, of little consequence.

    woodsmoke

  5. #5
    Senior Member registered user
    Join Date
    Mar 2004
    Posts
    1,516
    uhm, open a console (text prompt) and type
    Code:
    mount
    then hit enter

    this should list the drive you want (sually sda),
    line with listing of the first sata drive looks like this

    /dev/sda1 on /media/sda1 type ntfs (ro)
    this means I should look in /media/sda1 for the folders of the windows system on this fictive computer.

    If no such entry, try
    Code:
    sudo mount -a
    repeat the mount alone, still nothing? uhm, ok

    then do
    Code:
    sudo fdisk -l
    just note it is L not capital i, this should list the disks on your system and their data like below
    /dev/sda1 * 1 6000 5000000 7 HPFS/NTFS
    /dev/sda2 6001 600000 999999999 83 Linux
    this is great now we know that it is seen by system as sda1 and is NTFS filesystem, it can be mounted.
    Code:
    sudo mkdir /media/sda1
    sudo  mount -t ntfs /dev/sda1 /media/sda1 -o users,ro
    hope this helped some, if not keep asking.

  6. #6
    Senior Member registered user
    Join Date
    Sep 2006
    Posts
    802
    Oerjan, I have been a little hesitant to suggest your method as the basic one, but with so many variants of automounting etc, and so much broken so often with new versions, maybe it's just to say "go mount" to all the people with HD access problems. Those basic commands tend to be the only really dependable.

    Maybe we should make a new 6.X FAQ and put it there as one of the first questions? Basically, it's just the steps console, fdisk -l and mount
    Just one small detail: Often, /media/sda1 (or whatever) is created by the system when the volume is listed by fdisk.
    Prepending sudo like you suggest, instead of becoming root permanently is also good practice for beginners, I think.

  7. #7
    Senior Member registered user
    Join Date
    Oct 2003
    Location
    N42.41 W73 and change
    Posts
    401
    On the taskbar , the second icon from the left (looks like a manila folder), is the PCMan file manager. Click on that to open it and in the top left pane you might see a list of different sized volumes, one of which would be your drive. If it does not appear there, then it is possible Knoppix is unable to mount or open it, You can try mounting it manually as described above.

    I thought I would add this as the use of the file manager is not particularly intuitive to a windows user, and the use of the command line can be daunting at best.

  8. #8
    Senior Member registered user
    Join Date
    Sep 2006
    Posts
    802
    I thought I would add this as the use of the file manager is not particularly intuitive to a windows user, and the use of the command line can be daunting at best.
    Sure, and the question is, how foolproof is PCMan? I remember some problems reported with such managers. It seems to work well enough with 6.2 for me, so should that be the first thing to try?

    I'm not so afraid of pointing newbies to command line tools, if that is a safe way to work. But if PCMan is virtually bulletproof, that's of course a natural first choice.

  9. #9
    Senior Member registered user
    Join Date
    Jul 2004
    Posts
    143
    1616e says he has got a virus attacked Win XP.

    Presumably this means 1616e is trying to mount an NTFS partition.

    If I remember rightly Knoppix uses NTFS-3G to talk to NTFS and NTFS-3G does not co-operate if it finds a truly messed up NTFS partition (corruption - not virus infestation). This could be why the partition is not mounted.

    The usual solution is to run chkdsk from Windows - but in this case Windows cannot be booted.

    Methinks a Windows recovery disk may be needed.

  10. #10
    Senior Member registered user
    Join Date
    Sep 2006
    Posts
    802
    Quote Originally Posted by ICPUG
    1616e says he has got a virus attacked Win XP.

    Presumably this means 1616e is trying to mount an NTFS partition.

    If I remember rightly Knoppix uses NTFS-3G to talk to NTFS and NTFS-3G does not co-operate if it finds a truly messed up NTFS partition (corruption - not virus infestation). This could be why the partition is not mounted.

    The usual solution is to run chkdsk from Windows - but in this case Windows cannot be booted.

    Methinks a Windows recovery disk may be needed.
    That may well turn out to be the case, but I don't think anything can be concluded with any certainty from what 1616e wrote. In earlier Knoppix versions, you could often often click on disk volume icons on the desktop to mount and explore them, and he/she expected to do that with 6.2. Which is not possible - but maybe PCMan could do the job in a similar manner.

    Personally, I would take the fully manual mounting route if there is any suspicion of corruption, but maybe there is little practical difference in this case.

    When you mention chkdsk, would it be possible to run it on the disk volume from a virtual machine running Windows under Linux?

Page 1 of 2 12 LastLast

Similar Threads

  1. Copying from an internal hard drive to a USB thumb drive
    By bagmonkey in forum General Support
    Replies: 1
    Last Post: 04-12-2008, 04:50 AM
  2. Copy file from hard drive to usb flash drive
    By PaulKraemer in forum General Support
    Replies: 1
    Last Post: 05-08-2006, 04:49 PM
  3. Copying hard drive to hard drive new to linux
    By husalah5150 in forum General Support
    Replies: 3
    Last Post: 11-22-2005, 05:06 PM
  4. Hard drive / data recovery / force show drive
    By Lintu in forum Hdd Install / Debian / Apt
    Replies: 1
    Last Post: 10-20-2005, 06:13 PM
  5. Hard Drive Salvage from corrupted Windows XP NTFS drive
    By kidsatacrux in forum MS Windows & New to Linux
    Replies: 19
    Last Post: 08-03-2004, 07:41 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


IBM System X3850-X5 Server w/4x Intel  Xeon E7-4870 CPU , 512 GB DDR3 RAM,NO HDD picture

IBM System X3850-X5 Server w/4x Intel Xeon E7-4870 CPU , 512 GB DDR3 RAM,NO HDD

$1599.99



DELL POWEREDGE HP IBM SERVER XEON GOLD 5315Y 8 CORE PROCESSOR 3.2 GHZ SRKXR picture

DELL POWEREDGE HP IBM SERVER XEON GOLD 5315Y 8 CORE PROCESSOR 3.2 GHZ SRKXR

$1100.00



IBM QRadar xx29 2x Xeon E5-2650v4 2x 900W PSU M5120 12x 3.5

IBM QRadar xx29 2x Xeon E5-2650v4 2x 900W PSU M5120 12x 3.5" Bay Server No RAM

$179.99



IBM X3650 M4 Server System Board 00MX553 00AM209 00Y8499 00Y8457 00D2888 00W2671 picture

IBM X3650 M4 Server System Board 00MX553 00AM209 00Y8499 00Y8457 00D2888 00W2671

$230.00



IBM SYSTEM X3500 M3 SERVER 7380AC1 TOWER Server XEON E5620 8GB RAID SEE NOTES picture

IBM SYSTEM X3500 M3 SERVER 7380AC1 TOWER Server XEON E5620 8GB RAID SEE NOTES

$111.70



IBM X3650 M5 5462-AC1,2 X E5-2640V3 2.6GHZ 8C, 16 GB, DUAL 750W, 2 X 1TB SERVER picture

IBM X3650 M5 5462-AC1,2 X E5-2640V3 2.6GHZ 8C, 16 GB, DUAL 750W, 2 X 1TB SERVER

$349.99



IBM x3550 M4 1x 3.50GHz Quad Core Xeon E5-2637v2 32GB RAM 8-Bay No HDDs - READ picture

IBM x3550 M4 1x 3.50GHz Quad Core Xeon E5-2637v2 32GB RAM 8-Bay No HDDs - READ

$20.00



IBM System x3550 M3 1U Server 2x Xeon E5645, 192GB RAM, 2x 300GB HDD (7944-AC1) picture

IBM System x3550 M3 1U Server 2x Xeon E5645, 192GB RAM, 2x 300GB HDD (7944-AC1)

$150.00



IBM ADP Server Type 7870 AC1 NO HDD | 128GB RAM PC3L | 2 x Xeon  E5620 picture

IBM ADP Server Type 7870 AC1 NO HDD | 128GB RAM PC3L | 2 x Xeon E5620

$199.99



IBM 7915 AC1 M4 E27R704 Server Intel 2650V2 32GB RAM NO HDD w/ 2x 750w PSU picture

IBM 7915 AC1 M4 E27R704 Server Intel 2650V2 32GB RAM NO HDD w/ 2x 750w PSU

$225.00