<?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:meneame="http://meneame.net/faq-es.php"
 >
<channel>
	<title>Menéame: comentarios [2735970]</title>
	<link>http://www.meneame.net</link>
	<image><title>www.meneame.net</title><link>http://www.meneame.net</link><url>http://cdn.mnmstatic.net/m/tecnología/img/mnm/eli-rss.png</url></image>
	<description>Sitio colaborativo de publicación y comunicación entre blogs</description>
	<pubDate>Thu, 16 Feb 2017 20:10:35 +0000</pubDate>
	<generator>http://blog.meneame.net/</generator>
	<language>es</language>
	<item>
		<meneame:comment_id>21250369</meneame:comment_id>
		<meneame:link_id>2735970</meneame:link_id>
		<meneame:order>5</meneame:order>
		<meneame:user>flixter</meneame:user>
		<meneame:votes>0</meneame:votes>
		<meneame:karma>7</meneame:karma>
		<meneame:url>https://www.meneame.net/m/tecnología/como-eliminar-archivos-linux-forma-permanente-sin-dejar-rastro</meneame:url>
		<title>#5 Cómo eliminar archivos en Linux de forma permanente y sin dejar rastro</title>
		<link>https://www.meneame.net/m/tecnología/como-eliminar-archivos-linux-forma-permanente-sin-dejar-rastro/c05#c-5</link>
		<pubDate>Thu, 16 Feb 2017 20:10:35 +0000</pubDate>
		<dc:creator>flixter</dc:creator>
		<guid>https://www.meneame.net/m/tecnología/como-eliminar-archivos-linux-forma-permanente-sin-dejar-rastro/c05#c-5</guid>
		<description><![CDATA[<p><a class="tooltip c:2735970-4" href="https://www.meneame.net/m/tecnología/como-eliminar-archivos-linux-forma-permanente-sin-dejar-rastro/c04#c-4" rel="nofollow">#4</a> sin ganas de ofender.... pero es que eso mismo es lo que hace shred <img data-src="https://cdn.mnmstatic.net/v_149/img/menemojis/36/hug.png" alt=":hug:" title=":hug:" width="35" height="18" src="https://cdn.mnmstatic.net/v_149/img/g.gif" class="emoji lazy" /></p><p>&#187;&nbsp;autor: <strong>flixter</strong></p>]]></description>
	</item>

	<item>
		<meneame:comment_id>21248462</meneame:comment_id>
		<meneame:link_id>2735970</meneame:link_id>
		<meneame:order>4</meneame:order>
		<meneame:user>alopecio</meneame:user>
		<meneame:votes>0</meneame:votes>
		<meneame:karma>6</meneame:karma>
		<meneame:url>https://www.meneame.net/m/tecnología/como-eliminar-archivos-linux-forma-permanente-sin-dejar-rastro</meneame:url>
		<title>#4 Cómo eliminar archivos en Linux de forma permanente y sin dejar rastro</title>
		<link>https://www.meneame.net/m/tecnología/como-eliminar-archivos-linux-forma-permanente-sin-dejar-rastro/c04#c-4</link>
		<pubDate>Thu, 16 Feb 2017 15:20:54 +0000</pubDate>
		<dc:creator>alopecio</dc:creator>
		<guid>https://www.meneame.net/m/tecnología/como-eliminar-archivos-linux-forma-permanente-sin-dejar-rastro/c04#c-4</guid>
		<description><![CDATA[<p>Yo tengo esta cosica:<br />
<br />
#!/bin/bash<br />
# blot-out.sh: Erase &#34;all&#34; traces of a file.<br />
<br />
#  This script overwrites a target file alternately<br />
<a href="/m/tecnología/search?w=comments&#38;q=%23+&#38;o=date">#+</a> with random bytes, then zeros before finally deleting it.<br />
#  After that, even examining the raw disk sectors by conventional methods<br />
<a href="/m/tecnología/search?w=comments&#38;q=%23+&#38;o=date">#+</a> will not reveal the original file data.<br />
<br />
PASSES=7 #  Number of file-shredding passes.<br />
 #  Increasing this slows script execution,<br />
 <a href="/m/tecnología/search?w=comments&#38;q=%23+&#38;o=date">#+</a> especially on large target files.<br />
BLOCKSIZE=1 #  I/O with /dev/urandom requires unit block size,<br />
 <a href="/m/tecnología/search?w=comments&#38;q=%23+&#38;o=date">#+</a> otherwise you get weird results.<br />
E_BADARGS=70 #  Various error exit codes.<br />
E_NOT_FOUND=71<br />
E_CHANGED_MIND=72<br />
<br />
if [ -z &#34;$1&#34; ]   # No filename specified.<br />
then<br />
  echo &#34;Usage: `basename $0` filename&#34;<br />
  exit $E_BADARGS<br />
fi<br />
<br />
file=$1<br />
<br />
if [ ! -e &#34;$file&#34; ]<br />
then<br />
  echo &#34;File &#34;$file&#34; not found.&#34;<br />
  exit $E_NOT_FOUND<br />
fi  <br />
<br />
echo; echo -n &#34;Are you absolutely sure you want to blot out &#34;$file&#34; (y/n)? &#34;<br />
read answer<br />
case &#34;$answer&#34; in<br />
[nN]) echo &#34;Changed your mind, huh?&#34;<br />
 exit $E_CHANGED_MIND<br />
 ;;<br />
*)    echo &#34;Blotting out file &#34;$file&#34;.&#34;;;<br />
esac<br />
<br />
<br />
flength=$(ls -l &#34;$file&#34; | awk '{print $5}')  # Field 5 is file length.<br />
pass_count=1<br />
<br />
chmod u+w &#34;$file&#34;   # Allow overwriting/deleting the file.<br />
<br />
echo<br />
<br />
while [ &#34;$pass_count&#34; -le &#34;$PASSES&#34; ]<br />
do<br />
  echo &#34;Pass <a href="/m/tecnología/search?w=comments&#38;q=%23$pass_count&#38;o=date">#$pass_count</a>&#34;<br />
  sync # Flush buffers.<br />
  dd if=/dev/urandom of=$file bs=$BLOCKSIZE count=$flength<br />
 # Fill with random bytes.<br />
  sync # Flush buffers again.<br />
  dd if=/dev/zero of=$file bs=$BLOCKSIZE count=$flength<br />
 # Fill with zeros.<br />
  sync # Flush buffers yet again.<br />
  let &#34;pass_count += 1&#34;<br />
  echo<br />
done  <br />
<br />
<br />
rm -f $file    # Finally, delete scrambled and shredded file.<br />
sync # Flush buffers a final time.<br />
<br />
echo &#34;File &#34;$file&#34; blotted out and deleted.&#34;; echo<br />
<br />
<br />
exit 0</p><p>&#187;&nbsp;autor: <strong>alopecio</strong></p>]]></description>
	</item>

	<item>
		<meneame:comment_id>21244971</meneame:comment_id>
		<meneame:link_id>2735970</meneame:link_id>
		<meneame:order>3</meneame:order>
		<meneame:user>--536045--</meneame:user>
		<meneame:votes>0</meneame:votes>
		<meneame:karma>6</meneame:karma>
		<meneame:url>https://www.meneame.net/m/tecnología/como-eliminar-archivos-linux-forma-permanente-sin-dejar-rastro</meneame:url>
		<title>#3 Cómo eliminar archivos en Linux de forma permanente y sin dejar rastro</title>
		<link>https://www.meneame.net/m/tecnología/como-eliminar-archivos-linux-forma-permanente-sin-dejar-rastro/c03#c-3</link>
		<pubDate>Thu, 16 Feb 2017 08:29:38 +0000</pubDate>
		<dc:creator>--536045--</dc:creator>
		<guid>https://www.meneame.net/m/tecnología/como-eliminar-archivos-linux-forma-permanente-sin-dejar-rastro/c03#c-3</guid>
		<description><![CDATA[<p><a class="tooltip c:2735970-1" href="https://www.meneame.net/m/tecnología/como-eliminar-archivos-linux-forma-permanente-sin-dejar-rastro/c01#c-1" rel="nofollow">#1</a><br />
<br />
Sin dejar rastro, eso deja rastro.</p><p>&#187;&nbsp;autor: <strong>--536045--</strong></p>]]></description>
	</item>

	<item>
		<meneame:comment_id>21244590</meneame:comment_id>
		<meneame:link_id>2735970</meneame:link_id>
		<meneame:order>2</meneame:order>
		<meneame:user>grodriguezgonzalez</meneame:user>
		<meneame:votes>1</meneame:votes>
		<meneame:karma>18</meneame:karma>
		<meneame:url>https://www.meneame.net/m/tecnología/como-eliminar-archivos-linux-forma-permanente-sin-dejar-rastro</meneame:url>
		<title>#2 Cómo eliminar archivos en Linux de forma permanente y sin dejar rastro</title>
		<link>https://www.meneame.net/m/tecnología/como-eliminar-archivos-linux-forma-permanente-sin-dejar-rastro/c02#c-2</link>
		<pubDate>Thu, 16 Feb 2017 07:24:31 +0000</pubDate>
		<dc:creator>grodriguezgonzalez</dc:creator>
		<guid>https://www.meneame.net/m/tecnología/como-eliminar-archivos-linux-forma-permanente-sin-dejar-rastro/c02#c-2</guid>
		<description><![CDATA[<p>Usando el chattrib y udando el man para ver si le tienes que poner S (tiro de recuerdo, pero era algo asi). <a href="/m/tecnología/search?w=comments&#38;q=%23teahorrounclick&#38;o=date">#teahorrounclick</a></p><p>&#187;&nbsp;autor: <strong>grodriguezgonzalez</strong></p>]]></description>
	</item>

	<item>
		<meneame:comment_id>21244395</meneame:comment_id>
		<meneame:link_id>2735970</meneame:link_id>
		<meneame:order>1</meneame:order>
		<meneame:user>MycroftHolmes</meneame:user>
		<meneame:votes>1</meneame:votes>
		<meneame:karma>18</meneame:karma>
		<meneame:url>https://www.meneame.net/m/tecnología/como-eliminar-archivos-linux-forma-permanente-sin-dejar-rastro</meneame:url>
		<title>#1 Cómo eliminar archivos en Linux de forma permanente y sin dejar rastro</title>
		<link>https://www.meneame.net/m/tecnología/como-eliminar-archivos-linux-forma-permanente-sin-dejar-rastro/c01#c-1</link>
		<pubDate>Thu, 16 Feb 2017 06:29:40 +0000</pubDate>
		<dc:creator>MycroftHolmes</dc:creator>
		<guid>https://www.meneame.net/m/tecnología/como-eliminar-archivos-linux-forma-permanente-sin-dejar-rastro/c01#c-1</guid>
		<description><![CDATA[<p>rm -rF /</p><p>&#187;&nbsp;autor: <strong>MycroftHolmes</strong></p>]]></description>
	</item>

</channel>
</rss>
