<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Shailen Sobhee : Blog &#187; mount ntfs</title>
	<atom:link href="http://digitalgraphy.wordpress.com/tag/mount-ntfs/feed/" rel="self" type="application/rss+xml" />
	<link>http://digitalgraphy.wordpress.com</link>
	<description>RedHat:::Fedora::Photoshop</description>
	<lastBuildDate>Wed, 25 Feb 2009 05:02:32 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='digitalgraphy.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/9dddb4d0ff9a7cec9da106296b5beb67?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Shailen Sobhee : Blog &#187; mount ntfs</title>
		<link>http://digitalgraphy.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://digitalgraphy.wordpress.com/osd.xml" title="Shailen Sobhee : Blog" />
		<item>
		<title>Mount NTFS in Read-Write Mode on Fedora 7</title>
		<link>http://digitalgraphy.wordpress.com/2007/10/07/mount-ntfs-in-read-write-mode/</link>
		<comments>http://digitalgraphy.wordpress.com/2007/10/07/mount-ntfs-in-read-write-mode/#comments</comments>
		<pubDate>Sun, 07 Oct 2007 10:07:14 +0000</pubDate>
		<dc:creator>Shailen Sobhee</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[mount ntfs]]></category>
		<category><![CDATA[ntfs]]></category>
		<category><![CDATA[ntfs-3g]]></category>
		<category><![CDATA[read]]></category>
		<category><![CDATA[read write mode]]></category>
		<category><![CDATA[redhat]]></category>
		<category><![CDATA[shailen]]></category>
		<category><![CDATA[sobhee]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://digitalgraphy.wordpress.com/2007/10/07/mount-ntfs-in-read-write-mode/</guid>
		<description><![CDATA[
Note: Feel free to ask questions; I&#8217;m here to help and learn..
Today I feel so excited after writing my first boot script for my new Fedora 7 (Moonshine). The script is simple and all it does is mount Windows NTFS File systems on startup so that you can access and write your windows partition while [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalgraphy.wordpress.com&blog=1855450&post=4&subd=digitalgraphy&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="http://www.geeks.com/techtips/2006/Images/NTFS-tt93.gif" alt="NTFS-3g" height="188" width="261" /></p>
<p align="center"><strong>Note: Feel free to ask questions; I&#8217;m here to help and learn..</strong></p>
<p>Today I feel so excited after writing my first boot script for my new Fedora 7 (Moonshine). The script is simple and all it does is mount Windows NTFS File systems on startup so that you can access and write your windows partition while using your linux.</p>
<p>So far, it was impossible to write to NTFS (because of some highly despised copyright issues from..euhh..ok)</p>
<p>With my workaround, you will be able to:</p>
<p>1) Boot on your linux machine and use it as usual,<br />
2) Access and write your NTFS partition (containing Windows XP/Vista),<br />
3) Worry not about mouting procedures.</p>
<p>All, you have to do is read carefully my artcle, follow it step-by-step, and sit back and relax.</p>
<p>Prerequisites:<br />
I know, prereqs aren&#8217;t nice when all the simple steps are just below. Anyway, pass this test first and you are all done. However, don&#8217;t worry about googling for the prereq tools; they are all here:</p>
<p><a href="http://rapidshare.com/files/62314028/fuse_complete.fc7.tar.gz" target="_blank">Fedora 7 Moonshine Packages</a></p>
<p><a href="http://rapidshare.com/files/62314029/fuse_complete.rhel5.tar.gz" target="_blank">Redhat Enterprise Linux 5 Packages</a></p>
<p>(Sorry for using rapidshare.com; I lack sponsorship -_-&#8217; )</p>
<p>You need:<br />
1) Fuse (a software that interacts with the userspace)<br />
2) the ntfs-3g fuse plug-in.</p>
<p>Step1:</p>
<p>Create a folder. You will access that folder in linux just like you type C:/ in windows to list the contents of wherever Windows and its Documents and Settings etc are located.</p>
<pre>mkdir /mnt/windows</pre>
<p>Step2:<br />
Extract the fuse_complete.fc7.tar.gz file to /opt/temp. Go into the directory where you have save the file (suppose it is on the Desktop, do a cd /home/myname/Desktop). Then, issue these commands:</p>
<pre>su
mkdir /opt/temp
tar -xzf fuse_complete.fc7.tar.gz /opt/temp</pre>
<p>Install fuse and ntfs-3g</p>
<pre>cd /opt/temp
rpm -Uvh * --force --nodeps</pre>
<p>Step3:</p>
<p>Now that you have installed Fuse and the NTFS plug-in, you have to configure Fedora such that it mounts the NTFS partition on each boot. The procedure is simple. I have written a simple script to do that:</p>
<p>#!/bin/bash<br />
# Created by Shailen Sobhee<br />
# chkconfig: 012345 99 02<br />
# description: Mounts NTFS on startup</p>
<p>case $1 in<br />
*)</p>
<blockquote><p> echo &#8220;Mounting Pirated Windows XP NTFS Filesystem to /mnt/windows&#8221;<br />
mount /dev/sda1 /mnt/windows</p></blockquote>
<p>;;<br />
esac</p>
<p>#End of boot script</p>
<p>The script is called mntntfs and its located in /opt/temp. To allow Fedora to use the boot script, you have to copy it in the /etc/rc.d/init.d folder and run the following commands:</p>
<pre>cp /opt/temp/mntntfs /etc/rc.d/init.d
cd /etc/rc.d/init.d
/sbin/chkconfig --add mntntfs
chmod +x mntntfs</pre>
<p>Step4:</p>
<p>That&#8217;s it!! Reboot and check if fuse-ntfs works. Go to /mnt/windows to see if your windows has loaded.</p>
<p>Step5:</p>
<p>If the folder has not been mounted, then you are probably using another medium, other that &#8217;sda1&#8242; that I used in my script. In that case, you will have to check that manually:</p>
<p>Try one of these, while checking on another terminal screen if /mnt/windows has been mounted.</p>
<p>mount /dev/sda /mnt/windows</p>
<p>mount /dev/sda2 /mnt/windows</p>
<p>mount /dev/hda /mnt/windows</p>
<p>mount /dev/hda1 /mnt/windows</p>
<p>mount /dev/hda2 /mnt/windows</p>
<p>Try other combinations of mediums (sda,hda) to check your NTFS partition medium.</p>
<p>Do the necessary modification in the script:</p>
<pre>vi /etc/rc.d/init.d/mntntfs</pre>
<p>Have Fun!</p>
<p>And don&#8217;t forget to post your comments, so I can improve on this article. Thanks.</p>
<p>Shailen, serving the Open Source World, yet again..</p>
<p>To do: The Newbies&#8217; Guide to NTFS for Linux (Jeff&#8217;s recommendation)</p>
<h6>Updates:</h6>
<p>3 Nov 2007: Minor code modifications/optimisations.</p>
<p>10 Nov 2007: Minor article update /improved explanations.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/digitalgraphy.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/digitalgraphy.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/digitalgraphy.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/digitalgraphy.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/digitalgraphy.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/digitalgraphy.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/digitalgraphy.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/digitalgraphy.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/digitalgraphy.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/digitalgraphy.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/digitalgraphy.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/digitalgraphy.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=digitalgraphy.wordpress.com&blog=1855450&post=4&subd=digitalgraphy&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://digitalgraphy.wordpress.com/2007/10/07/mount-ntfs-in-read-write-mode/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cf5229ed1d6eb5f702ec10e7c6bcc758?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ThunderB</media:title>
		</media:content>

		<media:content url="http://www.geeks.com/techtips/2006/Images/NTFS-tt93.gif" medium="image">
			<media:title type="html">NTFS-3g</media:title>
		</media:content>
	</item>
	</channel>
</rss>