ubuntu20.04使用nomachine
时间: 2023-11-04 16:58:25 浏览: 179
在Ubuntu 20.04上使用NoMachine,你可以按照以下步骤进行设置:
1. 首先,你需要安装xserver-xorg-core-hwe-18.04和xserver-xorg-video-dummy。你可以使用以下命令进行安装:
```
$ sudo apt-get install xserver-xorg-core-hwe-18.04
$ sudo apt-get install xserver-xorg-video-dummy
```
2. 下载适用于Ubuntu的NoMachine软件。你可以从官方网站下载相应的.deb文件,并根据你的系统架构选择amd64版本。
3. 安装下载好的.deb文件。你可以使用以下命令进行安装(假设下载的文件名为nomachine.deb):
```
$ sudo dpkg -i nomachine.deb
```
如果安装过程中遇到依赖性错误,请使用以下命令修复:
```
$ sudo apt-get install -f
```
4. 添加xorg.conf文件。你可以使用以下命令打开文件进行编辑:
```
$ sudo vim /usr/share/X11/xorg.conf.d/xorg.conf
```
在文件中添加以下内容:
```
Section "Monitor"
Identifier "Monitor0"
HorizSync 28.0-80.0
VertRefresh 48.0-75.0
Modeline "1920x1080_60.00" 172.80 1920 2040 2248 2576 1080 1081 1084 1118 -HSync Vsync
EndSection
Section "Device"
Identifier "Card0"
Driver "dummy"
VideoRam 256000
EndSection
Section "Screen"
DefaultDepth 24
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Depth 24
Modes "1920x1080_60.00"
EndSubSection
EndSection
```
5. 保存和退出文件。
现在,你已经成功在Ubuntu 20.04上安装和配置了NoMachine。
阅读全文