web-dev-qa-db-ja.com

DOM0から実行可能ファイルを実行する方法

私はCentosでXenを実行しています。私はGUIなしで、私はDomain-0から仮想マシン(domain-u/guestドメイン)で実行可能ファイルを実行したいと思います。これを行うことは可能ですか?

いくつかの情報

私はKVMでCentOSデスクトップを実行しています。私の xm listcommandは次のようになります。

Name                         ID Mem(MiB) VCPUs State  Time(s)
Domain-0                      0       98     1 r-----  5068.6
vm1                         231      128     1 r-----     7.6
 _

私はサーバーを実行していません。 Xen仮想化で遊んでいるだけです。

1
0x0

DomuへのSSHアクセスがあると仮定すると、そのようなX-Forwardingを使用するだけです。ssh -XY qdot@domU、さらにはssh -XY qdot@domU executable

 -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.

 -x      Disables X11 forwarding.

 -Y      Enables trusted X11 forwarding.  Trusted X11 forwardings are not subjected to the X11 SECURITY extension controls.
2
qdot