1

Windows recognizes and gives my fedora partition a drive letter, but it shows it as blank. Is there a way to get windows to read ext3 filesystem? Its a Fedora 10 partition.

tshepang
  • 12,111
  • 21
  • 91
  • 136
ryansstack
  • 1,396
  • 1
  • 15
  • 33

3 Answers3

2

I'd take a look at EXT2 IFS for Windows.

Several things to keep in mind with this.

  • Ext3 is backwards compatible with Ext2, it just doesn't write to the journal
  • NTFS is case insensitive, this may screw with you depending on what you are moving
  • Some filenames that are valid in Ext2/3 are invalid in NTFS/VFAT like : and $
  • Special files will be inaccessible, sockets, soft links, block devices
  • permissions are not maintained
  • Will not work with LVM volumes

It will let you read and write to it though ;)

JensenDied
  • 661
  • 5
  • 8
0

See the answers to my similar question on ServerFault.com:

Summary of the best answer I got (and other answers were later deleted, I assume by their authors): Use ntfs-3g to access the NTFS filesystem from Linux. You will have a much smaller chance of filesystem corruption doing it this way than using any of the existing ext2/3 drivers from Windows.

Community
  • 1
  • 1
Eddie
  • 53,828
  • 22
  • 125
  • 145
  • way to link to a private beta – ryansstack May 21 '09 at 22:34
  • I think he just wants to gloat about having an invite. ;) – JensenDied May 21 '09 at 22:40
  • Check out the blog. At the bottom of every StackOverflow page is a link to the blog. There are two recent blog entries directly related to the beta of ServerFault. – Eddie May 21 '09 at 23:13
  • @ryansstack: If a question is closed as "belongs on serverfault" then it appears to automatically be moved over there. I figured, therefore, that it was acceptable to crosslink. – Eddie May 21 '09 at 23:17
  • To whomever downvoted my answer: What about my answer is incorrect or offensive? – Eddie May 21 '09 at 23:37
0

I know that you want to mount your Fedora partition but from experience I have found that the best way to share a partition with Windows is to format as NTFS and use ntfs-3g to access it in Linux.

I tried using the ext2 Windows app mentioned by JensenDied a couple of years ago and ended up having problems accessing data on the USB drive that it was being used with.

Mark
  • 28,783
  • 8
  • 63
  • 92