GNU bug report logs - #51470
Bug with Putty

Previous Next

Package: gzip;

Reported by: "Dewberry, Heather" <Heather.Dewberry <at> 53.com>

Date: Thu, 28 Oct 2021 23:57:01 UTC

Severity: normal

Tags: notabug

Done: Paul Eggert <eggert <at> cs.ucla.edu>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 51470 in the body.
You can then email your comments to 51470 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-gzip <at> gnu.org:
bug#51470; Package gzip. (Thu, 28 Oct 2021 23:57:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to "Dewberry, Heather" <Heather.Dewberry <at> 53.com>:
New bug report received and forwarded. Copy sent to bug-gzip <at> gnu.org. (Thu, 28 Oct 2021 23:57:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: "Dewberry, Heather" <Heather.Dewberry <at> 53.com>
To: "bug-gzip <at> gnu.org" <bug-gzip <at> gnu.org>
Subject: Bug with Putty
Date: Thu, 28 Oct 2021 19:52:06 +0000
[Message part 1 (text/plain, inline)]
Hello,

When running this command:

[cid:image001.jpg <at> 01D7CC13.C08F2310]

Putty crashes on me.  I get this:


[cid:image002.jpg <at> 01D7CC13.C08F2310]


Is there a way around this?



Heather Dewberry
Senior Platform Engineer | Privilege Access Management

[cid:image003.png <at> 01D7CC13.C08F2310]
Fifth Third Bank  |  38 Fountain Square Plaza  |  MD 10905H  |  Cincinnati, OH 45202
513.358.3327



This e-mail transmission contains information that is confidential and may be privileged.   It is intended only for the addressee(s) named above. If you receive this e-mail in error, please do not read, copy or disseminate it in any manner. If you are not the intended recipient, any disclosure, copying, distribution or use of the contents of this information is prohibited. Please reply to the message immediately by informing the sender that the message was misdirected. After replying, please erase it from your computer system. Your assistance in correcting this error is appreciated.
[Message part 2 (text/html, inline)]
[image001.jpg (image/jpeg, inline)]
[image002.jpg (image/jpeg, inline)]
[image003.png (image/png, inline)]

Information forwarded to bug-gzip <at> gnu.org:
bug#51470; Package gzip. (Fri, 29 Oct 2021 00:04:01 GMT) Full text and rfc822 format available.

Message #8 received at 51470 <at> debbugs.gnu.org (full text, mbox):

From: Paul Eggert <eggert <at> cs.ucla.edu>
To: "Dewberry, Heather" <Heather.Dewberry <at> 53.com>
Cc: 51470 <at> debbugs.gnu.org
Subject: Re: bug#51470: Bug with Putty
Date: Thu, 28 Oct 2021 17:03:11 -0700
On 10/28/21 12:52, Dewberry, Heather via GNU gzip discussion and bug 
reports. wrote:
> Is there a way around this?

Sure, don't use 'gzip -c -f' to the terminal. There's no reason to do 
that (other than maybe you want to crash your terminal :-).




Information forwarded to bug-gzip <at> gnu.org:
bug#51470; Package gzip. (Fri, 29 Oct 2021 19:28:03 GMT) Full text and rfc822 format available.

Message #11 received at 51470 <at> debbugs.gnu.org (full text, mbox):

From: "Dewberry, Heather" <Heather.Dewberry <at> 53.com>
To: Paul Eggert <eggert <at> cs.ucla.edu>
Cc: "51470 <at> debbugs.gnu.org" <51470 <at> debbugs.gnu.org>
Subject: RE: bug#51470: Bug with Putty
Date: Fri, 29 Oct 2021 13:03:33 +0000
Thank you for the update.  I definitely do not want to crash putty.  Is there a way to zip up all of the files that I am trying to zip up outside of using gzip?  

-----Original Message-----
From: Paul Eggert <eggert <at> cs.ucla.edu> 
Sent: Thursday, October 28, 2021 8:03 PM
To: Dewberry, Heather <Heather.Dewberry <at> 53.com>
Cc: 51470 <at> debbugs.gnu.org
Subject: Re: bug#51470: Bug with Putty

**CAUTION EXTERNAL EMAIL**

**DO NOT open attachments or click on links from unknown senders or unexpected emails**

On 10/28/21 12:52, Dewberry, Heather via GNU gzip discussion and bug reports. wrote:
> Is there a way around this?

Sure, don't use 'gzip -c -f' to the terminal. There's no reason to do 
that (other than maybe you want to crash your terminal :-).
**CAUTION EXTERNAL EMAIL**

**DO NOT open attachments or click on links from unknown senders or unexpected emails**

This e-mail transmission contains information that is confidential and may be privileged.   It is intended only for the addressee(s) named above. If you receive this e-mail in error, please do not read, copy or disseminate it in any manner. If you are not the intended recipient, any disclosure, copying, distribution or use of the contents of this information is prohibited. Please reply to the message immediately by informing the sender that the message was misdirected. After replying, please erase it from your computer system. Your assistance in correcting this error is appreciated.

Information forwarded to bug-gzip <at> gnu.org:
bug#51470; Package gzip. (Fri, 29 Oct 2021 19:56:02 GMT) Full text and rfc822 format available.

Message #14 received at 51470 <at> debbugs.gnu.org (full text, mbox):

From: Paul Eggert <eggert <at> cs.ucla.edu>
To: "Dewberry, Heather" <Heather.Dewberry <at> 53.com>
Cc: "51470 <at> debbugs.gnu.org" <51470 <at> debbugs.gnu.org>
Subject: Re: bug#51470: Bug with Putty
Date: Fri, 29 Oct 2021 12:55:41 -0700
On 10/29/21 06:03, Dewberry, Heather wrote:
> Is there a way to zip up all of the files that I am trying to zip up outside of using gzip?

That depends on exactly what you're trying to do. Maybe something like this:

find /var/log/pb/eventlog ! -name '*.gz' -mtime +60 -print0 |
 tar --null -T- -czf somefile.tgz

but you'll need to read the 'find' and 'tar' documentation to see 
exactly what you want.




Added tag(s) notabug. Request was from Paul Eggert <eggert <at> cs.ucla.edu> to control <at> debbugs.gnu.org. (Fri, 29 Oct 2021 19:57:02 GMT) Full text and rfc822 format available.

bug closed, send any further explanations to 51470 <at> debbugs.gnu.org and "Dewberry, Heather" <Heather.Dewberry <at> 53.com> Request was from Paul Eggert <eggert <at> cs.ucla.edu> to control <at> debbugs.gnu.org. (Fri, 29 Oct 2021 19:57:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 27 Nov 2021 12:24:07 GMT) Full text and rfc822 format available.

This bug report was last modified 3 years and 200 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.