<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule">

<channel>
<title>Topic &#x27;File Shredder for Network Drives&#x27; in forum &#x27;Security&#x27; - dslreports.com</title>
<link>http://www.dslreports.com/forum/File-Shredder-for-Network-Drives-27973823</link>
<description></description>
<language>en</language>
<pubDate>Fri, 24 May 2013 03:13:59 EDT</pubDate>
<lastBuildDate>Fri, 24 May 2013 03:13:59 EDT</lastBuildDate>

<item>
<title>Re: File Shredder for Network Drives</title>
<link>http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-28208536</link>
<description><![CDATA[salahx posted : Deleting free space using a remote filesystem (for Windows, that would be CIFS) in general can't work. A given share may only export part of volume, or a single share could be multiple volume stiched together via path mounts (like bind mounts under Linux), it could be a disk cluster, in fact the underlying share would even be another network filesystem (under Linux, re-exporting NFS shares to CIFS is a common trick), a disk cluster, or even a virtual filesystem (like FUSE) with no storage at all!<br><br>Access to the device at the block (disk) layer is needed: either by running directly from the host, or remotely via nbd, iSCSI or AoE (ATA over Ethernet).]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-28208536</guid>
<pubDate>Wed, 17 Apr 2013 02:18:10 EDT</pubDate>
</item>

<item>
<title>Re: File Shredder for Network Drives</title>
<link>http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-28205437</link>
<description><![CDATA[norwegian posted : &raquo;<A HREF="http://www.piriform.com/business/ccleaner-network-edition" >www.piriform.com/business/cclean&middot;&middot;&middot;-edition</A><br><br>This also is a free space file erase.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-28205437</guid>
<pubDate>Tue, 16 Apr 2013 09:26:09 EDT</pubDate>
</item>

<item>
<title>Re: File Shredder for Network Drives</title>
<link>http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-28205231</link>
<description><![CDATA[markmvps posted : Hello,<br><br>I want to recommend you Kernel File Shredder Tool which helps in permanently deleting the vital information or database records of organizations from the client&#146;s network.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-28205231</guid>
<pubDate>Tue, 16 Apr 2013 07:30:23 EDT</pubDate>
</item>

<item>
<title>Re: File Shredder for Network Drives</title>
<link>http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-27978608</link>
<description><![CDATA[angussf posted : This program claims to do it:<blockquote><b>Delete Files Permanently Portable 5.0, 4.0, 3.3/3.2, Delete Files Permanently Portable 3.1, 3.0</b><br>&raquo;<A HREF="http://www.deletefilespermanently.com/help-dfpp/Introduction/WhatsNew.html" >www.deletefilespermanently.com/h&middot;&middot;&middot;New.html</A><br><blockquote>... * you can wipe free space on network drives mapped by the drive letter.</blockquote></blockquote><br>No personal experience with it, and it's not freeware.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-27978608</guid>
<pubDate>Mon, 04 Feb 2013 16:38:22 EDT</pubDate>
</item>

<item>
<title>Re: File Shredder for Network Drives</title>
<link>http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-27978009</link>
<description><![CDATA[dave posted : <div class="bquote"><p>You need more than standard file access. When you're accessing a network share you only have file level access.</p></div>I don't believe that to be the case.  Here, for example, is how Russinovich's <tt>sdelete</tt> works:<br><br>  <BLOCKQUOTE><SMALL>said by sysinternals :</SMALL><HR>The second approach, and the one SDelete takes, is to indirectly overwrite free space. First, SDelete allocates the largest file it can. SDelete does this using non-cached file I/O so that the contents of the NT file system cache will not be thrown out and replaced with useless data associated with SDelete's space-hogging file. Because non-cached file I/O must be sector (512-byte) aligned, there might be some left over space that isn't allocated for the SDelete file even when SDelete cannot further grow the file. To grab any remaining space SDelete next allocates the largest cached file it can. For both of these files SDelete performs a secure overwrite, ensuring that all the disk space that was previously free becomes securely cleansed.<br><HR></BLOCKQUOTE><br><br>That's all normal file-access stuff. Non-cached writethrough I/O is a simple option in the CreateFile API (welll, two separate options, to be exact).<br><br>I'm not sure where the "don't do this over SMB" restriction arises.  I think you could code it up reasonably well; maybe it's just related to being a good network citizen.  NAS is typically shared (that's why SMB has "shares") and it's not nice to consume all of shared storage.<br><br><tt>cipher /w</tt> operates in pretty much the same way.<br><br>The sysinternals writeup does present an alternative approach:<br><br>  <BLOCKQUOTE><SMALL>quote:</SMALL><HR>Cleaning free space presents another challenge. Since FAT and NTFS provide no means for an application to directly address free space, SDelete has one of two options. The first is that it can, like it does for compressed, sparse and encrypted files, open the disk for raw access and overwrite the free space. This approach suffers from a big problem: even if SDelete were coded to be fully capable of calculating the free space portions of NTFS and FAT drives (something that's not trivial), it would run the risk of collision with active file operations taking place on the system. For example, say SDelete determines that a cluster is free, and just at that moment the file system driver (FAT, NTFS) decides to allocate the cluster for a file that another application is modifying. The file system driver writes the new data to the cluster, and then SDelete comes along and overwrites the freshly written data: the file's new data is gone. The problem is even worse if the cluster is allocated for file system metadata since SDelete will corrupt the file system's on-disk structures.<br><HR></BLOCKQUOTE><br><br>In other words, an implementer would be nutty to attempt to do it like that.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-27978009</guid>
<pubDate>Mon, 04 Feb 2013 14:16:02 EDT</pubDate>
</item>

<item>
<title>Re: File Shredder for Network Drives</title>
<link>http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-27977416</link>
<description><![CDATA[Kilroy posted : I'm not sure you can do this.  There is a reason that you need to have the drives connected.  You need more than standard file access.  When you're accessing a network share you only have file level access.<br><br>I don't see being able to do this if the NAS doesn't have some security type setting and/or pulling the drive and connecting it locally.<br><small>--<br>“Progress isn't made by early risers. It's made by lazy men trying to find easier ways to do something.” ¯ Robert A. Heinlein</small>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-27977416</guid>
<pubDate>Mon, 04 Feb 2013 11:28:59 EDT</pubDate>
</item>

<item>
<title>Re: File Shredder for Network Drives</title>
<link>http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-27977009</link>
<description><![CDATA[dave posted : What file system does this NAS use?<br><br>You need a program that runs on Windows, and supports the file system used on the NAS.<br><br>If it's a low-end consumer NAS, it's likely running Linux, Samba, and some Linux-supported file system.<br><br>Why's it matter? Because on some file systems, a honking great file of zeroes doesn't necessarily occupy any disk space ('sparse file support').<br><br>Can you get to the shell on this NAS?  If so, perhaps there's a Linux utility you can use.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-27977009</guid>
<pubDate>Mon, 04 Feb 2013 09:06:24 EDT</pubDate>
</item>

<item>
<title>Re: File Shredder for Network Drives</title>
<link>http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-27976513</link>
<description><![CDATA[bbear2 posted : Thanks for those points about speed.  My situation is such that I only need to wipe the free space and won't be doing it that often, so 2 hours (or whatever) would be acceptable.  Still frustrating that I can't find a simple solution as for direct attached.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-27976513</guid>
<pubDate>Sun, 03 Feb 2013 23:45:52 EDT</pubDate>
</item>

<item>
<title>Re: File Shredder for Network Drives</title>
<link>http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-27975370</link>
<description><![CDATA[dave posted : I don't know of one, but it seems like it would have to be inefficient.  The way a "wipe free space on file system" utility tends to work is to create a file that uses up the rest of the free space, write zeroes (or random patterns) into that file, and then delete the file.<br><br>So if you've got 500GB of freespace, that's 500GB of writing per pass.  Assuming you have USB 3.0 (5 Gb/s) and a 1 Gb/s network, the network is the bottleneck even if you can drive it at full speed.  So you're looking at about 2 hours per pass minimum.<br><br>If your router can't drive a gigabit connection at full speed, multiply accordingly. And at some point the USB connection is the bottleneck.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-27975370</guid>
<pubDate>Sun, 03 Feb 2013 17:02:56 EDT</pubDate>
</item>

<item>
<title>Re: File Shredder for Network Drives</title>
<link>http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-27975299</link>
<description><![CDATA[bbear2 posted : I should have mentioned that the network drive is a USB drive connected off of a NAS router.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-27975299</guid>
<pubDate>Sun, 03 Feb 2013 16:35:33 EDT</pubDate>
</item>

<item>
<title>Re: File Shredder for Network Drives</title>
<link>http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-27974142</link>
<description><![CDATA[Cudni posted : Also in<br>&raquo;<A HREF="/forum/r27972850-Need-Drive-Wipe-Util-for-Network-Drive">Need Drive Wipe Util for Network Drive</A><br><br>Cudni]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-27974142</guid>
<pubDate>Sun, 03 Feb 2013 08:17:37 EDT</pubDate>
</item>

<item>
<title>Re: File Shredder for Network Drives</title>
<link>http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-27974124</link>
<description><![CDATA[therube posted : Maybe <A HREF="http://blogs.technet.com/b/systemcenteressentials/archive/2009/09/01/using-psexec-to-open-a-remote-command-window.aspx" >Using psExec to Open a Remote Command Window</A> then running <A HREF="http://technet.microsoft.com/en-us/sysinternals/bb897443.aspx" >SDelete</A>?<br><br>Even if it works, very possible that it could be quite a bit slower then running locally?<br><br>Might be worth testing both ways to see if one is particularly longer then the other?]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/Re-File-Shredder-for-Network-Drives-27974124</guid>
<pubDate>Sun, 03 Feb 2013 08:03:45 EDT</pubDate>
</item>

<item>
<title>File Shredder for Network Drives</title>
<link>http://www.dslreports.com/forum/File-Shredder-for-Network-Drives-27973823</link>
<description><![CDATA[bbear2 posted : Any recommendations for a utility that wipes free space from a network drive?  Seems like all the file shredders I've tried only do direct attached drives.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/File-Shredder-for-Network-Drives-27973823</guid>
<pubDate>Sat, 02 Feb 2013 23:45:39 EDT</pubDate>
</item>

</channel>
</rss>
