LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Red Hat
User Name
Password
Red Hat This forum is for the discussion of Red Hat Linux.

Notices


Reply
  Search this Thread
Old 11-03-2003, 02:12 PM   #1
smevans
LQ Newbie
 
Registered: Nov 2003
Posts: 23

Rep: Reputation: 15
Mounting NTFS Partitions in RH9


Hi,

I have a 15GB NTFS Partition with all my data stored on it from when I had Windows XP.
I am very new to Linux in general and would like to know if and how I can access this ?

I believe I have to "Mount" the partition ?

Thanks.

Simon
 
Old 11-03-2003, 02:48 PM   #2
david_ross
Moderator
 
Registered: Mar 2003
Location: Scotland
Distribution: Slackware, RedHat, Debian
Posts: 12,047

Rep: Reputation: 79
Welcome to LQ.

Yes that is correct - you can find more information here:
http://linux-ntfs.sourceforge.net/info/redhat.html
 
Old 11-04-2003, 07:44 AM   #3
smevans
LQ Newbie
 
Registered: Nov 2003
Posts: 23

Original Poster
Rep: Reputation: 15
Thanks

I have run the rpm for ntfs which went ok but im still confused as to how I mount the partition ?

I have one disk split into various partitions for linux and one ntfs partition left from windows.

Thanks !
 
Old 11-04-2003, 12:48 PM   #4
david_ross
Moderator
 
Registered: Mar 2003
Location: Scotland
Distribution: Slackware, RedHat, Debian
Posts: 12,047

Rep: Reputation: 79
Take a look at the last grey box on that page.
 
Old 11-04-2003, 01:29 PM   #5
smevans
LQ Newbie
 
Registered: Nov 2003
Posts: 23

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by david_ross
Take a look at the last grey box on that page.
Heres what I get if I do a MOUNT

/dev/hdc6 on / type ext3 (rw)
none on /proc type proc (rw)
usbdevfs on /proc/bus/usb type usbdevfs (rw)
/dev/hdc1 on /boot type ext3 (rw)
none on /dev/pts type devpts (rw,gid=5,mode=620)
/dev/hdc5 on /home type ext3 (rw)
none on /dev/shm type tmpfs (rw)
/dev/hdc7 on /tmp type ext3 (rw)
/dev/hdc3 on /usr type ext3 (rw)
/dev/hdc9 on /var type ext3 (rw)


If I try the command in the last grey box it says hda1 doesnt exist ?
 
Old 11-04-2003, 01:43 PM   #6
david_ross
Moderator
 
Registered: Mar 2003
Location: Scotland
Distribution: Slackware, RedHat, Debian
Posts: 12,047

Rep: Reputation: 79
OK - It sounds like it isn;t on that disk - what hard disk is your windows install on?
 
Old 11-04-2003, 01:55 PM   #7
Sohni
Member
 
Registered: Sep 2003
Location: Planet Earth
Distribution: SuSE Linux 9.0
Posts: 83

Rep: Reputation: 15
Partitioning in GNU/Linux can be confusing:
With IDE drives:

hda - Primary Master
hdb - Primary Slave
hdc - Secondary Master
hdd - Secondary Slave

0 - first partition
1 - second partion
and so on

I understand that you have Windows on your fist hard disk (Primary Master) and you have only one partition there. Therefore it is hda0.

I am not sure but you must use following command

mount -t ntfs -rw /dev/hda0 /mnt/mount_point
 
Old 11-04-2003, 02:01 PM   #8
Sohni
Member
 
Registered: Sep 2003
Location: Planet Earth
Distribution: SuSE Linux 9.0
Posts: 83

Rep: Reputation: 15
Oh, I have an error...

It is still
1 first partition
2 second partition
and so on

If you have preinstalled windows on your machine you may have a partition before your windows partion. So the windows partition may be hda2
 
Old 11-04-2003, 02:16 PM   #9
smevans
LQ Newbie
 
Registered: Nov 2003
Posts: 23

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by david_ross
OK - It sounds like it isn;t on that disk - what hard disk is your windows install on?
I only have one drive and its deffo there cos I have a bootdisk partition utility which shows its still there !
 
Old 11-04-2003, 02:31 PM   #10
david_ross
Moderator
 
Registered: Mar 2003
Location: Scotland
Distribution: Slackware, RedHat, Debian
Posts: 12,047

Rep: Reputation: 79
What does this show:
fdisk -l /dev/hdc
 
Old 11-04-2003, 02:35 PM   #11
smevans
LQ Newbie
 
Registered: Nov 2003
Posts: 23

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by david_ross
What does this show:
fdisk -l /dev/hdc
[root@localhost smevans]# fdisk -I/dev/hdc
bash: fdisk: command not found
[root@localhost smevans]#
 
Old 11-04-2003, 02:41 PM   #12
david_ross
Moderator
 
Registered: Mar 2003
Location: Scotland
Distribution: Slackware, RedHat, Debian
Posts: 12,047

Rep: Reputation: 79
When you became root did you use su? If so then try:
su -

If this doesn't work try:
find / -name fdisk

then use the full path returned - if you still don't get anything then install fdisk.
 
Old 11-04-2003, 02:42 PM   #13
smevans
LQ Newbie
 
Registered: Nov 2003
Posts: 23

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by david_ross
When you became root did you use su? If so then try:
su -

If this doesn't work try:
find / -name fdisk

then use the full path returned - if you still don't get anything then install fdisk.
No joy

How do I install fdisk ?
 
Old 11-04-2003, 02:45 PM   #14
david_ross
Moderator
 
Registered: Mar 2003
Location: Scotland
Distribution: Slackware, RedHat, Debian
Posts: 12,047

Rep: Reputation: 79
Download:
ftp://fr2.rpmfind.net/linux/redhat/9...11y-9.i386.rpm

Then:
rpm -ivh util-linux-2.11y-9.i386.rpm

I'm surprised it ain't there though.
 
Old 11-04-2003, 02:48 PM   #15
smevans
LQ Newbie
 
Registered: Nov 2003
Posts: 23

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by david_ross
Download:
ftp://fr2.rpmfind.net/linux/redhat/9...11y-9.i386.rpm

Then:
rpm -ivh util-linux-2.11y-9.i386.rpm

I'm surprised it ain't there though.
Says already installed..

Its in /sbin but when i run command it says cannot find fdisk ?

 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Mounting NTFS partitions question danritter Linux - Newbie 2 09-12-2005 02:14 AM
Mounting NTFS Partitions on Ubuntu vivekian Ubuntu 2 08-01-2005 10:34 AM
Mounting NTFS-partitions and getting readingrights for users. Festiz Linux - Newbie 10 10-28-2003 10:45 AM
mounting ntfs partitions as a user in suse8.2 Anubis Linux - Software 6 08-31-2003 05:07 PM
Mounting NTFS Partitions TheMad Slackware 8 01-21-2003 05:16 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Red Hat

All times are GMT -5. The time now is 09:23 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration