PDA

View Full Version : Hard drive not listed



mikeis2cool
10-04-2006, 10:28 PM
I have a new Dell desktop with a 80 GB "DataSafe" hard drive running Windows XP Professional. When I load Knoppix (5.01) from a CD, my hard drive does not show up on the desktop and I can't seem to access it no matter what I try. When I load the same CD on my Dell laptop everything works fine.

If anyone has any suggestions on how I can get my hard drive to be recognized it will be greatly appreciated!

MF

jjmac
10-08-2006, 11:49 PM
To hazard the guess, your lap top would have a differen drive, no ...

I would suspect that Dell is just hiding the drive for some paranoid Dell reason/excuse.



What does

]# fdisk /dev/<drive>

have to say, or ...

]# cfdisk -Pt /dev/<drive>


Could you post that out put between code tags ...





<--- opening code tag

info
info
etc

<--- closing code tag



It may be that the partition has its 'hidden' bit set. Which can be fixed via those programs mentioned above, while running the LiveCD.


/dev/<drive>

<drive>

Will be hda for an 'ide' disk,
sda for 'sata' or an 'scsi' type drive.

Dell can be a real pain in the butt in this regard way.

In case you may not be aware, Dell commonly put a hidden partition at the beginning of a drive, separate from the actual XP partition. Their recovery cd utilises it. When people decide to actually start working their drive, seeing as how it is theirs' not Dells', wiping XP and then reformating for Linux being the typical scenario. Rather than just shrinking XP and creating an extended-primary partition to install Linux ... In the process they often wipe the hidden utility partition out. On trying to get the install/recovery cd to put XP back later ... it doesn't work. And Dells' help desk people haven't been trained in its' existence. Total pain in the butt time ensures :). All due to Dell trying to lock customers in to their company by employing unnecessary tricks like that, and promoting the perception that the customer should really just leave it all up to them.

I've got a bit of a bug when it comes to Dell, no offence there i hope :).


jm

Itsheavyonmymind
10-20-2006, 08:33 AM
I should be slapped on the wrist for not making a better search; I just added to another post about a similar problem, however this looks promising, so I shall try here as well:

Basically, knoppix will not display my hardrive either. I'm not using a dell (rather an ibm thinkpad z61t), but I tried to type in what you put (in what I guessed would be the konsole) and it told me there was a syntax error?

How/where should I type that in.

Thanks ~ Marco

Jacky
10-20-2006, 12:25 PM
Coincidentally, the same thing happened to me at another computer yesterday which required a nodma cheat to boot up. With the nodma cheat, the boot went ok but the disks icons were not there. However I launched System->More Applications->KDiskfree. KDiskfree listed my drives. I then used the console to mount manually.

Itsheavyonmymind
10-20-2006, 05:08 PM
I tried using kdisk free... but it doesn't seem to list the hard drive... at all. This is just puzzling because I know it is possible to access the drives in som fashion.
~Marco

Itsheavyonmymind
10-21-2006, 02:34 AM
I'm still just very curious. It seems that there is a physical problem accessing the harddrive, however, how could one be able to obtain files off it. What kind of retrieval software/hardware is used in computer stores? I cannot see why this isn't working.

jjmac
10-22-2006, 12:12 PM
Itsheavyonmymind rote:

>>
Basically, knoppix will not display my hardrive either. I'm not using a dell (rather an ibm thinkpad z61t), but I tried to type in what you put (in what I guessed would be the konsole) and it told me there was a syntax error?

How/where should I type that in.
>>

syntax error ?, do you mean in the 'fdisk' 'cfdisk' examples.

they need to be run as root, so you may need to use sudo if running from knoppix.


In any xterm, rxvt, kconsole application ... anything that provides a command prompt. Even one of the virtual consoles accessed via keying ...

ctr-alt-F2

Or almost any function key number ...

If the drive is an ide and its the first drive,

]# cfdisk -Pt /dev/hda

Will give you the table layout for that drive. As will fdisk. I just find cfdisk more usable and so tend to lean towards that.

Check how your /etc/fstab file is layed out too. If that is configured incorrectly then auto/brief mounts wont work. You would then need to use the full command line, such as ...

]# mount -t ext2 /dev/hda13 /mnt/hda13

But knoppix should auto the fstab on boot.

When you say knoppix wont display your hard drive ... i guess you really mean 'kde' wont display it. If thats the case, then i would suspect something to do with how kde is set up.

Try the fdisk/cfdisk command and see what they say, make sure your 'lang' environment is set correctly as well.

You'll likely need to run the comands using 'sudo' too in knoppix as well, such as ...

]# sudo cfdisk -Pt /dev/hda


That may fix the 'syntax' error message. I should have mentioned that before, but i was thinking in terms of juust a staandard distro, rather than a LiveCD situation.

Of course, if your drive isn't the first ide drive, you will need to replace the 'hda' part with the appropriate naming scheme for your drive.


jm