Vagrant ssh X11显示-应用程序文本无法正确打印

时间:2018-11-20 08:31:04

标签: ssh vagrant x11 vtune

我已在Vagrant Box上安装了VTune。 然后,我想使用SSH并使用x11来使用GUI界面。

我的Vagrantfile包含:

#Enable ssh forwarding for GUI applications
config.ssh.forward_x11 = true

我的.ssh/config是:

Host blabla
HostName 127.0.0.1
User vagrant
Port 2222
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
PasswordAuthentication no
IdentityFile /Users/***/virtualbox/private_key
IdentitiesOnly yes
LogLevel FATAL
ForwardAgent yes
ForwardX11 yes
ForwardX11Trusted yes

但是,当我使用ssh ssh blabla登录并尝试启动VTune时,我得到一个非常漂亮的窗口: enter image description here

我想,问题出在转发语言或类似的问题上。是我在配置中错过的东西吗?

非常感谢您的帮助!

0 个答案:

没有答案