Displaying 2 results from an estimated 2 matches for "mulander".
2014 May 30
4
[Bug 2243] New: scp ignoring ~/.ssh/config when both source and destination are remote hosts
...achine without using the -p parameter and it worked correctly so I
issued the copy command and it failed with a lost connection.
>From there I did several more tests including only the machine running
on a non standard port and it seems that the config file is ignored if
both ends are remote.
[mulander at koparo ~]$ ssh -V
OpenSSH_6.6.1p1, OpenSSL 1.0.1g 7 Apr 2014
My ~/.ssh/config file stating that build.koparo.com runs ssh on port
5222
[mulander at koparo ~]$ cat ~/.ssh/config
Host build.koparo.com
Port 5222
[mulander at koparo ~]$
Copy a remote file from ssh running on port 5222 -...
2011 May 15
2
Compilation problem with linux/falloc.h include in rsync.h
...p passed and
the final compilation failed.
Here is the code extracted from configure.sh to check the availability of
fallocate:
#include <fcntl.h>
#include <sys/types.h>
int
main ()
{
fallocate(0, 0, 0, 0);
;
return 0;
}
This code compiles (with a warning) and runs on my system:
mulander at bunkier_mysli:~/code/blog/lac$ gcc -std=gnu99 -o conftest -g -O2
-DHAVE_CONFIG_H -Wall -W test.c
test.c: In function 'main':
test.c:6:3: warning: implicit declaration of function 'fallocate'
mulander at bunkier_mysli:~/code/blog/lac$ ./conftest
mulander at bunkier_mysli:~/code/b...