PS. and I personally would:
- either write a program that scans the partition for known fragments
of the files you want to be gone (perl with Sys::Mmap is an efficient
choice) to verify;
- or backup all good files from the partition, then overwriting the
block device, recreate the partition and co
Why calculate the sizes when you can just use cat until it stops
because the disk is full?
cat /dev/zero > /mnt/yourfilesystem/thebigfile
BTW don't forget to proberly umount /mnt/yourfilesystem afterwards, of
course, to force a sync. (Just in case there might be a file system
that doesn't send t
On 2010-07-16 23:43 +0300, Andrei Popescu wrote:
> On Vi, 16 iul 10, 21:03:42, Andre Majorel wrote:
>
> > perl -e '$bytes = int (1e4 + 1e6 * rand);
> > for $n (1..$bytes) { $noise .= chr (int (rand (256))) }
> > while (print $noise) {}' >/mnt/sdc1/zeros.bin; sync
>
> dd if=/dev/random o
On Vi, 16 iul 10, 21:03:42, Andre Majorel wrote:
>
> If you're feeling paranoid, you could fill with junk instead of
> NULs to protect against any optimisation at filesystem level.
yep, that sure looks like junk
> perl -e '$bytes = int (1e4 + 1e6 * rand);
> for $n (1..$bytes) { $noise .= c
On 2010-07-15 13:55 -0400, H.S. wrote:
> On 15/07/10 01:38 PM, Perry E. Metzger wrote:
>
> > dd if=/dev/zero of=/dev/scd bs=1M
>
> Yes, but that would wipe out everything, the OS as well.
>
> I was looking for just making the already deleted files
> unrecoverable by a casual user. In other words,
On 16/07/10 02:25 PM, Ron Johnson wrote:
Yeah, I guess you could write a bash script to:
1. determine the amount of free space.
2. Divide that by some efficient block size.
3. dd if=/dev/urandom of=${VFAT}/foo.bar \
obs=${BLKSIZ} count=${BLKCNT}
Coincidentally, that is exactly what I did (but
On 16/07/10 02:03 PM, Mark wrote:
On Fri, Jul 16, 2010 at 9:10 AM, H.S. wrote:
On 10-07-16 12:00 PM, Ron Johnson wrote:
Aren't you askig the wrong list?
The filesystem is vfat, files are being deleted from within Linux using
Linux tools and the partition just happens to be a Windows inst
On 07/16/2010 12:38 PM, H.S. wrote:
On 16/07/10 01:01 PM, Ron Johnson wrote:
I don't think you can of= just the "empty" parts of your partition.
Attached is a Python script I use to "zero" out the free space of a
mounted partition.
Thanks for the script. You are basically writing 0xFF to th
On Fri, Jul 16, 2010 at 9:10 AM, H.S. wrote:
> On 10-07-16 12:00 PM, Ron Johnson wrote:
>
>>
>> Aren't you askig the wrong list?
>>
>>
> The filesystem is vfat, files are being deleted from within Linux using
> Linux tools and the partition just happens to be a Windows installation* but
> could b
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
On 07/16/2010 01:42 PM, Michael Iatrou wrote:
>
> This is rather a philosophical question than a technical one: it is part of
> UNIX mentality to have simple tools that can be put together to complete
> complicated tasks. Practically seen, if the
On 16/07/10 01:42 PM, Michael Iatrou wrote:
This is rather a philosophical question than a technical one: it is part of
UNIX mentality to have simple tools that can be put together to complete
complicated tasks. Practically seen, if the original poster was educated
with the principles of UNIX de
When the date was Friday 16 of July 2010, Jordan Metzmeier wrote:
> On 07/15/2010 08:46 PM, Michael Iatrou wrote:
> > I am skeptical whether there is any good reason for tools like wipe2fs,
> > zerofree and friends (if there are any...), when a dd && sync && rm
> > have the same result.
>
> You c
On 16/07/10 01:01 PM, Ron Johnson wrote:
I don't think you can of= just the "empty" parts of your partition.
Attached is a Python script I use to "zero" out the free space of a
mounted partition.
Thanks for the script. You are basically writing 0xFF to the available
disk space. I used to ha
On 07/16/2010 11:10 AM, H.S. wrote:
On 10-07-16 12:00 PM, Ron Johnson wrote:
Aren't you askig the wrong list?
The filesystem is vfat, files are being deleted from within Linux using
Linux tools and the partition just happens to be a Windows installation*
but could be any generic storage devi
ts of the file doesn't make it unrecoverable
> (in all circumstances), you might be able to still do a very low level
> recovery, something they would generally reserve for say, a RICO
> investigation, terrorists an those sorts. The only way to stop any and
> all data leaks, recov
On 10-07-16 12:00 PM, Ron Johnson wrote:
Aren't you askig the wrong list?
The filesystem is vfat, files are being deleted from within Linux using
Linux tools and the partition just happens to be a Windows installation*
but could be any generic storage device. So, no.
I presume you are imp
On 07/15/2010 11:05 AM, H.S. wrote:
I have a couple of hard disks in a computer which is to be recycled. I
want the windows OS in it to remain functional, but I want to be sure
that I have deleted all my personal files securely (never used the OS
that much anyway and there is hardly any importan
Mark wrote at 2010-07-15 15:55 -0500:
> Do you have an example of what your wipe and wipe2fs commands are that
> you've used? Didn't see much info on the websites here
> [2]http://wipe.sourceforge.net/ or here
$ man wipe
There are even examples.
> [3]http://web.cecs.pdx.edu/~cklin/wipe2fs/. Would
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256
On 07/15/2010 08:46 PM, Michael Iatrou wrote:
> I am skeptical whether there is any good reason for tools like wipe2fs,
> zerofree and friends (if there are any...), when a dd && sync && rm have the
> same result.
>
You could say this about many
;t make it unrecoverable
(in all circumstances), you might be able to still do a very low level
recovery, something they would generally reserve for say, a RICO
investigation, terrorists an those sorts. The only way to stop any and
all data leaks, recoveries or anything of the sort is to either Deg
When the date was Thursday 15 of July 2010, green wrote:
> thib wrote at 2010-07-15 13:13 -0500:
> > Take a look at shred (coreutils), wipe and secure-delete.
>
> +1 wipe; I have used it to wipe an entire block device.
> Also wipe2fs for zeroing unused space; and zerofree seems very similar.
I a
On 07/15/2010 11:55 AM, H.S. wrote:
> I was looking for just making the already deleted files unrecoverable by
> a casual user. In other words, since a deleted file frees the space on
> disk, by filling up the disk with all zeros and then deleting that zeros
> file would be overwriting the earlier
On Thu, Jul 15, 2010 at 1:41 PM, green wrote:
> thib wrote at 2010-07-15 13:13 -0500:
> > Take a look at shred (coreutils), wipe and secure-delete.
>
> +1 wipe; I have used it to wipe an entire block device.
> Also wipe2fs for zeroing unused space; and zerofree seems very similar.
>
Do you have
thib wrote at 2010-07-15 13:13 -0500:
> Take a look at shred (coreutils), wipe and secure-delete.
+1 wipe; I have used it to wipe an entire block device.
Also wipe2fs for zeroing unused space; and zerofree seems very similar.
signature.asc
Description: Digital signature
On Jo, 15 iul 10, 13:55:21, H.S. wrote:
>
> I was looking for just making the already deleted files unrecoverable by
> a casual user. In other words, since a deleted file frees the space on
> disk, by filling up the disk with all zeros and then deleting that zeros
> file would be overwriting the e
On Thu, Jul 15, 2010 at 9:05 AM, H.S. wrote:
>
> I have a couple of hard disks in a computer which is to be recycled. I
> want the windows OS in it to remain functional, but I want to be sure
> that I have deleted all my personal files securely (never used the OS
> that much anyway and there is h
Take a look at shred (coreutils), wipe and secure-delete.
-t
--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4c3f4fd1.50...@stammed.net
On 15/07/10 12:31 PM, Wolodja Wentland wrote:
>>
>> Its first and second partitions (sdc1 and sdc2) are vfat. I was thinking
>> of mounting these on /mnt/scd1 (and scd2) and then doing:
>> # dd if=/dev/zero > /mnt/sdc1/zeros.bin; rm -f /mnt/sdc1/zeros.bin
>>
>> and the same for scd2. The idea is fi
On 15/07/10 01:38 PM, Perry E. Metzger wrote:
> On Thu, 15 Jul 2010 12:05:33 -0400 "H.S." wrote:
>> Its first and second partitions (sdc1 and sdc2) are vfat. I was
>> thinking of mounting these on /mnt/scd1 (and scd2) and then doing:
>> # dd if=/dev/zero > /mnt/sdc1/zeros.bin; rm -f /mnt/sdc1/zer
On Thu, 15 Jul 2010 12:05:33 -0400 "H.S." wrote:
>
> I have a couple of hard disks in a computer which is to be
> recycled. I want the windows OS in it to remain functional, but I
> want to be sure that I have deleted all my personal files securely
> (never used the OS that much anyway and there
On Thu, Jul 15, 2010 at 12:05 -0400, H.S. wrote:
>
> I have a couple of hard disks in a computer which is to be recycled. I
> want the windows OS in it to remain functional, but I want to be sure
> that I have deleted all my personal files securely (never used the OS
> that much anyway and there i
I have a couple of hard disks in a computer which is to be recycled. I
want the windows OS in it to remain functional, but I want to be sure
that I have deleted all my personal files securely (never used the OS
that much anyway and there is hardly any important info in its registry
or browser). Th
On Sun, May 21, 2006 at 06:58:58PM +0200, Dirk wrote:
> when I
>
> dpkg-reconfigure locales
>
> and set "All locales"
>
> the key repeat in X is broken afterwards (random numbers of the same
> char no matter how long or short i press the key)
>
> I installed debian from zero (because I couldn'
when I
dpkg-reconfigure locales
and set "All locales"
the key repeat in X is broken afterwards (random numbers of the same
char no matter how long or short i press the key)
I installed debian from zero (because I couldn't fix the "could not find
'fixed' font" error that a lot of people, who
On Wed, Nov 29, 2000 at 09:23:26AM -0500, Debian Ghost wrote:
> Hey Steve,
> Thanks for the reply.
> I did what you suggested and didn't find anything I am missing.
> Can you look at this and tell me if I am missing what I am missing ? :)
>
> p.s- is the second package acronym a joke ? (pathologic
¡°¡mWayne Topa <[EMAIL PROTECTED]>¡n¡G
> Subject: Re: DESTROY (perl experts please) (fwd)
> Date: Fri, Dec 01, 2000 at 12:07:06PM +1100
> In reply to:Damien
> Quoting Damien([EMAIL PROTECTED]):
> > hrm. afaik, unstable refers to the helixcode distribution - thu
Subject: Re: DESTROY (perl experts please) (fwd)
Date: Fri, Dec 01, 2000 at 12:07:06PM +1100
In reply to:Damien
Quoting Damien([EMAIL PROTECTED]):
> > >
> > > deb http://spidermonkey.helixcode.com/distributions/debian unstable main
> >
> >
> > deb http://spidermonkey.helixcode.com/distributions/debian unstable main
>Thats Woody, not Potato
> Potato is stable _not_ unstable
hrm. afaik, unstable refers to the helixcode distribution - thus unstable
helixcode will
Subject: DESTROY (perl experts please) (fwd)
Date: Wed, Nov 29, 2000 at 05:05:25PM -0500
In reply to:Debian Ghost
Quoting Debian Ghost([EMAIL PROTECTED]):
> Subject: RE: DESTROY (perl experts please)
>
> I don't seem to get the same reply back when I apt-cache
Subject: RE: DESTROY (perl experts please)
I don't seem to get the same reply back when I apt-cache search for the
packages. Are my sources.list wrong for potato?
Man, I just don't get that list of perl stuff when I apt-cache search grep
for perl. Maybe my sources are not what they
Ah, sorry about that, went to the bathroom and some guy at work was funny
:-)
// Steeve.
> -Original Message-
> From: Steeve Lennmark
> Sent: den 29 november 2000 15:38
> To: 'Debian Ghost'
> Cc: [EMAIL PROTECTED]; debian-user@lists.debian.org
> Subj
Tja!
Steeve har. Hur mas det?
> -Original Message-
> From: Debian Ghost [mailto:[EMAIL PROTECTED]
> Sent: den 29 november 2000 15:23
> To: Steeve Lennmark
> Cc: 'Debian Ghost'; [EMAIL PROTECTED]; debian-user@lists.debian.org
> Subject: RE: DESTROY
>
&
n @INC.
>
> // Steeve.
>
> > -Original Message-
> > From: Debian Ghost [mailto:[EMAIL PROTECTED]
> > Sent: den 29 november 2000 14:16
> > To: Joey Hess
> > Cc: debian-user@lists.debian.org
> > Subject: Re: DESTROY
> >
> >
> > I d
> Sent: den 29 november 2000 14:14
> > To: [EMAIL PROTECTED]
> > Cc: debian-user@lists.debian.org
> > Subject: Re: DESTROY
> >
> >
> > Ah,
> > That may explain it.
> > I had tried to upgrade from potato to woody, and as soon as
> > the
perl --version
Debconf aint the problem, the problem is some missing modules in @INC.
// Steeve.
> -Original Message-
> From: Debian Ghost [mailto:[EMAIL PROTECTED]
> Sent: den 29 november 2000 14:16
> To: Joey Hess
> Cc: debian-user@lists.debian.org
> Subject: Re:
Nah, you just need some other perl-stuff, try: apt-cache search perl | grep
5.6
// Steeve.
> -Original Message-
> From: Debian Ghost [mailto:[EMAIL PROTECTED]
> Sent: den 29 november 2000 14:14
> To: [EMAIL PROTECTED]
> Cc: debian-user@lists.debian.org
> Subject: Re:
I don't know much about perl or debconf.
What is the best way to see which perl and debconf I have?
I had to back out of a woody install, but I don't think some things got
backed down (perl maybe being one)
Thanks!
D. Ghost
or is there a
better way with apt? I'm afraid since the package is new that it will
think I don't need to change it.
Any advice appriciated!
D. Ghost
On Mon, 27 Nov 2000 [EMAIL PROTECTED] wrote:
>
> DESTROY is all about perl. DebConf is a Debian specific
> perl pac
Mark Blunier wrote:
> I get the same thing. I installed potato, but I'm in the process of
> upgrading to woody. No debconf, but debconf-tiny0.2.80.17.
> perl-5.005.03-7.1, and perl-5.6.0-3
You really should install debconf proper to replace the seriously out of
date debconf-tiny.
Anyway, it tur
Debian Ghost wrote:
> I've lately been noticing this 'DESTROY' message coming up when I apt-get
> a package. I am not sure what it is or what it means. Can anyone give me a
> hint as to what this means?
>
> 0 packages upgraded, 1 newly installed, 0 to remove and
Hey Guys,
I've lately been noticing this 'DESTROY' message coming up when I apt-get
a package. I am not sure what it is or what it means. Can anyone give me a
hint as to what this means?
0 packages upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 246kB of
On 24-Jul-99 Kain wrote:
> On Fri, Jul 23, 1999 at 06:38:23PM -0700, Sean 'Shaleh' Perry wrote:
>> On 24-Jul-99 [EMAIL PROTECTED] wrote:
>> > Netscape 4.61 as packaged in "potato" dies intermittently around window
>> > destroy events. Does anyone k
On Fri, Jul 23, 1999 at 06:38:23PM -0700, Sean 'Shaleh' Perry wrote:
> On 24-Jul-99 [EMAIL PROTECTED] wrote:
> > Netscape 4.61 as packaged in "potato" dies intermittently around window
> > destroy events. Does anyone know why?
> We can only guess it to be
On 24-Jul-99 [EMAIL PROTECTED] wrote:
> Netscape 4.61 as packaged in "potato" dies intermittently around window
> destroy events. Does anyone know why?
>
We can only guess it to be glibc related ( it is compiled against 2.0 not 2.1
).
Netscape 4.61 as packaged in "potato" dies intermittently around window
destroy events. Does anyone know why?
Thanks
Bruce
Q: How well are CD-RW-Writers supported?
A: You can write on CD-RW's exactly like on a CD-Recordable. X-CD-Roast
does not handle these any differently. To erase a CD-RW you have to
call
cdrecord manually (see the X-CD-Roast logfile where to find cdrecord
and
what your scsi-device is).
On Thu, 27 May 1999, Bryan Scaringe wrote:
> Could I please see the actual command you typed to blank the cd?
>
cdrecord speed=4 -dev=0,0 -v /f/image1.raw -multi
Johann
--
| Johann Spies Win
Could I please see the actual command you typed to blank the cd?
Johann Spies at Johann wrote:
>
> I am for the first time experimenting how to do CD-writing with a HP
> 7200i.
>
> After my first effort using CDROAST on a rewritable cd I could not mount
> it - my effort to mount it resulting i
I am for the first time experimenting how to do CD-writing with a HP
7200i.
After my first effort using CDROAST on a rewritable cd I could not mount
it - my effort to mount it resulting in
mount /hp7200
mount: block device /dev/scd0 is write-protected, mounting read-only
hdb: ATAPI reset com
I keep getting these messages on a debian potato system with
a 2.1.129 kernel. I've been getting them for months, using
various versions of the development kernel with slink -- I have
IPv6 compiled into the kernel, an SMC Ultra II/EPIC network card, etc.
Is there any known cause for these? I've
On Wed, 11 Nov 1998, joseph evan porter wrote:
: >
: > I keep on seeing the following error message appear over and over in
: > /var/log/syslog:
: >
: > Nov 10 13:21:46 chinook kernel: Socket destroy delayed (r=112 w=0)
: >
: > Does anyone have any idea wha
>
> I keep on seeing the following error message appear over and over in
> /var/log/syslog:
>
> Nov 10 13:21:46 chinook kernel: Socket destroy delayed (r=112 w=0)
>
> Does anyone have any idea what this might be about?
>
I'm not sure, but I've been getting th
I keep on seeing the following error message appear over and over in
/var/log/syslog:
Nov 10 13:21:46 chinook kernel: Socket destroy delayed (r=112 w=0)
Does anyone have any idea what this might be about?
Max
Hi,
I have seen this with the latest net packages in most version
since 1.3.95, I think. Still happens at 1.99.8, but less so than some
earlier kernels. I have yet to boot 1.99.10.
Hasn't caused my any problems, but YMMV.
manoj
--
"Bond reflected that good Americ
ts transmitted, 0 packets received, 100% packet loss
>
> Socket destroy delayed (r=0 w=1340)
> ||
>
> I never saw this before ! Anything to worry about ?
> My netbase is version 2.02-1.
We had this on the machines in the lab for a short while. I believe
it went
ved, 100% packet loss
>
> Socket destroy delayed (r=0 w=1340)
> ||
>
> I never saw this before ! Anything to worry about ?
> My netbase is version 2.02-1.
It's a kernel problem. If you just get a few of these messages it's
ok. If you get a lot of the
packets transmitted, 0 packets received, 100% packet loss
>
>Socket destroy delayed (r=0 w=1340)
>||
>
>I never saw this before ! Anything to worry about ?
>My netbase is version 2.02-1.
This is a kernel problem, well known about by the kernel
developers. The very
Hi,
on a quite recently installed Debian-1.1 box I sometimes encounter the
following.
koko:/root>>> ping us1by-6
PING us1by-6 (156.53.107.26): 56 data bytes
--- us1by-6 ping statistics ---
5 packets transmitted, 0 packets received, 100% packet loss
Socket destroy delayed (r
Luis F. Gonzalez writes:
> I am installing Debian 1.1 using an NFS mounted site through my ethernet
> and keep having this message
>
> Socket Destroy Delayed (r=0 w=236)
>
> What is this? what's going on?
Don't worry. It's a message from the kernel. It has no
Hi,
I am installing Debian 1.1 using an NFS mounted site through my ethernet
and keep having this message
Socket Destroy Delayed (r=0 w=236)
What is this? what's going on?
Thanks,
Luis.
70 matches
Mail list logo