LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   how can i install/mount my other Harddisk on RH8? (https://www.linuxquestions.org/questions/linux-software-2/how-can-i-install-mount-my-other-harddisk-on-rh8-46514/)

kublador 02-21-2003 10:49 AM

how can i install/mount my other Harddisk on RH8?
 
im using redhat 8.0...
i plugged my other Harddisk which has a Windows 2000....
how can i view my files on my other harddisk when i boot into RH8?
pls help....

Silent Bob 02-21-2003 11:01 AM

Where did you plug it in? As in which IDE/SCSI channels?

Also is it NTFS formatted? If it is then you will probably need to recompile your kernel for NTFS read support (I don't know if RH8.0 has this option compiled in by default).

Assuming that you have added it to the same IDE cable as your primary disk (so the windows one is /dev/hdb) and that you have kernel support for the filesystem on the disk, you should be able to mount it with the following.

1) create a directory to mount it to e.g. /mnt/Win
2) run mount -t ntfs /dev/hdb /mnt/Win

kublador 02-21-2003 11:49 AM

its fat32......
i did what you said..... and i typed
mount -t fat32 /dev/hdc /mnt/Win

here's what happened....
[root@localhost mnt]# mount -t fat32 /dev/hdc /mnt/Win
mount: fs type fat32 not supported by kernel



what should i do next? pls help....
thank you very much

Silent Bob 02-21-2003 12:00 PM

You probably already have FAT support built into your kernel.

The correct fstype is vfat though.

do the following as root
modprobe vfat
mount -t vfat /dev/hdc /mnt/Win

kublador 02-21-2003 08:08 PM

i tried what you said.....
and it says.....

[root@localhost mnt]# modprobe vfat
[root@localhost mnt]# mount -t vfat /dev/hdc /mnt/Win
mount: wrong fs type, bad option, bad superblock on /dev/hdc,
or too many mounted file systems

cuckoopint 02-21-2003 08:39 PM

that means vfat module does not exist. you will need to recompile your kernel and make sure you include a vfat module. Then, follow the previous directions. As far as kernel compiling goes, there is a wealth of info...search this site and google.

\edit.
wait up...the modprobe didnt report any errors. how does your /etc/fstab look like?

nakkaya 02-21-2003 08:40 PM

use default instead of vfat ot fat it do the job

kublador 02-22-2003 04:30 AM

thank you guys.....


All times are GMT -5. The time now is 04:17 PM.