Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Mount WinPartitions

Linux Kernel, Network, and Services configuration.
Post Reply
Message
Author
cocas
Posts: 7
Joined: 2005-07-03 08:52
Location: Portugal

Mount WinPartitions

#1 Post by cocas »

OK, its something like this,

i want to mount a winPartition on my Debian system, these are the steps that i do...

1- su -
2- mkdir /mnt/win
3- vi /etc/fstab
4- on fstab i put these

/dev/hda6 /mnt/win auto ro,user,noauto 0 0

5- mount /dev/hda6

the partition appears but with this message

" The folder contents could not be displayed.
You do not have the permissions necessary to view the contents of win".

This is a NTFS partition...

Can you help me??
Thanks!

Sorry my english, i'm Portuguese :)

pigah
Posts: 189
Joined: 2005-03-29 23:20

#2 Post by pigah »

Two options:

1. before you mount the partition,

Code: Select all

modprobe ntfs
If this works, you will want to edit /etc/modules and add ntfs to the file.

2. change your fstab by replacing auto with ntfs

Guest

#3 Post by Guest »

add "umask=0555" in the option part of the fstab string corresponding to the ntfs partition. You also better change "auto" to "ntfs" - will work faster.

Post Reply