Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
NTFS hard drive issues [Solved]
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware
View previous topic :: View next topic  
Author Message
kcbernfeld
n00b
n00b


Joined: 21 Jan 2006
Posts: 9
Location: /usa/Florida

PostPosted: Sat Jan 21, 2006 5:26 am    Post subject: NTFS hard drive issues [Solved] Reply with quote

I recently reformatted my master drive, and left my slave formatted as ntfs.

During the installation, I tried to stick exactly to what the doc said. I'm a nervous person.

Now, I'd like to access my second hard drive, but I'm not sure how. I added my partitions (hdb2, 3, 5) to fstab, but I'm not sure about mountpoints. Any help would be appreciated.


Last edited by kcbernfeld on Sun Jan 22, 2006 4:22 am; edited 1 time in total
Back to top
View user's profile Send private message
simon_irl
Guru
Guru


Joined: 07 Oct 2004
Posts: 403
Location: New Zealand

PostPosted: Sat Jan 21, 2006 5:41 am    Post subject: Reply with quote

the second column in fstab *is* the mountpoints, so i'm not sure what you mean about not being sure about them! let's say your second hard disk (hdb) is formatted as one big ntfs partition. your fstab entry would look something like this:
Code:
/dev/hdb1  /mnt/ntfs  ntfs  noauto,user  0 0

the "/mnt/ntfs" in this line is the mountpoint...which is just a directory you create, typically under /mnt but really anywhere reasonably sensible. so you could call this /mnt/bdrive or /mnt/windows or /mnt/foo or whatever you like. just create it with mkdir, and then you can mount the drive in it (once your fstab has the appropriate line) as easily as:
Code:
mount /mnt/ntfs

the third column tells the system that the drive contains an ntfs filesystem, and the fourth column, "noauto,user" tells it *not* to mount the drive automatically when your system boots, and to allow a regular user (i.e. not just root) to mount the drive manually. if you'd prefer to change this behaviour, by all means do.
Code:
man fstab

will give you all the options.
Back to top
View user's profile Send private message
kcbernfeld
n00b
n00b


Joined: 21 Jan 2006
Posts: 9
Location: /usa/Florida

PostPosted: Sat Jan 21, 2006 5:48 am    Post subject: Reply with quote

Ah. Thanks. I meant that I had absolutely no idea what a mountpoint was.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum