Displaying 20 results from an estimated 2000 matches similar to: "[PATCH] X11 forwarding failure on later Linux dev kernels fix"
2013 Dec 10
0
[LLVMdev] Switching to the new MingW ABI
On Mon, Dec 9, 2013 at 5:18 PM, Rafael EspĂndola
<rafael.espindola at gmail.com> wrote:
> Mingw switched abis with the release of gcc 4.7
> (http://gcc.gnu.org/gcc-4.7/changes.html). The main change is that now
> mingw (like msvc) given thiscall calling convention to methods by
> default.
>
> I think the last bug blocking us to support the new abi has just been
> fixed.
2000 Oct 03
1
X forwarding fails, Linux 2.4.0-test[8,9]
X forwarding doesn't work for me under Linux kernels 2.4.0-test8 or test9,
using OpenSSH 2.2.0p1 (as packaged in Debian woody.) When I try to ssh to my
machine, the client spits out the following pieces of information:
Warning: Remote host denied X11 forwarding.
Last login: Tue Oct 3 15:26:19 2000 from localhost on pts/2
Linux mallard 2.4.0-test9 #3 Tue Oct 3 14:20:59 CDT 2000 i686 unknown
2000 Oct 27
0
Segfault in 2.2.0p1 due to connect() changes in Linux 2.4
Hello,
I upgraded (?) one of my machines to Linux kernel 2.4.0-test9, and sshd
started failing. Specifically, the sshd child processes would segfault if
a user requested X11 forwarding. I tracked the problem down to these bits
of code:
channels.c, x11_create_display_inet, line 1738:
sock = socket(ai->ai_family, SOCK_STREAM, 0);
if (sock < 0) {
if (errno != EINVAL) {
2010 Oct 15
1
[LLVMdev] compiling rev. 116572 on you-know-what
Hi!
These warnings and errors might be interesting to you when compiling
rev. 116572
of llvm and clang on windows:
\llvm\utils\killthedoctor\system_error.h(260) : error C2065:
'EAFNOSUPPORT' : undeclared identifier
and many similar errors regarding the system error constants. msdn says it's
WSAEAFNOSUPPORT instead of EAFNOSUPPORT
(prepend WSA... to all system error constants)
2015 Jul 16
3
[Patch] Fix hang in safe_sendfile on SmartOS
# HG changeset patch
# User Sebastian Wiedenroth <sebastian.wiedenroth at skylime.net>
# Date 1437050484 -7200
# Thu Jul 16 14:41:24 2015 +0200
# Node ID 7ef3a533b097e8e6590e754dc56ad308ab29233b
# Parent e3640ccaa76d77a9658126d1f8f306480dad8af7
Fix hang in safe_sendfile on SmartOS
The call to sendfile on SmartOS can fail with EOPNOTSUPP. This is a valid error
code and documented in
2008 Oct 21
3
code works in R desktop but not iin RWeb - How do I modify to get it working in RWeb, please?
Hi,
How are you? I have a quick question.... I have code that works perfectly
with R desktop, but does not work with RWeb. Could you please tell me how
to modify the code below so it will work with RWeb?
#Read in txt file
happyguys<-read.table("c:/test8.txt", header=TRUE, row.names=1)
#Subset the txt file to only include certain values
test<-subset(happyguys, GRADE == 7
2003 Oct 29
1
tune2fs -j on mounted FS
Just now I ran tune2fs -j on the root filesystem of a box running
2.6.0-test8. Then I edited /etc/fstab and changed the FS type to from
ext2 to ext3, saved the file, and invoked vim on the file again. A
few moments after this, the box hung. Unfortunately X was running at
the time, and so I don't have any messages to cite.
Is this a known problem?
2007 Dec 05
1
RC2 troubles
Hi
I can''t get backgroundrb working. I get the following error in
backgroundrb_server.log:
backgroundrb/framework/core.rb:117:in `bind'': Address family not
supported by protocol family - bind(2) (Errno::EAFNOSUPPORT)
Seems to be a problem with my Mac (Leopard) and my ruby install (1.8.6
that came with the OS) according to some emails I found with google.
Did anyone
2007 Mar 12
1
infinite loop in clients/upsclient.c connect
I was testing some code for listing available UPSes, and when I tried
connecting to a machine that didn't have upsd running, upsc went into
an infinite loop on OS X (IPv6 enabled).
The error code returned by connect is EINVAL, which apparently isn't
one of the errors documented in connect(2) here.
http://boxster.ghz.cc/projects/nut/changeset/731
2003 Oct 26
2
setlogin failed: Function not implemented
I'm using openssh-3.7.1p2 on Linux.
I keep getting setlogin errors in /var/log/messages:
Oct 26 18:44:22 giediprime sshd[7774]: Accepted publickey for root from 127.0.0.1 port 39310 ssh2
Oct 26 18:44:22 giediprime sshd[7776]: error: setlogin failed: Function not implemented
Running LFS 4.0. Happens both on 2.6.0-test8 and 2.4.22-ac1.
When configuring openssh I get this in config.log:
2007 Aug 29
5
Undefined method stub
When I try to execute the following example, I get an error message:
/usr/local/lib/ruby/gems/1.8/gems/mocha-0.5.4/lib/mocha/object.rb:40:
in `expects'': undefined method `stub'' for nil:NilClass (NoMethodError)
from test8.rb:5
What could be the reason? I tried with the latest Mocha Ruby gem, and I
also tried it with the Rails plugin.
The example:
require
2015 Jul 29
2
Bug#793921: tftpd-hpa: IPv6 address cannonization breaks IPv4
Take 2 at bouncing this to the rest of the original recipients through a
different MTA, since mail.zytor.com refused to accept it the first time.
Please re-add Jason Gunthorpe <jgg at obsidianresearch.com> and
793921 at bugs.debian.org to the CC for replies.
On Wed, Jul 29, 2015 at 05:34:00PM +0930, Ron wrote:
>
> Hi Jason,
>
> On Tue, Jul 28, 2015 at 03:45:30PM -0600, Jason
2018 Feb 23
6
RFC 8305 Happy Eyeballs in OpenSSH
Hello,
I use hosts that are dual stack configured (IPv4 and IPv6) and it
happens that connectivity through one or the other is broken and
timeouts. In these case connection to the SSH server can take quite some
time as ssh waits for the first address to timeout before trying the
next.
So I gave a stab at implementing RFC 8305. This patch implements part of
it in sshconnect.c.
* It does not do
2011 Mar 17
3
Flexible rbind
Dear All,
I am trying to create a empty structure that I want to fill gradually
through the code.
I want to use something like rbind to create the basic structure first.
I am looking for a possibility to do an rbind where the columns names
dont match fully (but the missing columns can be defaulted to either
zero or n/a) (my actual data has a lot of columns).
Please see the data frames below
I
2008 Apr 25
1
samba and openldap authentication issues!
Alight, I've been working on this for too many hours straight. Any
help would be much appreciated!
(I posted this online to linux questions, it could be easier to read
on there... http://www.linuxquestions.org/questions/linux-server-73/samba-and-openldap-authentication-issues-637647/)
The problem is users created in smbldap-useradd can not login, unless
they also are a local user. for
2013 Dec 10
10
[LLVMdev] Switching to the new MingW ABI
Mingw switched abis with the release of gcc 4.7
(http://gcc.gnu.org/gcc-4.7/changes.html). The main change is that now
mingw (like msvc) given thiscall calling convention to methods by
default.
I think the last bug blocking us to support the new abi has just been
fixed. The question now is how to switch.
The attached patches simply switch llvm and clang to the new ABI. This
is similar to what
2012 Apr 30
1
SELinux is preventing /usr/libexec/postfix/pickup from module_request
Getting module_request errors from SELinux. Errors being thrown by
metacity
sendmail.postfix
cleanup
trivial-rewarite
local
postdrop
pickup
All errors are essentially the same
System was working well until I began to apply some basic security
hardening configuration.
Postfix started complaining when I made /tmp noexec, nodev, nosuid, and
then did a mount --bind of /var/tmp under
2023 Jan 20
17
[Bug 3526] New: Config option AddressFamily has no effect?
https://bugzilla.mindrot.org/show_bug.cgi?id=3526
Bug ID: 3526
Summary: Config option AddressFamily has no effect?
Product: Portable OpenSSH
Version: 9.0p1
Hardware: amd64
OS: Mac OS X
Status: NEW
Severity: trivial
Priority: P5
Component: ssh
Assignee: unassigned-bugs at
2001 Dec 05
1
DISPLAY=localhost
hi,
this can be applied to the latest portable CVS. by default bind sshd fake
display to localhost.
[stevesk at jenny stevesk]$ uname -sr
HP-UX B.11.11
[stevesk at jenny stevesk]$ echo $DISPLAY
localhost:14.0
[stevesk at jenny stevesk]$ netstat -an|grep 6014
tcp 0 0 127.0.0.1.6014 *.* LISTEN
this is currently controlled with sshd_config gatewayports;
2004 May 11
1
Problem building 1.0-test7 : missing header
Greetings,
I recently rolled out Dovecot in our small (<30 people) company, and
have been mightily impressed by the quality, performance and ease of use.
I was hoping to use the new versions soon, as I'd like to start using
CRAM-MD5 (much more common in mail clients than DIGEST-MD5), but found
the 0.99.11 versions too unstable.
So, I tried to build last nights CVS snapshot (May