管理者が SSH 経由でリモート ホストに接続した後、アプリケーションを実行しようとしますが、次のエラーが表示されます。 [user@worksration ~]$ ssh admin@srv1 Last login: Tue Mar 29 18:03:34 2022 [admin@srv1 ~] $ /usr/local/bin/config_manager Error: cannot open display: [admin@srv1 ~] $ このエラーを解決するために管理者は次のどれを実行する必要がありますか?
正解:A
The error indicates that the application requires an X11 display, but the SSH session does not forward the X11 connection. To enable X11 forwarding, the administrator needs to use the ssh -X option, which requests X11 forwarding with authentication spoofing. This will set the DISPLAY environment variable on the remote host and allow the application to open a window on the local display.