Displaying 20 results from an estimated 60000 matches similar to: "[Bug 85] ssh -2 localhost od /bin/ls | true ignore SIGPIPE"
2006 Dec 27
0
[Bug 85] ssh -2 localhost od /bin/ls | true ignore SIGPIPE
http://bugzilla.mindrot.org/show_bug.cgi?id=85
------- Comment #5 from jon at stimmel.net 2006-12-28 04:24 -------
I am running into this as well, and have not found a workaround.
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2008 May 09
3
[Bug 85] ssh -2 localhost od /bin/ls | true ignore SIGPIPE
https://bugzilla.mindrot.org/show_bug.cgi?id=85
Damien Miller <djm at mindrot.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |djm at mindrot.org
--- Comment #6 from Damien Miller <djm at mindrot.org> 2008-05-09 14:41:19 ---
The
2003 Jan 25
0
[Bug 85] ssh -2 localhost od /bin/ls | true ignore SIGPIPE
http://bugzilla.mindrot.org/show_bug.cgi?id=85
markus at openbsd.org changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|markus at openbsd.org |openssh-unix-dev at mindrot.org
Status|ASSIGNED |NEW
------- Additional Comments From markus at
2010 Sep 30
3
ls this bandwidth package availblale in Centos
Hi
ls the if top package availblale in Centos?
http://www.ex-parrot.com/~pdw/iftop/
Thank you
2001 Feb 23
0
A couple of patches....
I have made available three patches for OpenSSH
2.5.1p1 (and 2.3.0p1), two of which may be of
general interest.
They are described in detail at
http://www.ex-parrot.com/~chris/openssh-patches/
but a brief description--
http://www.ex-parrot.com/~chris/openssh-patches/openssh-2.5.1p1-keepalives.patch
modifies the code in clientloop.c to
periodically send a null packet as a keepalive;
this is
2009 Apr 21
3
ssh localhost yes | true
Referring to "CLOSED FIXED" Bug 85:
https://bugzilla.mindrot.org/show_bug.cgi?id=85
Assuming that you have your machine setup so that
the following commands run without prompting:
ssh -2 localhost pwd
ssh -1 localhost pwd
Then this command:
ssh -1 localhost yes | true
always produces this output:
Write failed flushing stdout buffer.
write stdout: Broken pipe
Yet
2001 Mar 14
1
[PATCH] Added Null packet keepalive option
I have attached a patch which adds null packet keepalive
functionality to the client. This patch is made against the
current CVS tree as of 3/14/01.
Please consider this patch for inclusion in the OpenSSH main tree.
This patch is based upon and includes code from the Chris Lightfoot
(chris at ex-parrot.com) patch posted 2/23.
The original patch from Chris is at:
2001 May 21
1
ignoring SIGPIPE causing problems in pipes
Hi. I'm writing an article on network backups, and instead of using
my old ssh1 software, I decided to go with openssh all the way. I got
the hang of the openssh way of doing protocol 2 public key
authentication, but ssh is failing to terminate when a pipe is broken.
I am ssh-ing to a remote host and doing a cat or zcat of a dump file,
then on the localhost, I'm using restore to extract
2018 Dec 01
1
[nbdkit PATCH] sh: Don't let child inherit SIGPIPE ignored
While nbdkit itself must run with SIGPIPE ignored, many applications
expect to inherit SIGPIPE in the default state. What's worse, POSIX
states that a non-interactive shell script cannot use 'trap' to
undo an inherited SIG_IGN on SIGPIPE. I have seen several bug
reports over the years of something that works for a developer but
fails under a CI environment, where the root cause was
2023 Aug 22
0
[RFC PATCH v1 1/2] vsock: send SIGPIPE on write to shutdowned socket
On Mon, Aug 14, 2023 at 10:46:05PM +0300, Arseniy Krasnov wrote:
>
>
>On 04.08.2023 17:28, Stefano Garzarella wrote:
>> On Fri, Aug 04, 2023 at 03:46:47PM +0300, Arseniy Krasnov wrote:
>>> Hi Stefano,
>>>
>>> On 02.08.2023 10:46, Stefano Garzarella wrote:
>>>> On Tue, Aug 01, 2023 at 05:17:26PM +0300, Arseniy Krasnov wrote:
>>>>>
2009 Jun 25
0
ignoring SIGPIPE signal + error loading lapack routines
Dear list
I don't know whether this is the right place to post this message. If not,
please redirect me to the proper place.
i have a Perl application on Linux that uses R (V2.9.0) through the Perl-R
interface.
basically, the application performs statistical analysis using R, and
displays the R output (JPG image of the particular analysis) to the user.
in general, this works fine. but i
2019 Dec 06
0
Error in close.connection(p) : ignoring SIGPIPE signal
Hi Benjamin,
you cannot pipe to echo, since it does not read from stdin.
echo just echos is first arg, i.e. echo /dev/stdin > /dev/null will echo the string "/dev/stdin"to /dev/stdout, which is redirected to /dev/null.
Try
p <- pipe("cat > /dev/null", open = "w")
instead.
Regards,
Andreas
2019-12-06 02:46 GMT+01:00 Benjamin Tyner<btyner at
2019 Dec 06
2
Error in close.connection(p) : ignoring SIGPIPE signal
Not sure if this is a bug, so posting here first. If I run:
?? cnt <- 0L
?? while (TRUE) {
? ? ?? cnt <- cnt + 1L
? ? ?? p <- pipe("echo /dev/stdin > /dev/null", open = "w")
? ? ?? writeLines("foobar", p)
? ? ?? tryCatch(close(p), error = function(e) { print(cnt); stop(e)})
?? }
then once cnt gets to around 650, it fails with:
?? [1] 654
??
2019 Dec 06
1
Error in close.connection(p) : ignoring SIGPIPE signal
Andreas,
How right you are! Still, I find it curious that in the context of the
while(TRUE) loop, I am allowed to do this 653 times, with failure on the
654th attempt. Perhaps there is something asynchronous going on? If I
eliminate the looping, it does indeed fail (as expected) on the first
attempt to close the pipe.
Regards
Ben
On 12/6/19 2:04 AM, Andreas Kersting wrote:
> Hi
2011 Feb 08
2
Ken Olsen od DEC, 1927-2011
A lot of us wouldn't be here without him. DEC made good, really reliable
hardware.
mark
<http://www.networkworld.com/news/2011/020711-kenneth-olsen-dec-obit.html>
2023 Aug 04
0
[RFC PATCH v1 1/2] vsock: send SIGPIPE on write to shutdowned socket
On Fri, Aug 04, 2023 at 03:46:47PM +0300, Arseniy Krasnov wrote:
>Hi Stefano,
>
>On 02.08.2023 10:46, Stefano Garzarella wrote:
>> On Tue, Aug 01, 2023 at 05:17:26PM +0300, Arseniy Krasnov wrote:
>>> POSIX requires to send SIGPIPE on write to SOCK_STREAM socket which was
>>> shutdowned with SHUT_WR flag or its peer was shutdowned with SHUT_RD
>>> flag.
2000 Dec 11
1
OpenSSH 2.3.0p1: Broken pipe / SIGPIPE
Dear OpenSSH gurus! ;-)
I recently upgraded from "OpenSSH 2.1.1p4" to "OpenSSH 2.3.0p1"
on my Linux 2.2.17 box with OpenSSL 0.9.5a (RedHat 7.0).
According to the "ChangeLog", there was a change in SIGPIPE
handling:
| 20000930
| [...]
| - (djm) Ignore SIGPIPEs from serverloop to child. Fixes crashes with
| very short lived X connections. Bug report from
2000 Oct 08
1
binding to privileged ports
Apologies if this is a FAQ; I couldn't find an answer on openssh.com or
the mailing list archive....
Commercial SSH (I looked at 1.2.30) allocates privileged ports by counting
/downwards/ from 1023, so that it will obtain a socket with (roughly
speaking) the highest available privileged port number. This also appears
to be the behaviour of rsh et al:
(from sshconnect.c; whitespace elided)
2000 Oct 08
0
No subject
Chris Lightfoot -- http://www.ex-parrot.com/~chris/
In view of the fact that God limited man's intelligence,
it is a pity that He did not also limit his stupidity (Adenauer)
2023 Aug 04
0
[RFC PATCH v1 1/2] vsock: send SIGPIPE on write to shutdowned socket
On Fri, Aug 04, 2023 at 05:34:20PM +0300, Arseniy Krasnov wrote:
>
>
>On 04.08.2023 17:28, Stefano Garzarella wrote:
>> On Fri, Aug 04, 2023 at 03:46:47PM +0300, Arseniy Krasnov wrote:
>>> Hi Stefano,
>>>
>>> On 02.08.2023 10:46, Stefano Garzarella wrote:
>>>> On Tue, Aug 01, 2023 at 05:17:26PM +0300, Arseniy Krasnov wrote:
>>>>>