ubuntu18.04安装nomachine
时间: 2023-04-27 20:00:31 浏览: 1057
步骤如下:
1. 下载 NoMachine 安装包:https://www.nomachine.com/download
2. 在终端中输入以下命令安装 NoMachine:
```
sudo dpkg -i nomachine_filename.deb
```
3. 安装完成后,启动 NoMachine:
```
nxserver --start
```
4. 访问 NoMachine 管理控制台:http://localhost:4080
注意:以上步骤仅适用于 Ubuntu 18.04,其他版本的操作系统可能有所不同。
相关问题
ubuntu 安装 nomachine
在Ubuntu上安装NoMachine是一款远程桌面软件,通常用于在本地计算机访问远程服务器。以下是简要的步骤:
1. **更新系统**:
打开终端(Ctrl+Alt+T),首先更新你的包列表:
```
sudo apt update
```
2. **安装依赖**:
NoMachine需要依赖VNC服务器,所以先安装vnc4server:
```
sudo apt install vnc4server
```
3. **安装NoMachine客户端**:
你可以从NoMachine官网下载适用于Linux的.deb文件,或者使用软件中心(如果Ubuntu版本较高,如18.04及以后):
- 对于软件中心:搜索并安装"nomachine"
- 或者直接访问官网(https://www.nomachine.com/download)下载deb文件,双击安装。
4. **配置NoMachine**:
安装完成后,打开NoMachine应用程序,添加新的连接,输入服务器地址、端口以及VNC密码等信息。记得允许防火墙通过相应的端口。
5. **启动VNC服务**:
对于新创建的NoMachine连接,你需要为对应的服务器启动VNC服务。例如,如果你的服务器名是`your-server`,则运行:
```
sudo start vnc4server :1
```
其中`:1`代表VNC桌面编号,可以根据需要调整。
6. **测试连接**:
现在你应该可以在NoMachine客户端上连接到你的Ubuntu服务器了。
ubuntu20.04使用nomachine
在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。
阅读全文