阡陌 发表于 2024-2-21 14:39:00

Debian Xfce4 VNC 服务


1、安装服务:

```
apt-get install vnc4server
```



2、设置密码:

```
vncpasswd
```



3、停止服务

```
vncserver -kill :1
Killing Xtigervnc process ID 12510... success!
```



4、编辑 xstartup

```
vi ~/.vnc/xstartup

#!/bin/sh
unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS
vncconfig -iconic &
xfce4-session &
```



5、启动服务

```
vncserver :1-localhost no
```



页: [1]
查看完整版本: Debian Xfce4 VNC 服务