Leser: 20
Quote-X Enables X11 forwarding. This can also be specified on a per-host
basis in a configuration file.
X11 forwarding should be enabled with caution. Users with the
ability to bypass file permissions on the remote host (for the
user's X authorization database) can access the local X11 display
through the forwarded connection. An attacker may then be able
to perform activities such as keystroke monitoring.
For this reason, X11 forwarding is subjected to X11 SECURITY
extension restrictions by default. Please refer to the ssh -Y
option and the ForwardX11Trusted directive in ssh_config(5) for
more information.
Quote
QuoteWas *genau* funktioniert denn nicht?
QuoteRTF article!
2009-08-05T13:18:25 salboxAlso,
Sonst würde es ja mit #!/bin/perl anfangen, oder zumindest irgendwo ein call der subroutinen stehen!
2009-08-05T13:18:25 salboxDas da nicht der ganze Code steht ist aber schon offensichtlich?
2009-08-05T13:45:06 salboxSeufz, ich dachte wenn man hier im board eine Frage stellt, erhält man eine Antwort, von demjenigen der diese Antwort geben kann.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
#!/usr/bin/perl use strict; use warnings; do_all(); ######################################################################## ######################################################################## sub do_all { my $fh1=do_first(); my $fh2=do_next(); print "FIRST: ".<$fh1>."\n"; print "NEXT: ".<$fh2>."\n"; close($fh1) or die "ERROR close fh1 ($!)\n"; close($fh2) or die "ERROR close fh2 ($!)\n"; } sub do_first { return do_cmd('sleep 1 && echo "FIRST"'); } sub do_next { return do_cmd('sleep 1 && echo "NEXT"'); } sub do_cmd { my $cmd=shift(@_); my $fh; open($fh, "$cmd |") or die "Error open \"$cmd\" ($!)\n"; return $fh; }
open($fh, 'was auch sonst immer') or die ("$!");
open(SSH,"ssh $ioshost simulation.sh start ios home/efadm/rt/$ios/run/&|");