similar to: hang on exit bug under Linux

Displaying 20 results from an estimated 3000 matches similar to: "hang on exit bug under Linux"

2000 Jun 28
2
F-secure -> Openssh Compatibility
On Tue, 27 Jun 2000, W. Scott Wilburn wrote: > We have Macintoshes running Fsecure SSH client 1.0.1 which are unable to > connect to a server running Openssh 2.1.1 on Red Hat 6.2. > > I believe that the problem is a bug with Fsecure, since a 30-day trial > version of 1.0.2 works fine. I'm a bit reluctant to tell all the Mac users > they have to spend money to upgrade,
2004 Nov 11
1
rsync --rsh not reading .ssh/config
I've setup up a single-use key on a remote host to run rsync in server mode. I've also setup .ssh/config locally with an IdentityFile to select the single-use ssh key. This works on my Debian sid machine: rsync --rsh="ssh remove_host" :: But on another machine that command (and others tried below) do not access .ssh/config. The machine is running these: $ ssh -v
2000 Oct 13
1
question about ssh / security
I've been using ssh for a while now (both fsecure and openssh), but am not an expert on security. I was wondering whether the following is secure: I create a key pair, trusted & trusted.pub I run sshd on a server (no telnet, rsh or other services). I create a user "guest", and put "trusted.pub" in my authorized file. I give away "trusted" (the private key)
2000 Jun 28
1
F-secure -> Openssh Compatibility (fwd)
Date: Tue, 27 Jun 2000 16:09:43 -0600 (MDT) From: "W. Scott Wilburn" <wilburn at lanl.gov> To: ssh at clinet.fi Subject: F-secure -> Openssh Compatibility We have Macintoshes running Fsecure SSH client 1.0.1 which are unable to connect to a server running Openssh 2.1.1 on Red Hat 6.2. I believe that the problem is a bug with Fsecure, since a 30-day trial version of 1.0.2 works
2006 Feb 25
9
trace("") prints hex dump table
I''m running SunOS unknown 5.11 snv_33 i86pc i386 i86pc and to print a blank line in the output of my script I tried adding: trace(""); which printed 0 1 2 3 4 5 6 7 8 9 a b c d e f 0123456789abcdef 0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
2010 Aug 22
3
rexec error - where are you
Hi all, I've a particular host on my network that when I run; rexec -l username -p password remotehost command it just hangs. When I do; rexec -a -l username -p password remotehost command i get; Where are you? If I do; rexec -l username -p password localhostname (not just localhost but its actual name) command it works. Any ideas would be very appreciated. - aurf
2001 Dec 15
1
Newbe....
I'm just starting out with rsync and having the following problems: I'm getting autorization errors when I try to fire up a transfer between two e250's. I would like to basically mirror users between two systems. I've used the basic format that has been stipulated in the doc's still having problems Joe Despres jdespres@csc.com
2006 Sep 12
1
openssh (OpenBSD) , bsdauth and tis authsrv
nuqneH, I've tried using TIS authsrv authentication via bsd auth and found it quite limited. The most important restriction it does not log ip and fqdn of the remote peer, nor the application name, to the authentication server. It does not matter much for TIS authsrv, but since other applications do provide such information, our authsrv version uses it for extra authentication restrictions.
2005 Oct 23
4
rsync with ssh
I'm new on rsync, and I have some question regarding file synchronization my rsyncd.conf is secrets file = /etc/rsyncd.secrets read only = yes list = yes uid = nobody gid = nobody max connections = 1 log file = /var/log/rsyncd.log pid file = /var/run/rsyncd.pid lock file = /var/run/rsync.lock [test] path = /home/test auth users = test on another linux, I executed rsync --verbose --progress
2002 May 03
1
Newbie question on Rsync on Solaris
I want to replicate between two Solaris hosts. The source is Solaris 2.6 and the target is Solaris 2.8. Using rsh, the basic program seems fine (not running in daemon mode), but I have a problem. The directory tree is about 150,000 files, with about 5 gb of data. I tar'd the directory and moved it to the other side, but when I run an rsync against that directory, it still wants to move
2011 Jun 04
1
[PATCH] [SHELL] Fix klibc DEBUG compilation v2
dash didn't compile in DEBUG mode against klibc for all long time. Now it only fails at link stage for not having setlinebuf(3) and freopen(3). Fixes: usr/dash/show.o: In function `opentrace': show.c:(.text+0x36): undefined reference to `freopen' show.c:(.text+0x86): undefined reference to `setlinebuf' Skip setlinebuf and use fclose/fopen inside SMALL. Signed-off-by: maximilian
2020 Apr 23
2
Looking for C8 AMD help
I'm migrating from C7 to C8.? I'm currently using autofs, but alas autofs has been dropped in C8 for the AMD automounter. I have some very ancient knowledge of AMD, I used it when it was first introduced many years ago on Solaris and moved to Sun's automounter when it was introduced. So now it's back to square one. I used automount2amd to convert one of my existing maps,
2002 Mar 21
2
Start Rsync Error
Hi, I have installed rsync-2.4.6 version on Linux Redhat 6.2 (Kernel-2.2.14-5.0), after installed I tried to test the rsh and run "rsh remotehost /bin/true > out .dat". But it failed the error message was "Permission denied". I checked the permission all was okay, I forgot the rsh/csh methods and replaced by RSYNC_PROXY. Finally, it failed again. I would like to know that
2003 Jan 14
1
rsync hanging with openssh-2.9.9p2 as the transport
Hi, This is perhaps a stupid question. I apologize in advance if it's already been covered, but I'm stumped... I'm using rsync to backup some file systems to a remote host. The transport is openssh-2.9.9p2. The problem does not occur when the transport is rsh. I'm invoking rsync as follows: rsync -RlHptgoD --numeric-ids -e "ssh" -rzx --stats .
2010 Sep 09
1
dash klibc DEBUG compile question
now with the proper flags passed and the jobs.c fix dash allmost compiles in DEBUG mode, the last two failures happen in show.c, which assumes some buffering functions that klibc doesn't provide: usr/dash/show.o: In function `opentrace': show.c:(.text+0x36): undefined reference to `freopen' show.c:(.text+0x86): undefined reference to `setlinebuf' afais this code dates from the
2011 Jun 03
1
[PATCH] JOBS: fix klibc DEBUG compilation
dash didn't compile in DEBUG mode against klibc for all long time. Now it fails at link stage for not having setlinebuf(3). Fixes: usr/dash/show.o: In function `opentrace': show.c:(.text+0x86): undefined reference to `setlinebuf' Signed-off-by: maximilian attems <max at stro.at> --- the last open error, looks more like a klibc bug to me, will fix it
2002 Sep 13
1
Please HELP: rsync to create directory symbolic links
Hi, Currently I have to recreate the directory tree of my entire database and also rebuild all directory symbolic links. I just figure out how to recreate the directory tree without copying all the files over. I used: rsync -av --include "*/" --exclude "*" gridpt/ $BACKUP/gridpt This command creates the directory structure (tree) of the entire database udner gridpt (it
2006 May 12
10
why dtrace is not quiet?
i''m running the following script: #pragma D option quiet profile:::tick-1sec / ++x >= 15 / { exit(0); } io:::start { @io_size[execname] = sum(args[0]->b_bcount); } on exit, the script prints out the value of @io_size, why? there''s no printa(), and i also specified "D option quiet" (i also tried -q). this seems to happen with any kind of probe: on exit(0) all
2008 May 05
2
Rsync with daemon over SSH on port 22 not daemon port
Hi gurus! First time post: Scenario want to talk to daemon locked behind a firewall using encrypted transfer of files. Have daemon setup on port 10001. Do not have NC, do not have root access. Client command : rsync -avzul -e "ssh -vvv -l username" /home/users/blah/ rsync://lrem02:10001::/live As you can see the connection is set to talk to lrem02 on port 10001 however i want to
2009 Nov 04
3
[PATCH x 3] Three small fixes for Debian
These small fixes are required to fix the build and tests on Debian (using the debootstrap/debirf appliance). There is currently another bug in the Debian tests which I'm looking into. hexdump always fails as follows: libguestfs: error: hexdump: hexdump: /test123: hexdump: /sysroot/test123: Bad file descriptor Rich. -- Richard Jones, Virtualization Group, Red Hat