similar to: Setting of DISPLAY Variable - Patch

Displaying 20 results from an estimated 700 matches similar to: "Setting of DISPLAY Variable - Patch"

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;
2001 Feb 21
3
X11 display issues
Hi, This also has been discussed in SSHSCI's SSH context. All SSH versions (both SSHSCI and OpenSSH) derive value for DISPLAY variable from `uname -n`. The problem is that the returned value is not necessarily resolvable to a valid IP number which in turn might cause a failure. To make it fool-proof I suggest to set DISPLAY to the interface's address the user has reached the system in
2000 Dec 27
2
patch to support hurd-i386
Hi, here's a patch so that ssh also supports hurd-i386. Thanks for incorporating. The patch comes from Robert Bihlmeyer <robbe at orcus.priv.at>. > openssh 2.2.0p1-1.1 does not build on the Hurd. The appended patch > fixes that. Changes in detail: > * PAM is not (yet?) supported, so the PAM dependencies are only put into > the control file on architectures != hurd-i386.
2005 May 17
1
callgroup and callwaiting for IAX clients
Hi Gurus. I searched the lists, wiki and the rest of the web but I still do not understand this. My Setup is as follows: [ISDN via chan_capi or IAX2 DiD Provider] => [* PBX] => [IAX2 Clients (Atcom AT-320ED)] I want to get callgroup/pickupgroup and callwaiting working on the IAX phones. Some web sources told me that this was not implemented, others say that the phone has to handle
2011 Jul 14
0
Gui editor / viewer for large data
Dear all, I am searching for a possibility to view large data sets (e.g. stored in ffdf objects) in a GUI window in a memory-efficient way. So far I looked at gtkDfEdit (package RGtk2Extras) and gdf (package gWidgets). Both operate (as far as I can see) on data frames stored in memory. gtkDfEdit accepts an ff data frame as input, but there is a long delay before it shows up, so I presume the
2011 Apr 20
0
Sweave stops when opening X11 device fails
Hi all, I've run into the following problem with Sweave: I frequently run Sweave from a xterm console within an X session owned by a different user, i.e. my colleague is logged in on this computer and I do "su" with my username and start R and Sweave afterwards. Now, when Sweave comes to a figure chunk, it sees that there is an X server running and tries to show whatever I plot
2011 Feb 18
1
Samba 3 with Windows 2008 Enterprise Terminalserver
Dear Samba Member, i've decide to write to the samba lists in the hope of Your help. Specifically i have at the moment really a problem between Samba 3 (version 3.2.3-3) and Windwos 2008 Enterprise Terminalserver, namilly User, that logon on Samba PDC, could be authenticated, but don't get policy from Samba Netlogon. With both other Terminalserver (Windows Server 2003) works policy
2001 Aug 06
1
Setting of DISPLAY Variable
Hi I'm currently testing OpenSSH_2.9p2 on AIX. Is there any reason why the hostname is used for the DISPLAY variable instead of localhost? I just had problems with X11 forwarding on a AIX test machine that has HCMP configured but not running. (the network interface has a different IP address in that state) After changing the DISPLAY variable X11 forwarding worked fine. Frank -- Diese
2001 Aug 14
0
int/u_int Data Types Used
I was looking after some compiler warnings in openssh-2.9p2, same with yesterday's snap (about 15 Warnings, some for void*/function ptr warnings) IBM's compiler gives warnings, gcc on Linux doesn't complain about them. Example: "authfd.c", line 414.49: 1506-280 (W) Function argument assignment between types "unsigned int*" and "int*" is not allowed. I
2001 Sep 06
0
Antwort: Re: AIX openssh use of SRC control
Hi I've finished and tested a patch to add src routines to openssh (based on the Redbook "Writing Reliable AIX Daemons") Since a few days I have the O.K. to post it on the list, but I still want to splitt my patch file into logical parts (SRC/Logging/Datatype fixes) Frank Datum: 06.09.2001 19:04 An: Denise Genty <genty at austin.ibm.com> Kopie:
2010 Jun 18
0
OpenSSH - SFTP issue
Hello, We are having issue with SFTP for Windows server. The OpenSSH reports the "Exit Staus -1" upon exiting the sftp session ( Though the file is successfully getting transferred!!). I have opened ticket with VanDyke Software - vShell and reported this issue. Accordiong to VanDyke Software, there is no issue with vShell configuration / its debug logs. Would you
2003 May 23
0
Problem with winbind authentication on NT PDC
Hi all, i've problem with the authentication via winbind on a Windows NT PDC. Environment: Samba Server: z800 Linux SLES8 as VM guest on one LPAR SAMBA 3.0 alpha23 PDC: Windows NT 4.0 SP 6a The samba Server is member of the domain, i can check the secret with net rpc testjoin and wbinfo -t. I see the groups and user from the domain with getent group and getent passwd. When i try to
2003 Sep 29
0
Problem authenticate with a w2k3 ADS
Hello. I set up a samba 3.0.0 with ADS support. Everything is fine but authentication of incomming connections. I joined the ADS of a W2k3: linux:/ # /usr/local/samba/bin/net ads join "Computers" Using short domain name -- DOMAIN Joined 'LINUX' to realm 'DOMAIN.LOCAL' linux:/ # getent passwd root:x:0:0:root:/root:/bin/bash ...
2010 Jan 18
0
Fix for bug in match()
Hello all, I posted the following bug last week: # These calls work correctly: match(c("A", "B", "C"), c("A","C"), incomparables=NA) # okay match(c("A", "B", "C"), "A") # okay match("A", c("A", "B"), incomparables=NA) # okay # This one causes R to hang: match(c("A",
2005 Nov 22
2
Output of row and column names
Dear all, I am looking for a way to identify the row and column names of all elements within a matrix which fulfill some specified condition. Example: I have a correlation matrix of the following form: Y1 Y2 X1 0.4 0.3 X2 0.6 0.1 Suppose, I want to know which elements are smaller than 0.2, so the desired output should be something like: "X2 Y2" Thank you,
2010 Nov 23
0
read.table / type.convert: Unexpected column class
Hi all, I stumbled across the following, in my opinion surprising, behaviour of read.table: > data <- read.table(stdin(), sep=",") 0: 1, 2, 3 # Some comment 1: > sapply(data, class) V1 V2 V3 "integer" "integer" "numeric" I was surprised to find that V3 has class "numeric" despite its apparent integer value. I
2011 Feb 21
1
Problem with documentation of user-defined operator (S4 method)
Dear list members, I have defined a binary operator %append% with methods for some S4 classes. In my documentation file, I want to list the methods explicitly by using e.g.: \S4method{\%append\%}{RecLinkData,RecLinkData}(x, y) In the HTML documentation this comes out right as ## S4 method for signature 'RecLinkResult,RecLinkResult' x %append% y , but R CMD check
2009 Dec 07
0
Sweave, cacheSweave, and data frame
It's been a while since this thread appeared, but I had the same problem and don't want to keep the solution for myself. A small, reproducible example: <<cache=true>>= a=1 @ <<>>= a+1 @ Compiling with cacheSweave gives an error: > library(cacheSweave) Lade n?tiges Paket: filehash filehash: Simple key-value database (2.0-1 2008-12-19) Lade n?tiges Paket:
2010 Nov 15
1
Package with multiple shared libraries
Dear R-devel members, I would like to compile a package with two seperate shared libraries. For example, in a package 'foo', a file 'bar.so' built from a distinct set of source files should be installed in addition to the default 'foo.so' (or .dll on windows). Does anyone know about a way to achieve this without having a custom Makefile, e.g. via 'Makevars'?
2001 Nov 05
3
OpenSSH 2.3
Dear Gentlemen: a couple of months ago we ported OpenSSH 2.3 to an IBM OS/390 Mainframe machine: It ran very well until we tried to connect to an SSH server using SSH2 protocol. On the OS/390 (which is the client) it comes up with the following error messages: >ssh -v -2 somehost . . . debug: bits set: 504/1024 debug: len 55 datafellows 0 debug: