LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
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 09-07-2009, 10:31 PM   #16
firewiz87
Member
 
Registered: Jan 2006
Distribution: OpenSUSE 11.2, OpenSUSE 11.3,Arch
Posts: 240

Rep: Reputation: 37

These days NTFS support comes out of the box in most of the distros.... I dont think you ll have to install it separately....
The mount command can auto detect the file system... (please correct me if i am wrong), i never even had to give the -t option...
 
Old 09-08-2009, 02:13 AM   #17
manwithaplan
Member
 
Registered: Nov 2008
Location: ~/
Distribution: Arch || Sidux
Posts: 393

Rep: Reputation: 45
I just went through this ... I had to create a custom HAL policy. I created a policy in
/usr/share/hal/fdi/policy/10osvendor/20-ntfs-3g.fdi

In the file I added the following XML info:
Code:
<?xml version="1.0" encoding="UTF-8"?>
 <deviceinfo version="0.2">
   <device>
     <match key="volume.fstype" string="ntfs">
         <merge key="volume.fstype" type="string">ntfs-3g</merge>
         <merge key="volume.policy.mount_filesystem" type="string">ntfs-3g</merge>
         <append key="volume.mount.valid_options" type="strlist">locale=</append>
     </match>
   </device>
 </deviceinfo>
With this policy, and my user with proper group permissions. I am able to mount my ntfs partition from Nautilus.

If you use policykit, you might need to add a policy in your Policy.conf file.

This is with ntfs3g installed, and using hal to handle mounts.

Last edited by manwithaplan; 09-09-2009 at 03:37 PM.
 
Old 09-08-2009, 04:28 PM   #18
djeikyb
Member
 
Registered: Nov 2005
Location: California
Distribution: ubuntu 10
Posts: 162

Rep: Reputation: 33
Quote:
Originally Posted by BumbleBee View Post
-Basically if i make the two hard drives ext4, will Linux and Windows be able to access them completely with no problems?
I don't see a specific mention of ext4, but I use ext2fsd to access my linux partitions while in windows. The major downside is lack of case sensitivity. Ie, I have two folders, "music" and "Music". I only get access to one of them in Windows. I also tried Ext2Ifs, but (1) it's ugly (2) community development is prohibited. It did work though.
 
Old 09-08-2009, 09:29 PM   #19
BumbleBee
LQ Newbie
 
Registered: Jul 2009
Distribution: Fedora Core 11
Posts: 28

Original Poster
Rep: Reputation: 15
Okay so i ran yum search ntfs-3g and it said i did have it so i ran yum install ntfs-3g and it said already installed nothing to do meaning i already have it...
 
Old 09-08-2009, 10:21 PM   #20
manwithaplan
Member
 
Registered: Nov 2008
Location: ~/
Distribution: Arch || Sidux
Posts: 393

Rep: Reputation: 45
Quote:
Originally Posted by BumbleBee View Post
Okay so i ran yum search ntfs-3g and it said i did have it so i ran yum install ntfs-3g and it said already installed nothing to do meaning i already have it...
Create the file I posted above... Reboot and try to access the NTFS partition. It worked for me...
 
Old 09-09-2009, 03:27 PM   #21
BumbleBee
LQ Newbie
 
Registered: Jul 2009
Distribution: Fedora Core 11
Posts: 28

Original Poster
Rep: Reputation: 15
Do i do this terminal???
If i really do this in terminal then do i enter each new line as an individual command or one big command?
 
Old 09-09-2009, 03:38 PM   #22
manwithaplan
Member
 
Registered: Nov 2008
Location: ~/
Distribution: Arch || Sidux
Posts: 393

Rep: Reputation: 45
Quote:
Originally Posted by BumbleBee View Post
Do i do this terminal???
If i really do this in terminal then do i enter each new line as an individual command or one big command?
Nah... this is a xml file that tells linux to use ntfs-3g to open your NTFS partition when you click on the icon. Here is what you do:

Terminal:

Code:
$ sudo su

# gedit /usr/share/hal/fdi/policy/10osvendor/20-ntfs-3g.fdi &
This will open gedit, now copy and paste the XML code I posted above, then save the document.

Double check to see if the file has been created, with:

Code:
# ls /usr/share/hal/fdi/policy/10osvendor/20-ntfs-3g-policy.fdi
It should print out the path to verify that the file has been created.
 
Old 09-13-2009, 10:42 AM   #23
BumbleBee
LQ Newbie
 
Registered: Jul 2009
Distribution: Fedora Core 11
Posts: 28

Original Poster
Rep: Reputation: 15
Wow, I had so many hard times with Fedora, it was buggy, weird, and not user friendly so I just reinstalled and put the latest Ubuntu and it mounts my drives no problem with no commands required. It already has all my needed drivers, works better, starts faster. ITs 10x better for noobs then Fedora i think. Thanks for the help though, since I am new to linux I plan on wasting some DVD's so i can try a bunch of different linuxes including gentoo, pclinux, slackware, mandriva, and bunch of others just for the heck of it, but Ubuntu seems a lot more noob-friendly so I am sticking with that for now.

-THANKS for the help, its just fedora is not for a linux noob.
 
Old 09-13-2009, 11:01 AM   #24
lutusp
Member
 
Registered: Sep 2009
Distribution: Fedora
Posts: 835

Rep: Reputation: 102Reputation: 102
Quote:
Originally Posted by BumbleBee View Post

[ snip ]

So then since it failed, I went into my mnt directory and found that "mount-point" was not there. So I went back to terminal and tried to make another mount-point by typing this command

"mkdir /mnt/moint point"
The directory name you have chosen has a space in it. I personally don't allow spaces in my file names and paths, but you can do this if you want. But to do it, you need to enclose the path in quotes:

# mkdir "/mnt/mount point"

# mount -t ntfs /dev/sdb1 "/mnt/mount point"

Then, every time you want to refer to this mount point, you will have to remember to enclose the path in quotes. Over a period of years you will type so many extra quotes that you might have spent that lost time inventing a cure for cancer instead. But it's a free world and we all choose our own paths ... umm, no pun intended.

The alternative is not to allow spaces in paths and file names:

# mkdir /mnt/mount_point

# mount -t ntfs /dev/sdb1 /mnt/mount_point
 
Old 09-13-2009, 08:10 PM   #25
BumbleBee
LQ Newbie
 
Registered: Jul 2009
Distribution: Fedora Core 11
Posts: 28

Original Poster
Rep: Reputation: 15
Well, I wont be able to do that now, because I took my hammer, smashed Fedora and put on Ubuntu and been using it so far all day, all i can say is that, it might take a bit getting used to but its interface is similar to fedora's but its way more user friendly so once I learn simple things like that then I will move to fedora core 12 which hopefully will be better then core 11 becuase core 11 i think gives a bad representation of linux overall.
-There were so many problems I also had with fedora i never told you about, there was a wierd virtual secured hard drive which did not exist and i couldn't access it which was wierd, plus the add/remove software worked really weird i had no clue how to use while in ubuntu is way better.
 
Old 09-13-2009, 08:24 PM   #26
lhorace
Member
 
Registered: Aug 2009
Distribution: Fedora
Posts: 126

Rep: Reputation: 21
Sad you haven't had any luck with Fedora 11 and when I had it installed, it detected ntfs out of box with no probs... I'm using Fedora 10 and I don't think Fedora 11 is completely ready but I heard from another community member that CentOS is good...
 
  


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
aa1 - How do I edit fstab to automount external ntfs-3g hdd? hegemoni Linux - Newbie 1 03-15-2009 09:52 AM
External HDD+Ntfs delta_9 SUSE / openSUSE 2 01-02-2008 11:46 AM
NTFS to FAT32 - External HDD SugarHiccup General 4 03-17-2007 01:39 PM
debian and ntfs external hdd wael_nasreddine Debian 22 03-16-2005 07:22 PM
External USB HDD with captive-ntfs alfonx Linux - Software 0 11-13-2004 01:20 PM

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

All times are GMT -5. The time now is 06:15 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