在SecureCRT 里 敲VMware 时提示DISPLAY is not set, unable to open the VMware Workstation user interface.
时间: 2024-04-13 20:29:44 浏览: 310
VMware Workstation 12 Pro安装linux教程
5星 · 资源好评率100%
当在SecureCRT中运行`vmware`命令时,出现"DISPLAY is not set, unable to open the VMware Workstation user interface"错误提示,这是因为没有正确设置DISPLAY环境变量。
要解决这个问题,可以按照以下步骤进行操作:
1. 在SecureCRT中登录到您的CentOS 7系统。
2. 打开终端并使用以下命令以root用户身份编辑`/etc/profile`文件:
```
sudo vi /etc/profile
```
3. 在文件的末尾添加以下行:
```
export DISPLAY=:0
```
这将设置DISPLAY环境变量的值为":0"。
4. 保存并关闭文件。在Vi编辑器中,按下Esc键,然后输入`:wq`并按Enter键。
5. 重新加载`/etc/profile`文件,以使更改生效:
```
source /etc/profile
```
现在,您应该能够在SecureCRT中运行`vmware`命令而不再遇到"DISPLAY is not set, unable to open the VMware Workstation user interface"错误提示了。
阅读全文