<div dir="ltr">As I mentioned before, you need to reformat your drives before any of them will mount.  You can do this with the gparted liveCD, or from a shell using fdisk if you're ambitious.  In windows, you can reformat partitions if you right-click on computer and select manage, then click on disk management in the left window and it should show the drive as "unpartitioned space"<br>gparted is the easiest to use.</div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Dec 14, 2014 at 2:30 PM, Matt Graham <span dir="ltr"><<a href="mailto:mhgraham@crow202.org" target="_blank">mhgraham@crow202.org</a>></span> wrote:<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On 2014-12-14 11:00, Todd Millecam wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
$~  for i in `seq 10` ; do dd if=/dev/random of=/dev/sda && dd<br>
if=/dev/zero of=/dev/sda ; done<br>
</blockquote>
<br></span>
This will work, but it will take days.  /dev/random is a super-high-quality random device, and it will run out of super-high-quality random bits very quickly and wait for multiple seconds to generate more from various entropy sources.  You probably want to do this instead:<span class=""><br>
<br>
for i in `seq 10` ; do<br></span>
  dd if=/dev/urandom of=/dev/sdX bs=32k<br>
  dd if=/dev/zero of=/dev/sdX bs=32k<br>
  done<br>
<br>
/dev/urandom is much much faster, though its randomness is not as guaranteed.  Using a bs= on the dd command is also a good idea as it defaults to a bs of 512 bytes.<span class=""><br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Dban or wipe will do all this for you, but you can do it yourself.<br>
</blockquote>
<br></span>
Yes.  And if you do it yourself from a shell, you know exactly what's going on and can use the computer for other stuff while you're erasing whichever disk you wanted to erase....<span class="HOEnZb"><font color="#888888"><br>
<br>
-- <br>
Crow202 Blog: <a href="http://crow202.org/wordpress" target="_blank">http://crow202.org/wordpress</a><br>
There is no Darkness in Eternity<br>
But only Light too dim for us to see.</font></span><div class="HOEnZb"><div class="h5"><br>
------------------------------<u></u>---------------------<br>
PLUG-discuss mailing list - <a href="mailto:PLUG-discuss@lists.phxlinux.org" target="_blank">PLUG-discuss@lists.phxlinux.<u></u>org</a><br>
To subscribe, unsubscribe, or to change your mail settings:<br>
<a href="http://lists.phxlinux.org/mailman/listinfo/plug-discuss" target="_blank">http://lists.phxlinux.org/<u></u>mailman/listinfo/plug-discuss</a></div></div></blockquote></div><br clear="all"><div><br></div>-- <br><div class="gmail_signature">Todd Millecam</div>
</div>