LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 02-12-2006, 10:52 PM   #1
pranavojha
Member
 
Registered: Feb 2006
Location: Bangalore, India
Distribution: Fedora Core 3
Posts: 68

Rep: Reputation: 15
Having trouble accessing windows drives from fedora core 3


i have installed win 2000(NTFS) in c:, win xp(NTFS) in d:, both xp & 2000 have NTFS filesystem and am using the fedora core version 3 which uses ext3 filesystem. i have a pentium 4 3.0 ghz processor, with 512mb ram. i was trying to access windows drives from linux so i mounted my drives using the 'mount' command as

mount -t ntfs /dev/sda1 /mnt/c:
mount -t ntfs /dev/sda5 /mnt/d:
uptil...
mount -t ntfs /dev/sda9 /mnt/h:

i am now able to easily access files from these directories
The Problem is...
i am not able to write into these drives when accessing them from fd3, whenever i try to create a new folder i get an error saying,

Error creating new folder
Error "Operation not permitted" creating new folder.
(the error comes in a box with a white cross embedded in a red hexagon on left side of the box)

PS: i however, think that the problem is probably with the NTFS file system on windows. this is bcoz i had installed the same version of Fedora Core 3 from the same cd earlier along with win 2000 & xp in c & d drives respec. but both drives(c & d) had FAT32 filesystem then. mounting the drives using the command,
mount -t vfat /dev/sda1 /mnt/c:
allowed me to read as well as write from windows drives, this doesn't happen now... why so?

How do I go about accessing NTFS drives in Windows XP & 2000 from FedoraCore 3 having ext3 filesystem, such that I not only get to read but also write onto windows drives from fd3?
 
Old 02-12-2006, 10:58 PM   #2
accessrichard
Member
 
Registered: Apr 2005
Distribution: Fedora Core (latest version)
Posts: 156

Rep: Reputation: 30
Unfortunately the ntfs kernel module lacks write support.

http://linux-ntfs.sourceforge.net/info/ntfs.html#3.2
 
Old 02-12-2006, 11:00 PM   #3
pljvaldez
LQ Guru
 
Registered: Dec 2005
Location: Somewhere on the String
Distribution: Debian Wheezy (x86)
Posts: 6,094

Rep: Reputation: 281Reputation: 281Reputation: 281
This not recommended. Write support to NTFS from linux is still considered experimental. Many Windows installs have been hosed completely by writing from linux to NTFS partitions. Generally, you should create a shared FAT32 partition to share files between windows and linux.

Now, if you want to risk it, the trick is to assign a umask=0000. Not sure how to do that at the CLI, but in your fstab, just put it in the default section:

Code:
/dev/sda1    /mnt/c	ntfs   default,noauto,user,umask=0000	0	0
 
Old 02-13-2006, 05:24 PM   #4
Mara
Moderator
 
Registered: Feb 2002
Location: Grenoble
Distribution: Debian
Posts: 9,696

Rep: Reputation: 232Reputation: 232Reputation: 232
Moved: This thread is more suitable in Linux-Newbie and has been moved accordingly to help your thread/question get the exposure it deserves.

Fat32 support in Linux is full -- you can write and read it. NTFS is still experimental, however.
 
Old 02-14-2006, 07:06 PM   #5
pranavojha
Member
 
Registered: Feb 2006
Location: Bangalore, India
Distribution: Fedora Core 3
Posts: 68

Original Poster
Rep: Reputation: 15
tried 'em all

I have tried to edit the fstab earlier by setting the umask to 0000 as u suggested these were my modifications, it didn't work thought...

/dev/sda1 /mnt/c: ntfs rw,umask=0000 0 0

well i guess i will just have to change one of my drives to FAT32 and use it for access...

Thanx for help...

Quote:
Originally Posted by pljvaldez
This not recommended. Write support to NTFS from linux is still considered experimental. Many Windows installs have been hosed completely by writing from linux to NTFS partitions. Generally, you should create a shared FAT32 partition to share files between windows and linux.

Now, if you want to risk it, the trick is to assign a umask=0000. Not sure how to do that at the CLI, but in your fstab, just put it in the default section:

Code:
/dev/sda1    /mnt/c	ntfs   default,noauto,user,umask=0000	0	0
 
Old 02-15-2006, 06:41 PM   #6
pljvaldez
LQ Guru
 
Registered: Dec 2005
Location: Somewhere on the String
Distribution: Debian Wheezy (x86)
Posts: 6,094

Rep: Reputation: 281Reputation: 281Reputation: 281
Not sure, but there might be a problem with the ":"
 
Old 03-05-2006, 09:18 AM   #7
pranavojha
Member
 
Registered: Feb 2006
Location: Bangalore, India
Distribution: Fedora Core 3
Posts: 68

Original Poster
Rep: Reputation: 15
thanks...it works great

Quote:
Originally Posted by pljvaldez
This not recommended. Write support to NTFS from linux is still considered experimental. Many Windows installs have been hosed completely by writing from linux to NTFS partitions. Generally, you should create a shared FAT32 partition to share files between windows and linux.

Now, if you want to risk it, the trick is to assign a umask=0000. Not sure how to do that at the CLI, but in your fstab, just put it in the default section:

Code:
/dev/sda1    /mnt/c	ntfs   default,noauto,user,umask=0000	0	0
The idea of a shared FS as FAT32 works well. i'm using a fat32 drive for sharing data as NTFS doesn't support write function.
 
Old 03-05-2006, 09:21 AM   #8
pranavojha
Member
 
Registered: Feb 2006
Location: Bangalore, India
Distribution: Fedora Core 3
Posts: 68

Original Poster
Rep: Reputation: 15
no problem with ':'

Quote:
Originally Posted by pljvaldez
Not sure, but there might be a problem with the ":"
thanx for suggesting, but it looks like linux doesn't have any problem with allowing ":" in the file/directory names.

 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
accessing windows drives from fedora 3 delfick Linux - General 2 01-03-2006 12:26 PM
Accessing SHELL? in Fedora Core 3 MrFett Linux - Newbie 5 03-18-2005 10:57 AM
accessing windows share from Fedora Core 3 Macavity Linux - Networking 0 11-21-2004 01:43 PM
Trouble accessing Windows network linuxvirgin Linux - Networking 0 05-20-2004 07:31 AM
Accessing windows drives playmesumch00ns Linux - Newbie 5 06-14-2001 02:38 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 06:42 AM.

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