增加 Ubuntu24 开启 VNC 服务。
Signed-off-by: rick.chan <cy@haoan119.com>
This commit is contained in:
parent
b7172f857f
commit
0f7c2159d5
|
@ -364,6 +364,10 @@ SSH 通道的使用见官方说明。
|
|||
- [高清网](https://www.gaoqingw.la/)
|
||||
- [看片狂人](https://www.kpkuang.org/)
|
||||
- [磁力熊](https://www.cilixiong.com/)
|
||||
- [电影天堂](www.dy2018.com)
|
||||
- [电影天堂](https://www.dydytt.net/)
|
||||
- [电影天堂](https://www.dygod.net/)
|
||||
- [阳光电影](https://www.dytt8.com/index.html)
|
||||
- [字节制造-影视资源](https://www.zsxcool.com/share/video-resource)
|
||||
- [蚂蚁 4K](https://www.mayi4k.com/)
|
||||
- [BD 影视分享](http://www.bd2121.com/)
|
||||
|
@ -382,8 +386,6 @@ SSH 通道的使用见官方说明。
|
|||
- [高清 MP4 吧](https://www.mp4ba.vip/)
|
||||
- [奈飞中文](https://www.naifei.io/)
|
||||
- [迅雷电影天堂](https://www.xl720.com/)
|
||||
- [电影天堂](www.dy2018.com)
|
||||
- [电影天堂](https://www.dydytt.net/)
|
||||
- [什么值得看](http://wwwatch.in/)
|
||||
- [片源网](http://pianyuan.la/)
|
||||
- [BT 天堂](https://www.bt-tt.com)
|
||||
|
@ -399,7 +401,6 @@ SSH 通道的使用见官方说明。
|
|||
- [葡萄影视](https://www.putaoys.com/)
|
||||
- [12 BT](https://www.12bt.net/)
|
||||
- [下片片](http://www.xiepp.com/)
|
||||
- [电影天堂](https://www.dygod.net/)
|
||||
- [无极电影](https://www.btwuji.com/index.htm)
|
||||
- [看电影天堂](http://www.kandytt.com/)
|
||||
- [先看网](https://www.k374.cc/)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
如无必要,不要在 root 账户下使用 VNC,可能存在一些潜在问题。
|
||||
|
||||
## 1.安装
|
||||
## 1. 安装
|
||||
|
||||
```bash
|
||||
# VNC Server
|
||||
|
@ -17,7 +17,7 @@ sudo apt install xubuntu-desktop
|
|||
sudo apt install cinnamon-desktop-environment
|
||||
```
|
||||
|
||||
## 2.配置
|
||||
## 2. 配置
|
||||
|
||||
首先确保 ~/.vnc/xstartup 文件具有可执行权限:
|
||||
|
||||
|
@ -27,7 +27,7 @@ chmod u+x ~/.vnc/xstartup
|
|||
|
||||
然后可通过编辑 ~/.vnc/xstartup 文件实现对 vnc 服务的配置。
|
||||
|
||||
### 2.1.LXDE
|
||||
### 2.1. LXDE
|
||||
|
||||
针对 Mate 的配置如下:
|
||||
|
||||
|
@ -49,7 +49,7 @@ exec lxsession &
|
|||
/usr/bin/ibus-daemon -d
|
||||
```
|
||||
|
||||
### 2.2.Mate
|
||||
### 2.2. Mate
|
||||
|
||||
针对 Mate 的配置如下:
|
||||
|
||||
|
@ -77,7 +77,7 @@ exec mate-session &
|
|||
Mate Tweak->Windows->Window manager->Marco(No Compositor)
|
||||
```
|
||||
|
||||
## 3.使用
|
||||
## 3. 使用
|
||||
|
||||
```bash
|
||||
# 设置 VNC 访问密码
|
||||
|
@ -89,7 +89,7 @@ vncserver :1 -geometry 1920x1080 -depth 24
|
|||
vncserver -kill :1
|
||||
```
|
||||
|
||||
## 4.内部参考关键字
|
||||
## 4. 内部参考关键字
|
||||
|
||||
1. VNC
|
||||
2. Remmina
|
||||
|
|
|
@ -10,4 +10,4 @@
|
|||
|
||||
分别软连接到了该目录下的实际的配置项上。
|
||||
|
||||
Maybe: 需要重新生成 initramfs.img。
|
||||
Maybe: 需要重新生成 initramfs.img。
|
||||
|
|
|
@ -0,0 +1,45 @@
|
|||
# Ubuntu24 开启 VNC 服务
|
||||
|
||||
这里使用普通账户,并通过 tigervncserver 现实 Ubuntu24 默认的 gnome 桌面。
|
||||
|
||||
## 1. 安装
|
||||
|
||||
```bash
|
||||
# VNC Server
|
||||
sudo apt -y install tigervnc-standalone-server
|
||||
```
|
||||
|
||||
## 2. 配置
|
||||
|
||||
首先确保 ~/.vnc/xstartup 文件具有可执行权限,然后通过 vncpasswd 设置密码。
|
||||
|
||||
```bash
|
||||
vncpasswd
|
||||
```
|
||||
|
||||
通过以下命令启动或者关闭 vnc 桌面服务:
|
||||
|
||||
```bash
|
||||
# 启动 VNC 服务
|
||||
tigervncserver -xstartup /usr/bin/gnome-session -SecurityTypes VncAuth,TLSVnc -geometry 1920x1080 -localhost no :1
|
||||
# 关闭 VNC 服务
|
||||
tigervncserver -kill :1
|
||||
```
|
||||
|
||||
其中 :1 为 VNC 的 Desktop Number,可以为:1、2、3...
|
||||
|
||||
## 3. 使用 MobaXterm SSH 隧道连接 VNC 服务
|
||||
|
||||
服务区除开启 VNC 服务外,需正确开启 SSH 服务。
|
||||
|
||||
Session -> VNC:
|
||||
|
||||
Remmote hostname or IP address 填 localhost。Port 填 5900+x,x 为 Desktop Number(如果启动 VNC 服务时参数为 :1,则端口为 5091)。
|
||||
|
||||
Session -> VNC -> Network settings -> SSH gateway(jump host) 中正确填写 SSH 服务器地址、端口和账号。
|
||||
|
||||
## 4. 内部参考关键字
|
||||
|
||||
1. VNC
|
||||
2. Remmina
|
||||
3. SSH
|
Loading…
Reference in New Issue