Re: Securely deleting *Windows* files (was Re: simple way to securely destroy deleted files in a file system)

2010-07-17 Thread Christian Jaeger
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

Re: Securely deleting *Windows* files (was Re: simple way to securely destroy deleted files in a file system)

2010-07-17 Thread Christian Jaeger
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

Re: simple way to securely destroy deleted files in a file system

2010-07-17 Thread Andre Majorel
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

Re: simple way to securely destroy deleted files in a file system

2010-07-16 Thread Andrei Popescu
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

Re: simple way to securely destroy deleted files in a file system

2010-07-16 Thread Andre Majorel
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,

Re: Securely deleting *Windows* files (was Re: simple way to securely destroy deleted files in a file system)

2010-07-16 Thread H.S.
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

Re: Securely deleting *Windows* files (was Re: simple way to securely destroy deleted files in a file system)

2010-07-16 Thread H.S.
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

Re: Securely deleting *Windows* files (was Re: simple way to securely destroy deleted files in a file system)

2010-07-16 Thread Ron Johnson
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

Re: Securely deleting *Windows* files (was Re: simple way to securely destroy deleted files in a file system)

2010-07-16 Thread Mark
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

Re: simple way to securely destroy deleted files in a file system

2010-07-16 Thread Jordan Metzmeier
-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

Re: simple way to securely destroy deleted files in a file system

2010-07-16 Thread H.S.
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

Re: simple way to securely destroy deleted files in a file system

2010-07-16 Thread Michael Iatrou
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

Re: Securely deleting *Windows* files (was Re: simple way to securely destroy deleted files in a file system)

2010-07-16 Thread H.S.
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

Re: Securely deleting *Windows* files (was Re: simple way to securely destroy deleted files in a file system)

2010-07-16 Thread Ron Johnson
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

Re: simple way to securely destroy deleted files in a file system

2010-07-16 Thread Aaron Toponce
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

Re: Securely deleting *Windows* files (was Re: simple way to securely destroy deleted files in a file system)

2010-07-16 Thread H.S.
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

Securely deleting *Windows* files (was Re: simple way to securely destroy deleted files in a file system)

2010-07-16 Thread Ron Johnson
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

Re: simple way to securely destroy deleted files in a file system

2010-07-16 Thread green
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

Re: simple way to securely destroy deleted files in a file system

2010-07-16 Thread Jordan Metzmeier
-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

Re: simple way to securely destroy deleted files in a file system

2010-07-15 Thread Jordon Bedwell
;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

Re: simple way to securely destroy deleted files in a file system

2010-07-15 Thread Michael Iatrou
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

Re: simple way to securely destroy deleted files in a file system

2010-07-15 Thread Aaron Toponce
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

Re: simple way to securely destroy deleted files in a file system

2010-07-15 Thread Mark
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

Re: simple way to securely destroy deleted files in a file system

2010-07-15 Thread green
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

Re: simple way to securely destroy deleted files in a file system

2010-07-15 Thread Andrei Popescu
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

Re: simple way to securely destroy deleted files in a file system

2010-07-15 Thread Mark
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

Re: simple way to securely destroy deleted files in a file system

2010-07-15 Thread thib
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

Re: simple way to securely destroy deleted files in a file system

2010-07-15 Thread H.S.
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

Re: simple way to securely destroy deleted files in a file system

2010-07-15 Thread H.S.
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

Re: simple way to securely destroy deleted files in a file system

2010-07-15 Thread Perry E. Metzger
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

Re: simple way to securely destroy deleted files in a file system

2010-07-15 Thread Wolodja Wentland
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

simple way to securely destroy deleted files in a file system

2010-07-15 Thread H.S.
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

Re: Locales destroy X key repeat!

2006-05-21 Thread Andrew Sackville-West
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'

Locales destroy X key repeat!

2006-05-21 Thread Dirk
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

Re: DESTROY

2000-12-15 Thread will trillich
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

Re: DESTROY (perl experts please) (fwd)

2000-12-02 Thread pigfoot Chen
¡°¡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

Re: DESTROY (perl experts please) (fwd)

2000-12-01 Thread Wayne Topa
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 > >

Re: DESTROY (perl experts please) (fwd)

2000-11-30 Thread Damien
> > > > 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

Re: DESTROY (perl experts please) (fwd)

2000-11-30 Thread Wayne Topa
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

DESTROY (perl experts please) (fwd)

2000-11-29 Thread Debian Ghost
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

RE: DESTROY

2000-11-29 Thread Steeve Lennmark
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

RE: DESTROY

2000-11-29 Thread Steeve Lennmark
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 > &

RE: DESTROY

2000-11-29 Thread Debian Ghost
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

RE: DESTROY

2000-11-29 Thread Debian Ghost
> 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

RE: DESTROY

2000-11-29 Thread Steeve Lennmark
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:

RE: DESTROY

2000-11-29 Thread Steeve Lennmark
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:

Re: DESTROY

2000-11-29 Thread Debian Ghost
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

Re: DESTROY

2000-11-29 Thread Debian 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

Re: DESTROY

2000-11-27 Thread Joey Hess
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

Re: DESTROY

2000-11-27 Thread Joey Hess
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

DESTROY

2000-11-27 Thread Debian Ghost
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

Re: netscape 4.61 dies around window destroy in "potato"

1999-07-24 Thread Wim Kerkhoff
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

Re: netscape 4.61 dies around window destroy in "potato"

1999-07-24 Thread Kain
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

RE: netscape 4.61 dies around window destroy in "potato"

1999-07-24 Thread Sean 'Shaleh' Perry
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 dies around window destroy in "potato"

1999-07-24 Thread bruce
Netscape 4.61 as packaged in "potato" dies intermittently around window destroy events. Does anyone know why? Thanks Bruce

Re: Did I destroy my CD-RW-disc?

1999-05-28 Thread Bryan Scaringe
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).

Re: Did I destroy my CD-RW-disc?

1999-05-28 Thread Johann Spies at Johann
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

Re: Did I destroy my CD-RW-disc?

1999-05-28 Thread Bryan Scaringe
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

Did I destroy my CD-RW-disc?

1999-05-26 Thread Johann Spies at Johann
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

kernel: Socket destroy delayed (r=0 w=208)

1998-11-26 Thread Ryan Lackey
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

Re: socket destroy delayed

1998-11-11 Thread Nathan E Norman
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

Re: socket destroy delayed

1998-11-11 Thread joseph evan porter
> > 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

socket destroy delayed

1998-11-10 Thread Max
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

Re: Socket destroy delayed (r=0 w=1340)

1996-06-02 Thread Manoj Srivastava
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

Re: Socket destroy delayed (r=0 w=1340)

1996-06-02 Thread Rob Browning
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

Re: Socket destroy delayed (r=0 w=1340)

1996-06-02 Thread Peter Tobias
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

Re: Socket destroy delayed (r=0 w=1340)

1996-06-02 Thread Austin Donnelly
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

Socket destroy delayed (r=0 w=1340)

1996-06-02 Thread Gerd Bavendiek
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

Re: Socket Destroy Delayed...

1996-05-08 Thread Michael Meskes
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

Socket Destroy Delayed...

1996-05-06 Thread Luis F. Gonzalez
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.