LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   Installed fadora core 6 easily enough but it wont detect my other hard drives (https://www.linuxquestions.org/questions/linux-hardware-18/installed-fadora-core-6-easily-enough-but-it-wont-detect-my-other-hard-drives-544074/)

Jack Daniels 04-07-2007 01:01 PM

Installed fadora core 6 easily enough but it wont detect my other hard drives
 
So i decided to install linux and switch out of windows install went easily enough but it doesn't seem to want to detect my other 300 gig sata seagate drive or my 20 gig drive i have in with windows on it.(i know 20 gig is lame but i keep it in my pc to see how ling tell it will quit)what can i do

AceofSpades19 04-07-2007 01:23 PM

you probably have to mount the other drives

Jack Daniels 04-07-2007 01:45 PM

Quote:

Originally Posted by AceofSpades19
you probably have to mount the other drives

sorry i'm new to linux i tried some of the stuff on this page
http://www.linuxquestions.org/questi...d.php?t=539286



$ su -c'yum install ntsf-3g'
Password:
Loading "installonlyn" plugin
Setting up Install Process
Setting up repositories
Reading repository metadata in from local files
Parsing package install arguments
No Match for argument: ntsf-3g
Nothing to do

they are ntsf and it was detecting them during the install but they aren't listed so how do i mount my drives?

Jack Daniels 04-07-2007 02:19 PM

am i doing somthing wrong
$ fdisk-l
bash: fdisk-l: command not found

$ /etc/fstab
bash: /etc/fstab: Permission denied

# /sbin/fdisk -l

Disk /dev/hda: 20.5 GB, 20525137920 bytes
255 heads, 63 sectors/track, 2495 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/hda1 * 1 2494 20033023+ 7 HPFS/NTFS

Disk /dev/hdb: 13.6 GB, 13601193984 bytes
255 heads, 63 sectors/track, 1653 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/hdb1 * 1 510 4096543+ 83 Linux
/dev/hdb2 511 637 1020127+ 82 Linux swap / Solaris

Disk /dev/sda: 300.0 GB, 300069052416 bytes
255 heads, 63 sectors/track, 36481 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/sda1 * 1 36481 293033601 7 HPFS/NTFS

not sure what to do now

Jack Daniels 04-07-2007 02:55 PM

# mkdir /media/windows /dev/hda1 /media/Windows/ntfs-3g auto,users,uid=0,gid=500,umask=000,rw0 0
mkdir: cannot create directory `/dev/hda1': File exists

still can't figure out how to mount the drive

i want to mount this drive
Device Boot Start End Blocks Id System
/dev/sda1 * 1 36481 293033601 7 HPFS/NTFS

J.W. 04-07-2007 03:25 PM

To mount your 300G drive, just
Code:

mount /dev/sda1 <mountpoint>
where <mountpoint> is the directory you are mount the drive to. For example, you might have a directory called /mnt/hd and if you were to mount /dev/sda1 to it, you would be able to access its contents by going into the /mnt/hd directory.

You will need to be root to a drive, and similarly, you might want to create a new directory for this drive's mountpoint, eg, maybe something like /mnt/seagate

Jack Daniels 04-07-2007 03:58 PM

Quote:

Originally Posted by J.W.
To mount your 300G drive, just
Code:

mount /dev/sda1 <mountpoint>
where <mountpoint> is the directory you are mount the drive to. For example, you might have a directory called /mnt/hd and if you were to mount /dev/sda1 to it, you would be able to access its contents by going into the /mnt/hd directory.

You will need to be root to a drive, and similarly, you might want to create a new directory for this drive's mountpoint, eg, maybe something like /mnt/seagate

how do i creat a mount point i think thats what i'm not getting at this point
what do you need to know to help me walk through this i can't seem to figure out this console

Jack Daniels 04-07-2007 05:38 PM

i keep getting this error when i try to mount

# mount /dev/sda1 /mnt/300gb
mount: unknown filesystem type 'ntfs'

J.W. 04-07-2007 06:27 PM

To create a new directory, just the mkdir command
Code:

mkdir /abc/def
where "/abc/def" is the fully qualified path name, which I think is always a good idea.

If your system does not recognize NTFS then you probably need to add the kernel module for it. I don't use Fedora, but from what I can gather the following command will do it. Note: you need to research this yourself. Don't run commands unless you understand what they do.
Code:

yum install kmod-ntfs


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