<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Automount NTFS/HFS+ on Dockstar Debian</title>
        <description>I have a question about autofs and NTFS, would appreciate any pointer to the right direction. 

After installing autofs, I modified the auto.master file, and created the auto.usb file.

/etc/auto.master contains this rule:

           [i]/mnt/usb    /etc/auto.usb --timeout 10  --ghost[/i]

and /etc/auto.usb contains this rule

          [i]*       -fstype=auto,async       :/dev/sd&amp;[/i]

Autofs auto-mounted all USB thumb or hard drives that I plugged and assigned the mount points correctly, as long the USB drive is not NTFS. It seems that it would not auto-mount NTFS drive using the option &quot;fstype=auto&quot;. I've also tried the option &quot;fstype=ntfs&quot; in the auto.usb file, and that did not work either.

And I've verified that I can mount NTFS drives manually using mount commands to mount the NTFS drive to a test directory such as &quot;mount -t ntfs /dev/sdb1 /usb/testDir&quot; 

Thanks for any advice!

Addendum (03/15/02): Modified post title to add HFS+ auto-mounting in more recent posts</description>
        <link>http://forum.doozan.com/read.php?2,3910,3910#msg-3910</link>
        <lastBuildDate>Sun, 19 May 2013 02:20:20 -0400</lastBuildDate>
        <generator>Phorum 5.2.18</generator>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,7592#msg-7592</guid>
            <title>Re: Automount NTFS/HFS+ on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,7592#msg-7592</link>
            <description><![CDATA[ In that case, you need something like<br />
<br />
<pre class="bbcode">
ENV{ID_FS_TYPE}==&quot;exfat&quot;, ENV{cmd1}=&quot;/bin/mount&quot;
ENV{ID_FS_TYPE}!=&quot;exfat&quot;, ENV{cmd1}=&quot;/usr/bin/pmount&quot;

ENV{ID_FS_TYPE}==&quot;exfat&quot;, ENV{fs1}=&quot;exfat-fuse&quot;
ENV{ID_FS_TYPE}!=&quot;exfat&quot;, ENV{fs1}=%E{ID_FS_TYPE}&quot;

ACTION==&quot;add&quot;, RUN+=&quot;%E{cmd1} -t %E{fs1} %E{mode} --noatime --umask 000 %k %E{name}&quot;</pre>
<br />
The idea is to substitute the variables with correct keywords in the Add rules.]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Sat, 14 Apr 2012 05:21:20 -0400</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,7589#msg-7589</guid>
            <title>Re: Automount NTFS/HFS+ on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,7589#msg-7589</link>
            <description><![CDATA[ pmount gives me this<br />
<br />
<pre class="bbcode">
pmount -t exfat-fuse /dev/sdb1 /media/test 
Error: invalid file system name 'exfat-fuse'</pre>
<br />
pmount's man page sounds like this might not work because it doesn't support exfat. small shame since i keep some of my thumbdrives in exfat to go back and forth between windows and mac. at least it mounts my FAT32 and NTFS ones. it even mounted an HFS+ one in read only.<br />
<br />
<pre class="bbcode">
SUPPORTED FILESYSTEMS
       For now, pmount supports the following filesystems: udf, iso9660, vfat, ntfs, hfsplus, hfs, ext3, ext2, ext4, reis-
       erfs, reiser4, xfs, jfs and omfs.  They are tried sequentially in that exact order when the filesystem is not spec-
       ified.

       Additionally, pmount supports the filesystem types ntfs-fuse and ntfs-3g to mount NTFS  volumes  respectively  with
       ntfsmount  (1)  or  ntfs-3g (1). If the file /sbin/mount.ntfs-3g is found, then pmount will mount NTFS filestystems
       with type ntfs-3g rather than plain ntfs.  To disable this behavior, just specify -t ntfs on the  command-line,  as
       this happens only for autodetection.
</pre>]]></description>
            <dc:creator>troutsoup</dc:creator>
            <category>Debian</category>
            <pubDate>Fri, 13 Apr 2012 22:59:25 -0400</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,7588#msg-7588</guid>
            <title>Re: Automount NTFS/HFS+ on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,7588#msg-7588</link>
            <description><![CDATA[ Right! sorry about the typo, I meant udevadm. The out put of udevadm shows that ID_FS_TYPE=exfat. So that's what pmount uses in kraqh3d's udev automount rules.<br />
<br />
How about trying both mount and pmount at the command line to verify : <br />
<br />
<pre class="bbcode">
pmount -t exfat /dev/sdb1 /media/mountpoint
mount -t exfat /dev/sdb1 /media/mountpoint</pre>
<br />
<br />
If they fail, then I think the exfat module is not in the system (lib/modules/x.x.x-kirwood/kernel/fs). Then try<br />
   <pre class="bbcode">
pmount -t exfat-fuse /dev/sdb1 /media/mountpoint</pre>
<br />
if this pmount works then you can add to the udev rules so that it's automounted with exfat-fuse as file system type. Something like this:<br />
<br />
<pre class="bbcode">
ENV{ID_FS_TYPE}==&quot;exfat&quot;, ENV{mode3}=&quot;exfat-fuse&quot;
ENV{ID_FS_TYPE}!=&quot;exfat&quot;, ENV{mode3}=%E{ID_FS_TYPE}&quot;


ACTION==&quot;add&quot;, RUN+=&quot;/usr/bin/pmount -t %E{mode3} %E{mode} %E{mode2} --noatime --umask 000 %k %E{name}&quot;</pre>
<br />
<br />
I don't use exfat so can't test this. But that's what I would try. Note that my add Action is slightly different from kraqh3d's original rule.]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Fri, 13 Apr 2012 19:56:51 -0400</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,7585#msg-7585</guid>
            <title>Re: Automount NTFS/HFS+ on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,7585#msg-7585</link>
            <description><![CDATA[ i have a udevadm command, it gives a ton of info about the drive. it shows &quot;ID_FS_TYPE=exfat&quot; but the mount command i tell it that its type &quot;exfat-fuse&quot;... is there a way to map exfat to use exfat-fuse?<br />
<br />
thanks!<br />
<br />
<pre class="bbcode">
udevadm info --query=all --name=/dev/sdb1
P: /devices/platform/orion-ehci.0/usb1/1-1/1-1.3/1-1.3:1.0/host7/target7:0:0/7:0:0:0/block/sdb/sdb1
N: sdb1
S: disk/by-id/usb-Kingston_DataTraveler_109_00187D1174F1EC10E0003168-0:0-part1
S: disk/by-label/Kingston
S: disk/by-path/platform-orion-ehci.0-usb-0:1.3:1.0-scsi-0:0:0:0-part1
S: disk/by-uuid/4F75-E6B4
E: DEVLINKS=/dev/disk/by-id/usb-Kingston_DataTraveler_109_00187D1174F1EC10E0003168-0:0-part1 /dev/disk/by-label/Kingston /dev/disk/by-path/platform-orion-ehci.0-usb-0:1.3:1.0-scsi-0:0:0:0-part1 /dev/disk/by-uuid/4F75-E6B4
E: DEVNAME=/dev/sdb1
E: DEVPATH=/devices/platform/orion-ehci.0/usb1/1-1/1-1.3/1-1.3:1.0/host7/target7:0:0/7:0:0:0/block/sdb/sdb1
E: DEVTYPE=partition
E: ID_BUS=usb
E: ID_FS_LABEL=Kingston
E: ID_FS_LABEL_ENC=Kingston
E: ID_FS_TYPE=exfat
E: ID_FS_USAGE=filesystem
E: ID_FS_UUID=4F75-E6B4
E: ID_FS_UUID_ENC=4F75-E6B4
E: ID_FS_VERSION=1.0
E: ID_INSTANCE=0:0
E: ID_MODEL=DataTraveler_109
E: ID_MODEL_ENC=DataTraveler\x20109
E: ID_MODEL_ID=6545
E: ID_PART_ENTRY_DISK=8:16
E: ID_PART_ENTRY_NUMBER=1
E: ID_PART_ENTRY_OFFSET=2
E: ID_PART_ENTRY_SCHEME=dos
E: ID_PART_ENTRY_SIZE=30481150
E: ID_PART_ENTRY_TYPE=0x7
E: ID_PART_TABLE_TYPE=dos
E: ID_PATH=platform-orion-ehci.0-usb-0:1.3:1.0-scsi-0:0:0:0
E: ID_PATH_TAG=platform-orion-ehci_0-usb-0_1_3_1_0-scsi-0_0_0_0
E: ID_REVISION=PMAP
E: ID_SERIAL=Kingston_DataTraveler_109_00187D1174F1EC10E0003168-0:0
E: ID_SERIAL_SHORT=00187D1174F1EC10E0003168
E: ID_TYPE=disk
E: ID_USB_DRIVER=usb-storage
E: ID_USB_INTERFACES=:080650:
E: ID_USB_INTERFACE_NUM=00
E: ID_VENDOR=Kingston
E: ID_VENDOR_ENC=Kingston
E: ID_VENDOR_ID=0930
E: MAJOR=8
E: MINOR=17
E: SUBSYSTEM=block
E: UDEV_LOG=3
E: USEC_INITIALIZED=3969473999
E: name=Kingston
</pre>]]></description>
            <dc:creator>troutsoup</dc:creator>
            <category>Debian</category>
            <pubDate>Fri, 13 Apr 2012 11:28:50 -0400</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,7575#msg-7575</guid>
            <title>Re: Automount NTFS/HFS+ on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,7575#msg-7575</link>
            <description><![CDATA[ Please post the output of<br />
<br />
udevadmin info --query=all --name=/dev/sdxx<br />
<br />
where sdxx is the drive letter for your exfat drive.]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Thu, 12 Apr 2012 02:42:50 -0400</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,7573#msg-7573</guid>
            <title>Re: Automount NTFS/HFS+ on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,7573#msg-7573</link>
            <description><![CDATA[ any idea how to get this to mount exfat automatically with udev?  i have the fuse exfat module installed and can mount them with the regular mount command.<br />
<br />
<pre class="bbcode">
mount -t exfat-fuse /dev/sdb1 /media/mountpoint</pre>
<br />
ext, ntfs-3g and fat32 work great with the udev configuration kraqh3d posted.]]></description>
            <dc:creator>troutsoup</dc:creator>
            <category>Debian</category>
            <pubDate>Wed, 11 Apr 2012 15:35:24 -0400</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,7375#msg-7375</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,7375#msg-7375</link>
            <description><![CDATA[ Here is the work around I came up for aumounting HFSplus drive as Read/Write. It seems to work fine. I've only tested by transferring a few small and few large files. So far no problem with Writes.<br />
<br />
<b>IMPORTANT</b>: it is explicitly stated in the man page for Debian HFSplus package that Write capability is still <b>experimental and unsupported</b>. So my intention is to use the HFSplus formatted drive mostly in Read-only mode, and only writing to it occasionally. Probably best with a disk/file system error check whenever it's plugged back into a Mac. <br />
 <br />
<br />
<pre class="bbcode">
root@Ds1:/etc/udev/rules.d# cat 70-automount.rules

# NOTE: 
#       1. use pmount --sync if drive label ends with Sync/SYNC/sync in add action to allow removal without corruption
#       2. avoid mounting EFI partition for a HFS+ drive
#       3. force mount HFS+ partition as read-write

KERNEL!=&quot;sd*&quot;, GOTO=&quot;media_label_end&quot;
ENV{ID_USB_DRIVER}!=&quot;usb-storage&quot;, GOTO=&quot;media_label_end&quot;

IMPORT{program}=&quot;/sbin/blkid -o udev -p %N&quot;, ENV{name}=&quot;%E{ID_FS_LABEL}&quot;
ENV{ID_FS_TYPE}==&quot;&quot;, GOTO=&quot;media_label_end&quot;

ENV{ID_FS_LABEL}!=&quot;EFI&quot;, GOTO=&quot;continue&quot;
ENV{ID_PART_TABLE_TYPE}==&quot;gpt&quot;, GOTO=&quot;media_label_end&quot;

LABEL=&quot;continue&quot;

ENV{name}==&quot;&quot;, ENV{name}=&quot;%k&quot;

KERNEL==&quot;sd*&quot;, SYMLINK+=&quot;usb-storage/%E{name}&quot;

ENV{name}==&quot;*SYNC&quot;, ENV{mode}=&quot;--sync&quot;
ENV{name}==&quot;*Sync&quot;, ENV{mode}=&quot;--sync&quot;
ENV{name}==&quot;*sync&quot;, ENV{mode}=&quot;--sync&quot;
ENV{name}!=&quot;*SYNC&quot;, ENV{mode}=&quot;&quot;

ENV{ID_FS_TYPE}==&quot;hfsplus&quot;, ENV{mode2}=&quot;--read-write&quot;
ENV{ID_FS_TYPE}==&quot;hfsplus&quot;, ENV{mode3}=&quot;/bin/mount -v -o remount,force,rw /media/%E{name}&quot;
ENV{ID_FS_TYPE}!=&quot;hfsplus&quot;, ENV{mode3}=&quot;/usr/bin/pmount&quot;

ACTION==&quot;add&quot;, RUN+=&quot;/usr/bin/pmount -t %E{ID_FS_TYPE} %E{mode} %E{mode2} --noatime --umask 000 %k %E{name}&quot;
ACTION==&quot;add&quot;, RUN+=&quot;%E{mode3}&quot;
ACTION==&quot;remove&quot;, RUN+=&quot;/usr/bin/pumount --yes-I-really-want-lazy-unmount %E{name}&quot;

LABEL=&quot;media_label_end&quot;
</pre>]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Fri, 16 Mar 2012 00:06:33 -0400</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,7272#msg-7272</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,7272#msg-7272</link>
            <description><![CDATA[ kraqh3d,<br />
<br />
I thought you might find this problem interesting and could give me some help. I've changed the automount rules to do these: <br />
- async/sync (we took care of this)<br />
- mount Mac OSX HFS+ partitions as read/write and ignore the EFI boot partition on those HFS+ drives. <br />
<br />
The part that I can't make it work is forcing the HFS+ partition to be mounted as read-write, using pmount. Here is the rules file:<br />
<br />
<pre class="bbcode">
root@Ds1:/etc/udev/rules.d# cat 70-automount.rules
# NOTE: 
#       1. use pmount --sync if drive label ends with Sync/SYNC/sync in add action to allow removal without corruption
#       2. avoid mounting EFI partition for a HFS+ drive
#       3. force mount HFS+ partition as read-write

KERNEL!=&quot;sd*&quot;, GOTO=&quot;media_label_end&quot;
ENV{ID_USB_DRIVER}!=&quot;usb-storage&quot;, GOTO=&quot;media_label_end&quot;

IMPORT{program}=&quot;/sbin/blkid -o udev -p %N&quot;, ENV{name}=&quot;%E{ID_FS_LABEL}&quot;
ENV{ID_FS_TYPE}==&quot;&quot;, GOTO=&quot;media_label_end&quot;

ENV{ID_FS_LABEL}!=&quot;EFI&quot;, GOTO=&quot;continue&quot;
ENV{ID_PART_TABLE_TYPE}==&quot;gpt&quot;, GOTO=&quot;media_label_end&quot;

LABEL=&quot;continue&quot;

ENV{name}==&quot;&quot;, ENV{name}=&quot;%k&quot;

KERNEL==&quot;sd*&quot;, SYMLINK+=&quot;usb-storage/%E{name}&quot;

ENV{name}==&quot;*SYNC&quot;, ENV{mode}=&quot;--sync&quot;
ENV{name}==&quot;*Sync&quot;, ENV{mode}=&quot;--sync&quot;
ENV{name}==&quot;*sync&quot;, ENV{mode}=&quot;--sync&quot;
ENV{name}!=&quot;*SYNC&quot;, ENV{mode}=&quot;&quot;

ENV{ID_FS_TYPE}==&quot;hfsplus&quot;, ENV{mode2}=&quot;--read-write&quot;

ACTION==&quot;add&quot;, RUN+=&quot;/usr/bin/pmount -t %E{ID_FS_TYPE} %E{mode} %E{mode2} --noatime --umask 000 %k %E{name}&quot;
ACTION==&quot;remove&quot;, RUN+=&quot;/usr/bin/pumount --yes-I-really-want-lazy-unmount %E{name}&quot;

LABEL=&quot;media_label_end&quot;</pre>
<br />
Now this always results in the usual warning for mounting a HFS+ partition as read-only, and it was mounted as &quot;ro&quot;. And when I tried to pmount it at command line, I got the same result:<br />
<br />
<pre class="bbcode">
root@Ds1:/etc/udev/rules.d# pmount -t hfsplus --noatime --umask 000 --read-write /dev/sdb2 HFSpDrive
mount: warning: /media/HFSpDrive seems to be mounted read-only.</pre>
<br />
If I use &quot;mount&quot; to mount this drive with &quot;force read-write&quot; option, then it is mount as read-write correctly without complaining. <br />
<br />
But not possible with pmount! Strange?<br />
<br />
Anybody knows why, please post.]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Tue, 06 Mar 2012 00:59:00 -0500</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,6227#msg-6227</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,6227#msg-6227</link>
            <description><![CDATA[ kraqh3d Wrote:<br />
-------------------------------------------------------<br />
&gt; Hey Bodhi, I thought you would find this<br />
&gt; interesting... I was more than happy with the<br />
&gt; performance with the sync option so I never looked<br />
&gt; at async mode.   Until very recently, I'd only had<br />
&gt; USB attached discs.  This time I was using a flash<br />
&gt; media (ie conforming to the USB Mass Storage spec)<br />
&gt; and they are apparently very different from USB<br />
&gt; attached hard drives.  They have absolutely<br />
&gt; dreadful performance with the sync option.  I<br />
&gt; tried a PSP, a USB to MicroSD card reader, and<br />
&gt; some USB flash sticks.  In all cases I was lucky<br />
&gt; to get 100KB/s write speeds.  First I assumed they<br />
&gt; were being mounted as USB1.1.  I added the uhci<br />
&gt; driver to the blacklist to prevent it from being<br />
&gt; loaded but the problem persisted.  I remounted<br />
&gt; with async and voila, I got write speeds around<br />
&gt; 8MB/s.  (Still less than the hard drives with<br />
&gt; sync, but a hell of a lot better then 100KB/s.)  I<br />
&gt; need to rework the udev rule to check for them and<br />
&gt; to force them into async mode.  I found the key<br />
&gt; attribute to distinguish them from USB hard drives<br />
&gt; is ATTR{removable}==&quot;1&quot;.  I'll probably be<br />
&gt; experimenting with something like this, assume I<br />
&gt; can reference %E{options} in the second rule.<br />
&gt; <br />
&gt; ACTION==&quot;add&quot;, ATTR{removable}!=&quot;1&quot;,<br />
&gt; ENV{options}=&quot;--sync&quot;<br />
&gt; ACTION==&quot;add&quot;, ENV{options}==&quot;%E{options}<br />
&gt; --noatime --umask 000&quot;<br />
&gt; ACTION==&quot;add&quot;, RUN+=&quot;/usr/bin/pmount -t<br />
&gt; %E{ID_FS_TYPE} %E{options} %E{name}&quot;<br />
<br />
Indeed! it's really nice to have this as default setting for sync/async. And I think we can combine with the label name rule, too.That will recognize USB flash/HDD drives for special purpose.]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Wed, 09 Nov 2011 14:54:03 -0500</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,6226#msg-6226</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,6226#msg-6226</link>
            <description><![CDATA[ Hey Bodhi, I thought you would find this interesting... I was more than happy with the performance with the sync option so I never looked at async mode.   Until very recently, I'd only had USB attached discs.  This time I was using a flash media (ie conforming to the USB Mass Storage spec) and they are apparently very different from USB attached hard drives.  They have absolutely dreadful performance with the sync option.  I tried a PSP, a USB to MicroSD card reader, and some USB flash sticks.  In all cases I was lucky to get 100KB/s write speeds.  First I assumed they were being mounted as USB1.1.  I added the uhci driver to the blacklist to prevent it from being loaded but the problem persisted.  I remounted with async and voila, I got write speeds around 8MB/s.  (Still less than the hard drives with sync, but a hell of a lot better then 100KB/s.)  I need to rework the udev rule to check for them and to force them into async mode.  I found the key attribute to distinguish them from USB hard drives is ATTR{removable}==&quot;1&quot;.  I'll probably be experimenting with something like this, assume I can reference %E{options} in the second rule.<br />
<br />
ACTION==&quot;add&quot;, ATTR{removable}!=&quot;1&quot;, ENV{options}=&quot;--sync&quot;<br />
ACTION==&quot;add&quot;, ENV{options}==&quot;%E{options} --noatime --umask 000&quot;<br />
ACTION==&quot;add&quot;, RUN+=&quot;/usr/bin/pmount -t %E{ID_FS_TYPE} %E{options} %E{name}&quot;]]></description>
            <dc:creator>kraqh3d</dc:creator>
            <category>Debian</category>
            <pubDate>Wed, 09 Nov 2011 12:07:26 -0500</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,5406#msg-5406</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,5406#msg-5406</link>
            <description><![CDATA[ I believe the performance gained with samba using async mount will be substantial. I did not measure it, but it was visible enough when I looked.]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Wed, 20 Jul 2011 14:27:42 -0400</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,5402#msg-5402</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,5402#msg-5402</link>
            <description><![CDATA[ I'm kind of glad that you bumped this thread back up.  I never did get around to experimenting with aufs to merge my filesystems together for easier export through samba.   I also want to do some testing to time file copies.  I'm currently not running anything on my dockstar other than nfs and samba to export filesystems.  I can mount a disk with sync and async and copy a large file over the network to it (probably the Big Buck Bunny video file) using both samba and nfs and see what the difference is.  I can then try copying the same file locally, from another disk.  The funny thing is I'm getting torrents and nzb's but writing to the dockstar using a samba mount.  I may need to work up a simple system to dump torrent and nzb files to a directory that's monitored to auto-fetch.]]></description>
            <dc:creator>kraqh3d</dc:creator>
            <category>Debian</category>
            <pubDate>Tue, 19 Jul 2011 14:22:45 -0400</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,5401#msg-5401</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,5401#msg-5401</link>
            <description><![CDATA[ Thanks! I'm glad you like it :-) and by all mean, I've only extended your works a little bit.]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Tue, 19 Jul 2011 13:16:27 -0400</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,5398#msg-5398</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,5398#msg-5398</link>
            <description><![CDATA[ Nice enhancement.  I may borrow this.]]></description>
            <dc:creator>kraqh3d</dc:creator>
            <category>Debian</category>
            <pubDate>Tue, 19 Jul 2011 06:50:40 -0400</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,5395#msg-5395</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,5395#msg-5395</link>
            <description><![CDATA[ In light of recent posting about auto-mounting, just want to update my experience using these udev rules and pmount script. Working great :-) This setup takes any USB drives I've swap in and out flawlessly, to the point I've stopped being aware about it.<br />
<br />
I've since modified the rules and the mouting script to perform auto-mounting for USB drives that need write-optimized performance. For example, instead of unplugging the drive and move it to a PC to copy large video files, or when using USB HDD drive for transmission torrents.  Basically, if the drive label name ends with &quot;Async&quot; then the rules for mounting it is without the &quot;--sync&quot; option. This way, if the USB drive is rarely unplugged from the dockstar, then we can achieve maximum I/O performance. The only precaution needed is we should use webmin or ssh/telnet command line to un-mount it before unplugging.<br />
<br />
Change for /etc/udev/rules.d/90-automount.rules<br />
<br />
<pre class="bbcode">
<b>ENV{name}!=&quot;*Async&quot;, ENV{mode}=&quot;--sync&quot;
ENV{name}==&quot;*Async&quot;, ENV{mode}=&quot;&quot;</b>

ACTION==&quot;add&quot;, RUN+=&quot;/usr/bin/pmount -t %E{ID_FS_TYPE} %<b>E{mode}</b> --noatime --umask 000 %k %E{name}&quot;</pre>
<br />
Change for /root/usb-storage.pmount<br />
<br />
    <pre class="bbcode">
if [ -n &quot;$TYPE&quot; ] &amp;&amp; [ &quot;$TYPE&quot; != &quot;swap&quot; ]
    then
      echo &quot;$ROOT/$DEV&quot;
      <b>if [ `expr $DEV : '.*Async'` ]
      then
        OPTIONS=&quot;--noatime --umask 000&quot;
      fi</b>
      echo `$PMOUNT -t $TYPE $OPTIONS $ROOT/$DEV $DEV`
      break
    fi
</pre>]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Mon, 18 Jul 2011 22:50:04 -0400</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,4144#msg-4144</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,4144#msg-4144</link>
            <description><![CDATA[ kraqh3d,<br />
<br />
That would be great! And thanks for your work on XBMC early days. It's the best media player software I've ever used. I've learned a lot about how to build user interface with XML since I've started using it. Just like I've learned a lot about Linux system admin here in this forum. Many thanks to Jeff for his works and hosting this.<br />
<br />
bodhi]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Sun, 13 Mar 2011 17:54:41 -0400</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,4142#msg-4142</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,4142#msg-4142</link>
            <description><![CDATA[ Thanks for the info.  I'm going to wipe the swap partition and replace it with a swap file.  <br />
<br />
And I am intimately aware of the autoclean issue...  As it turned out, I was an Xbmc developer back from it's inception, when it only ran on the Xbox.  If you look through the old svn commit logs, you'll find that I made change that defaulted the &quot;cleanonupdate&quot; option to false because Xbmc can't tell the difference between a deleted item or an inaccessible item ;)<br />
<br />
(Ironically, before I &quot;retired' I had a plan to address that problem by marking the paths in the database as inaccessible.  These items could then be hidden from the library, but without actually being deleted.  At the next scan, if they were accessible again, the flag would be removed and they would be seen.  A option to show inaccessible items was discussed, as was a manual &quot;clean database&quot; action which would purge all the inaccessible items from the database.   Now that I have more time on my hands, maybe I will implement it.)]]></description>
            <dc:creator>kraqh3d</dc:creator>
            <category>Debian</category>
            <pubDate>Sun, 13 Mar 2011 14:40:48 -0400</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,4134#msg-4134</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,4134#msg-4134</link>
            <description><![CDATA[ Swap file is great. I created the swapfile at the root of the boot drive. So if the boot drive designation was moved around by other drive such as the Seagate GO drive connected to the small USB port, then it's still correct in fstab because it is simply stated as a file at root directory. I've barely used up memory, unless running a lot of video streaming while also using webmin to monitor the box (maximum swap I've used so far was 4-10KB). So far so good.<br />
<br />
With a single partition for boot drive, I also created a /localdisk as samba share so I have some temporary space to copy stuff in and out in if needed. I found this is the most convenient set up. Since the swap file, the debian sysem, and the /localdisk can use the remaining free space on this 4GB thumb drive to grow/shrink as needed. Currently my swap file is 1GB :-), just because it's can be shrunk any time.<br />
<br />
Your configuration is way more complicated than mine. I'm still moving some media files that are on an attached USB to the XBMC HTPC to  the Dockstar drive. BTW, in case you're not aware of the XBMC setting for cleaning library automatically, if the media drive is a network drive then don't use that setting. Because whenever the drive is offline, and you start XBMC, it will erase all library files like thumbnails and fan-arts for files on that source. I always set this to &quot;not cleaning automatically&quot; and then clean it once in a while when all media sources are online.]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Sat, 12 Mar 2011 17:37:27 -0500</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,4129#msg-4129</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,4129#msg-4129</link>
            <description><![CDATA[ How's the swap file working?<br />
<br />
I've noticed that swap is mounted by /etc/fstab from a direct device path, in my case /dev/sda2.  The root partition is loaded from a symlink /dev/root that points to the boot device, which is not always /dev/sda1.  (I'm not sure where this symlink is created.  I think possibly by the uboot scripts.)  The problem with this is that swap is only loaded when my root device is enumerated as /dev/sda.  I discovered this because I've been keeping an eye on memory usage with htop.  I found I barely exceed 80MB peak and that swap was unused and showing 0MB. <br />
<br />
So, I've been considering deleting my swap partition, and extending the ext2 boot partition to fill the entire device since its only a 1GB thumb drive.   I could then use no swap, which is what I noticed I'm mostly doing now, or use a 64MB swap file, strictly as a precaution.  <br />
<br />
My next thing is to better address my samba sharing.  I have a unique config using aliased NetBIOS names so that all my pre-existing Xbmc media paths in the database continue to work using fake names of &quot;music&quot; and &quot;video&quot; which were two other systems I've retired.  They are shared read-only.  I also have a master, unbrowseable share that's authenticated and provides read-write access.  My problem is that I have multiple media discs.  <br />
<br />
I'm considering using unionfs or aufs to provide consolidation points of /mnt/music and /mnt/video which will link up different disks.  Most of my USB disks only contain a single media type so I would simply give them labels of MUSIC_#, and VIDEO_#.  The plan being to try and group them together under a common mount point, so that /mnt/music collapses /media/MUSIC_* and /mnt/video collapses /media/VIDEO_*.   I haven't tried yet so I'm not sure if this will work with the on the fly mounting, given than not all /media/VIDEO_* may exist.]]></description>
            <dc:creator>kraqh3d</dc:creator>
            <category>Debian</category>
            <pubDate>Sat, 12 Mar 2011 11:57:55 -0500</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,4127#msg-4127</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,4127#msg-4127</link>
            <description><![CDATA[ kraqh3d,<br />
<br />
Thanks for this restart automount mod! fantastic! It is as flexible as it can be. Especially when using a swap file on the boot USB thumb drive (my boot drive has a single partition). I can now connect the boot drive to any of 4 USB ports. No need for hard coded fstab entry :-) <br />
<br />
I've also defined /media as samba share, so all automounted USB drives are visible to other PCs in the network whenever they are plugged in or after restarted, and go away when they are unplugged.<br />
<br />
bodhi]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Sat, 12 Mar 2011 02:42:54 -0500</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,4123#msg-4123</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,4123#msg-4123</link>
            <description><![CDATA[ Done!<br />
<br />
Below is my updated udev rule.  It adds a device symlink of /dev/usb-storage/%E{name} where %E{name} is either the label or the device name if there's no label.  (The SYMLINK directive is very particular.  I found you can't just append it to any rule.  I had to look at the base rules in /lib/udev/rules.d and compare.  After wasting a lot of time on this, I decided it was just easiest to filter out anything that was not a usb attached storage device, and then simply match on the kernel device name &quot;sd*&quot;.  If anyone has seen anything else such hd*, please let me know.)<br />
<br />
<pre class="bbcode">
root@debian:~# cat /etc/udev/rules.d/90-automount.rules

KERNEL!=&quot;sd*&quot;, GOTO=&quot;media_label_end&quot;
ENV{ID_USB_DRIVER}!=&quot;usb-storage&quot;, GOTO=&quot;media_label_end&quot;

IMPORT{program}=&quot;/sbin/blkid -o udev -p %N&quot;, ENV{name}=&quot;%E{ID_FS_LABEL}&quot;
ENV{ID_FS_TYPE}==&quot;&quot;, GOTO=&quot;media_label_end&quot;
ENV{name}==&quot;&quot;, ENV{name}=&quot;%k&quot;

KERNEL==&quot;sd*&quot;, SYMLINK+=&quot;usb-storage/%E{name}&quot;

ACTION==&quot;add&quot;, RUN+=&quot;/usr/bin/pmount -t %E{ID_FS_TYPE} --sync --noatime --umask 000 %k %E{name}&quot;
ACTION==&quot;remove&quot;, RUN+=&quot;/usr/bin/pumount %E{name}&quot;

LABEL=&quot;media_label_end&quot;</pre>
<br />
The script below will attempt to pmount all devices found under /dev/usb-storage.  It runs blkid against them to get the filesystem type.  I made it  skip any swap partitions.  Pmount will complain if a device is already mounted (such as the root partition) but there's no harm done.  Again, I decided it was just easier to let pmount try them all than bother checking against the output of mount, one reason being that mount always displays the native kernel device name, not the symlink'ed name.   And yes, its a bash script.  I know bash.  I didn't feel like wrestling with the sh shell.<br />
<br />
<pre class="bbcode">
root@debian:~# cat /root/usb-storage.pmount
#!/bin/bash

PMOUNT=`which pmount`
if [ -z &quot;$PMOUNT&quot; ]
then
 echo &quot;Error: $0 cant find pmount!&quot; 1&gt;&amp;2
 exit 1
fi
OPTIONS=&quot;--sync --noatime --umask 000&quot;

ROOT=&quot;/dev/usb-storage&quot;
for DEV in $( ls -1 $ROOT )
do
  BLKID=( `/sbin/blkid $ROOT/$DEV` )
  for ITEM in ${BLKID[@]}
  do
    TEMP=`expr match &quot;$ITEM&quot; 'TYPE=\&quot;\(.*\)\&quot;'`
    TYPE=${TEMP//\&quot;/}
    if [ -n &quot;$TYPE&quot; ] &amp;&amp; [ &quot;$TYPE&quot; != &quot;swap&quot; ]
    then
      echo &quot;$ROOT/$DEV&quot;
      echo `$PMOUNT -t $TYPE $OPTIONS $ROOT/$DEV $DEV`
      break
    fi
  done
done

exit 0</pre>
<br />
The final piece of the puzzle is that /etc/rc.local calls this script so that it's run at the very end of the boot up process, mounting all the attached file systems for you.   And just like before, the udev rule alone will handle any additions or removals from then on.<br />
<br />
<pre class="bbcode">
root@debian:~# cat /etc/rc.local
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will &quot;exit 0&quot; on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

/root/usb-storage.pmount

exit 0</pre>
<br />
If anyone wants to take this a step further, it could be converted to a proper startup script.  The script should be converted to /bin/sh, an INIT section added, moved into /etc/init.d, and then symlinked into the run-level directories with update-rc.d like any other startup script.]]></description>
            <dc:creator>kraqh3d</dc:creator>
            <category>Debian</category>
            <pubDate>Fri, 11 Mar 2011 19:31:40 -0500</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,4094#msg-4094</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,4094#msg-4094</link>
            <description><![CDATA[ Yes thats part of my plan as blkid provides all the information necessary to mount the filesystem.  And by using very specific /dev symlinks for the usb found storage devices, I can generalize the script for use on some other linux boxes of mine.  I'm also considering adding support for blacklist file that could be used to explicitly prevent a particular device from being mounted (by UUID or LABEL).]]></description>
            <dc:creator>kraqh3d</dc:creator>
            <category>Debian</category>
            <pubDate>Mon, 07 Mar 2011 15:24:36 -0500</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,4093#msg-4093</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,4093#msg-4093</link>
            <description><![CDATA[ The output of blkid command:<br />
<br />
# blkid<br />
/dev/sda1: UUID=&quot;2f55c61c-11c5-4bca-8ccf-50d2a2ffe970&quot; TYPE=&quot;ext2&quot;<br />
/dev/sdb1: LABEL=&quot;USBTEST1&quot; UUID=&quot;E20C879F0C876D7B&quot; TYPE=&quot;ntfs&quot;<br />
<br />
I was thinking this could be piped to awk or regex to extract the sd devices and pmount them with either label or device name. Would that work? (I've only used awk occasionally)]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Mon, 07 Mar 2011 15:12:55 -0500</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,4091#msg-4091</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,4091#msg-4091</link>
            <description><![CDATA[ I have an idea how to address the boot up issue.  I'm going to experiment with having that rule file also add some unique symlinks under /dev with the intention that a start up script can later go through them all and pmount them.  It won't even matter if the script runs again because pmount will skip anything already mounted.  I also need to verify if all mounted file systems are unmounted during a shutdown, or only those specified in /etc/fstab, and account for that as well if necessary.]]></description>
            <dc:creator>kraqh3d</dc:creator>
            <category>Debian</category>
            <pubDate>Mon, 07 Mar 2011 13:58:49 -0500</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,4087#msg-4087</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,4087#msg-4087</link>
            <description><![CDATA[ Cool! that works great. No longer seeing the filesystem mount warning messages. I'm guessing the typo was related to <br />
ENV{fs}=&quot;-t %E{ID_FS_TYPE}&quot;.]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Sun, 06 Mar 2011 20:49:48 -0500</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,4084#msg-4084</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,4084#msg-4084</link>
            <description><![CDATA[ You can force udev to reload the rules after a change with &quot;udevadm control --reload-rules&quot;.   You can also log what udev sees with &quot;udevadm monitor&quot;.  You can additionally see all the attributes with &quot;udevadm monitor --property&quot;.  It's a lot of output.<br />
<br />
Hmmm.  That should be mostly correct.  I'm not using that rule.  I've changed rules a few times since.  I kind of made that up on the spot, from my previous post.  Maybe I made a typo in it.  Try my latest rule, below, which is working on my system.  I guess it could fail if the filesystem is unknown because I'm directly including the &quot;-t type&quot; option in the RUN line.  But I've not had a problem with it.   I've also not begun on the boot up annoyance yet.  I'll try to tackle that sometime this week when I get a free hour or two.   I was really hoping someone already tackled it and posted their solution here :)<br />
<br />
<pre class="bbcode">
root@debian:~# cat /etc/udev/rules.d/90-automount.rules
# --sync to allow removal without corruption

KERNEL!=&quot;sd*&quot;, GOTO=&quot;media_label_end&quot;
ENV{ID_USB_DRIVER}!=&quot;usb-storage&quot;, GOTO=&quot;media_label_end&quot;

IMPORT{program}=&quot;/sbin/blkid -o udev -p %N&quot;, ENV{name}=&quot;%E{ID_FS_LABEL}&quot;
ENV{name}==&quot;&quot;, ENV{name}=&quot;%k&quot;

ACTION==&quot;add&quot;, RUN+=&quot;/usr/bin/pmount -t %E{ID_FS_TYPE} --sync --noatime --umask 000 %k %E{name}&quot;
ACTION==&quot;remove&quot;, RUN+=&quot;/usr/bin/pumount %E{name}&quot;

LABEL=&quot;media_label_end&quot;</pre>
<br />
And here's the log after powering up a usb drive.  There's no errors from trying every known file system until it gets to ntfs-3g.  <br />
<br />
<pre class="bbcode">

root@debian:~# logread -f
Mar  6 18:58:00 debian user.info kernel: [597062.809217] usb 1-1.2: new high speed USB device using orion-ehci and address 19
Mar  6 18:58:00 debian user.info kernel: [597062.920182] usb 1-1.2: New USB device found, idVendor=13fd, idProduct=1340
Mar  6 18:58:00 debian user.info kernel: [597062.927176] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Mar  6 18:58:00 debian user.info kernel: [597062.934624] usb 1-1.2: Product: ST2000DL003-9VT1
Mar  6 18:58:00 debian user.info kernel: [597062.939383] usb 1-1.2: Manufacturer: FANTOM
Mar  6 18:58:00 debian user.info kernel: [597062.943847] usb 1-1.2: SerialNumber: 355944314C42343020202020
Mar  6 18:58:00 debian user.info kernel: [597062.952204] usb 1-1.2: configuration #1 chosen from 1 choice
Mar  6 18:58:00 debian user.info kernel: [597062.961929] scsi16 : SCSI emulation for USB Mass Storage devices
Mar  6 18:58:01 debian user.debug kernel: [597062.974929] usb-storage: device found at 19
Mar  6 18:58:01 debian user.debug kernel: [597062.974940] usb-storage: waiting for device to settle before scanning
Mar  6 18:58:06 debian user.debug kernel: [597067.969219] usb-storage: device scan complete
Mar  6 18:58:06 debian user.notice kernel: [597067.969884] scsi 16:0:0:0: Direct-Access     FANTOM   ST2000DL003-9VT1 2.10 PQ: 0 ANSI: 4
Mar  6 18:58:06 debian user.notice kernel: [597067.982854] sd 16:0:0:0: [sda] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
Mar  6 18:58:06 debian user.notice kernel: [597068.001595] sd 16:0:0:0: [sda] Write Protect is off
Mar  6 18:58:06 debian user.debug kernel: [597068.006586] sd 16:0:0:0: [sda] Mode Sense: 21 00 00 00
Mar  6 18:58:06 debian user.err kernel: [597068.006595] sd 16:0:0:0: [sda] Assuming drive cache: write through
Mar  6 18:58:06 debian user.err kernel: [597068.014820] sd 16:0:0:0: [sda] Assuming drive cache: write through
Mar  6 18:58:06 debian user.info kernel: [597068.021308]  sda:
Mar  6 18:58:06 debian user.info kernel:  sda1
Mar  6 18:58:06 debian user.err kernel: [597068.052470] sd 16:0:0:0: [sda] Assuming drive cache: write through
Mar  6 18:58:06 debian user.notice kernel: [597068.058775] sd 16:0:0:0: [sda] Attached SCSI disk
Mar  6 18:58:08 debian daemon.notice ntfs-3g[3178]: Version 2010.3.6 integrated FUSE 27
Mar  6 18:58:08 debian daemon.notice ntfs-3g[3178]: Mounted /dev/sda1 (Read-Write, label &quot;FantomHD&quot;, NTFS 3.1)
Mar  6 18:58:08 debian daemon.notice ntfs-3g[3178]: Cmdline options: rw,noexec,nosuid,nodev,sync,user,noatime,uid=0,gid=0,umask=000
Mar  6 18:58:08 debian daemon.notice ntfs-3g[3178]: Mount options: rw,noexec,nosuid,nodev,sync,user,silent,allow_other,nonempty,noatime,fsname=/dev/sda1,blkdev,blksize=4096,default_permissions
Mar  6 18:58:08 debian daemon.notice ntfs-3g[3178]: Global ownership and permissions enforced, configuration type 1
</pre>]]></description>
            <dc:creator>kraqh3d</dc:creator>
            <category>Debian</category>
            <pubDate>Sun, 06 Mar 2011 19:17:40 -0500</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,4081#msg-4081</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,4081#msg-4081</link>
            <description><![CDATA[ Strange, I'm still seeing the same pmount messages with the new rules (I restarted the dockstar to make sure the rules take effect).]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Sun, 06 Mar 2011 17:12:39 -0500</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,4075#msg-4075</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,4075#msg-4075</link>
            <description><![CDATA[ That rule change doesn't address the startup problem.  It just passes the filesystem type to pmount, so it doesnt test every supported filesystem in succession until it finds the correct one (where ntfs is last in the list looking at the source.)  I'm using it, though without that extra check for a blank filesystem type.]]></description>
            <dc:creator>kraqh3d</dc:creator>
            <category>Debian</category>
            <pubDate>Sun, 06 Mar 2011 09:02:36 -0500</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,4071#msg-4071</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,4071#msg-4071</link>
            <description><![CDATA[ Perhaps you can post your dmesg contents for both of your dockstars after reboot? there must be some differences.]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Debian</category>
            <pubDate>Sun, 06 Mar 2011 02:09:14 -0500</pubDate>
        </item>
        <item>
            <guid>http://forum.doozan.com/read.php?2,3910,4070#msg-4070</guid>
            <title>Re: Automount NTFS on Dockstar Debian</title>
            <link>http://forum.doozan.com/read.php?2,3910,4070#msg-4070</link>
            <description><![CDATA[ Hi All,<br />
<br />
I'm having problems automounting the ntfs filesystem.  I have ntfs-3g, fuse-utils, pmount, and samba installed.  When the unit boots it sees all my drives, but the fs is not automounted.  I am using kraqh3d's udev rule and the really strange thing is I already have another dockstar setup that works with the rules.  Any thoughts?<br />
<br />
One more thing, if I unplug the drive and replug it is mounted properly and I can see all my files.<br />
<br />
TIA,<br />
Elviso33]]></description>
            <dc:creator>elviso33</dc:creator>
            <category>Debian</category>
            <pubDate>Sun, 06 Mar 2011 00:58:33 -0500</pubDate>
        </item>
    </channel>
</rss>
