Bug 430084 - RFE: Add abillity to define ntfs mount points in anaconda
Summary: RFE: Add abillity to define ntfs mount points in anaconda
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: anaconda
Version: rawhide
Hardware: All
OS: Linux
low
low
Target Milestone: ---
Assignee: Jeremy Katz
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks: AnacondaStorage
TreeView+ depends on / blocked
 
Reported: 2008-01-24 14:12 UTC by Valent Turkovic
Modified: 2009-02-16 21:09 UTC (History)
2 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed: 2009-02-16 21:09:41 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)
Patch to enable ntfs-3g mounts (4.21 KB, patch)
2009-01-08 23:02 UTC, Tom "spot" Callaway
no flags Details | Diff
Follow-up patch (751 bytes, patch)
2009-01-08 23:26 UTC, Tom "spot" Callaway
no flags Details | Diff

Description Valent Turkovic 2008-01-24 14:12:13 UTC
Description of problem:
If you look at this bug:
https://bugzilla.redhat.com/show_bug.cgi?id=35236
you will see that fedora now supports ntfs via 3g-ntfs you need to add your
paritions manually after the install to me mounted.

Anaconda needs to be able to handle ntfs partition so users during the install
can define where they would like their ntfs partitions to be mounted.

Version-Release number of selected component (if applicable):


How reproducible:


Steps to Reproduce:
1.
2.
3.
  
Actual results:


Expected results:


Additional info:

Comment 1 Valent Turkovic 2008-02-11 13:53:32 UTC
I tested latest rawhide (Fedora 9 Alpha) and it also is missing this feature.

Comment 2 Jon Stanley 2008-04-23 20:29:44 UTC
Adding FutureFeature keyword to RFE's.

Comment 3 Valent Turkovic 2008-06-04 07:07:54 UTC
I tested this feature in Fedora 9 final release and it is not there. Will this
be in Fedora 10?

Comment 4 Tom "spot" Callaway 2008-08-10 00:07:25 UTC
Wouldn't something like this be sufficient to achieve this?

--- anaconda-11.4.1.26/fsset.py.BAD	2008-08-09 20:05:21.000000000 -0400
+++ anaconda-11.4.1.26/fsset.py	2008-08-09 20:05:57.000000000 -0400
@@ -1022,6 +1022,8 @@ class NTFSFileSystem(FileSystemType):
         log.warning("Unable to discover minimum size of filesystem on %s" %(device,))        
         return 1
 
+    def getMountName(self, quoted = 0):
+        return "ntfs"
 
 fileSystemTypeRegister(NTFSFileSystem())

Comment 5 Chris Lumens 2008-12-11 22:16:29 UTC
That won't work, because we still check the return value of getMountName() to see if it's supported by the kernel.  "Supported by the kernel" is defined as being listed in /proc/filesystems.  The ntfs-3g stuff exists completely outside of the kernel so doing this right requires:

(1) Adding ntfs-3g to upd-instroot and making sure its programs are on the install.img.

(2) Modifying our definition of supported filesystems to also include anything that's supported by programs external to the kernel.

(3) Then going through and making sure the UI supports the new type everywhere, etc.

Comment 6 Tom "spot" Callaway 2009-01-08 23:02:31 UTC
Created attachment 328504 [details]
Patch to enable ntfs-3g mounts

While you said that anaconda asks the kernel what filesystems are supported, I could not find any code that did that. Instead, what I found was isLinuxNativeFS(), which simply checked to see if self.linuxnativefs was set. I altered that function to first check if self.fusefs was set, and return that instead if it was. This is untested by me, but I think it should do the trick.

Comments welcomed.

Comment 7 Tom "spot" Callaway 2009-01-08 23:26:14 UTC
Created attachment 328509 [details]
Follow-up patch

Immediately after writing the description for the last patch, I realized where it was looking through /proc/filesystems. It only seems to do this for a fstype if isMountable is not overridden, so I overrode it in the NTFSFilesystem case. This patch should be applied after the previously attached patch.

Comment 8 Jeremy Katz 2009-01-12 16:53:07 UTC
This won't quite do the trick, but it is close.  The things I see off-hand that need fixing are
a) We don't want ntfs to be linuxnativefs -- that would allow us to use ntfs for things like /usr.  Instead, we care more about supportable and mountable
b) We probably should have the isMountable() check also for the fact that fuse really is loaded.


Those said, I'll fix those up after lunch.

Comment 9 Jeremy Katz 2009-01-12 23:20:16 UTC
Okay, after giving up on getting something useful for testing and just going instead on the "fix it up and hope I'm right", I've sent something to anaconda-devel-list for review.  So should be in soon, hopefully in time for the alpha


Note You need to log in before you can comment on or make changes to this bug.