search for: remhost

Displaying 10 results from an estimated 10 matches for "remhost".

2020 Jan 12
2
Why are the arguments supplied for the command run through ssh interpreted by shell before they are passed to the command on the server side?
...the ability to redirect I/O in an immediate way, but you would > always be able to run a shell command like "/bin/sh" "-c" "any-command | tee > cmd.log | process-further" which would regain the ability to do everything > that a shell can do. Yes, but ssh -z remhost sh -c "something" is exactly identical to ssh remhost "something" :? //mirabilos -- tarent solutions GmbH Rochusstra?e 2-4, D-53123 Bonn ? http://www.tarent.de/ Tel: +49 228 54881-393 ? Fax: +49 228 54881-235 HRB 5168 (AG Bonn) ? USt-ID (VAT): DE122264941 Gesch?ftsf?hrer:...
2006 Mar 29
7
sshd config parser
Hi All. For various reasons, we're currently looking at extending (or even overhauling) the config parser used for sshd_config. Right now the syntax I'm looking at is a cumulative "Match" keyword that matches when all of the specified criteria are met. This would be similar the the Host directive used in ssh_config, although it's still limiting (eg you can't easily
2023 May 27
2
command [argument ...] in ssh(1): a footgun
...s not. Too much information in one place might have the opposite effect. I?d rather give a short line there, with a reference to .Sx CAVEATS below. >Not knowing the details of each user's login shell is >precisely the reason that ssh couldn't ever do the Yes, exactly. But for? ssh remhost ls -l \>foo ? it MUST NOT quote the I/O redirection sign, otherwise the redirection would not work. That?s why I?m saying it needs not and must not quote. bye, //mirabilos (current developer of a POSIX-compatible shell) -- Infrastrukturexperte ? tarent solutions GmbH Am Dickobskreuz 10, D-531...
2003 Jun 14
1
rsync out of memory problem
Using an rsync (V2.5.6, Tru64 Unix 5.1A) command of the form: rsync -avz --delete /some/dir remhost:/some/other/dir where /some/dir has about 460,000 files in it, I get: building file list ... done ERROR: out of memory in make_file rsync error: error allocating core memory buffers (code 22) at /usr/common/src/rsync-2.5.6/util.c(115) rsync: connection unexpectedly closed (8 bytes read so far) rs...
2020 Jan 12
2
Why are the arguments supplied for the command run through ssh interpreted by shell before they are passed to the command on the server side?
On Sun, 12 Jan 2020, Yuri wrote: > dedicated argument, for example -z. The specification can be like this: The wording could need some translation by a native speaker, but the idea of this feature request is certainly sound. Of course you?d lose the ability to run multiple commands, redirect I/O, etc. when using your proposed flag. bye, //mirabilos -- tarent solutions GmbH Rochusstra?e
2007 Oct 02
3
scp -t . - possible idea for additional parameter
How difficult would it be to add an additional parameter to the -t that would *lock* the user at that directory level. say -T instead of -t... By locking, I mean translating /path/to/file as ./path/to/file, or ../../../path/../../../path/to/file as ./path/to/file. Basically set a root point as the current home directory, then build the pathing based on that, any "../" would become
2023 May 28
1
command [argument ...] in ssh(1): a footgun
...e there, with a > reference to .Sx CAVEATS below. Yes, as long as it explicitly refers the reader to CAVEAT. > >Not knowing the details of each user's login shell is > >precisely the reason that ssh couldn't ever do the > > Yes, exactly. > > But for? > ssh remhost ls -l \>foo > > ? it MUST NOT quote the I/O redirection sign, otherwise > the redirection would not work. That?s why I?m saying it > needs not and must not quote. The redirecton sign isn't a space. We're talking about spaces. But the redirection does have to "quoted&qu...
2007 Sep 17
2
No subject
Hi, when trying to install openssh I get the following errors. Any idea of why? This is on a mac 10.4.10 system, and with the 4.7p1 version. Appreciate any tips. Thanks, Anil if test ! -z ""; then \ /usr/bin/perl ./fixprogs ssh_prng_cmds ; \ fi (cd openbsd-compat && make) make[1]: Nothing to be done for `all'. gcc -g -O2 -Wall -Wpointer-arith -Wuninitialized
2002 Oct 16
0
rsyncd treats symlinks differently
...path = / read only = false uid = 0 gid = 1 use chroot = false list = false hosts allow = sadmin.bfm.com transfer logging = true The command I am using is: /usr/local/bin/rsync -auv --delete --exclude old /applications/ny_dev_apps01/dir/ RemHost::nysync/ny_fre01/local/dir/ Help ? -- Karl A. Wieman voice: 212-409-3371 Director, Technology fax: 212-407-5697 BlackRock Financial Management Inc. e-mail: kwieman@blackrock.com "The Godfather answers all of life's questions. What to pac...
2023 May 27
2
command [argument ...] in ssh(1): a footgun
On Sat, May 27, 2023 at 12:08:43AM +0200, Thorsten Glaser <t.glaser at tarent.de> wrote: > On Fri, 26 May 2023, Mingye Wang (Artoria2e5) wrote: > > > ssh(1) currently affords an argument-passing functionality, but as the manpage > > states, all arguments are simply concatenated by space. > > How else would it do that? The arguments are processed by the > shell