You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you wanna run VNC Viewer on another device then connect both devices in same network (or hotspot from main device name). And then start vncserver like this manually.
11
+
```
12
+
tigervncserver -geometry 2560x1080 -localhost no -xstartup /usr/bin/xfce4-session -listen tcp :1
13
+
```
14
+
15
+
And in another device use `WLAN IP:port` for connecting. ( use `ip a` in termux and copy the 192.168.xx.xx)
16
+
17
+
#### Setting up xRDP
18
+
RDP is another great way to get gui, even much better input and resolution setups automatically. For using it first install xRDP. (note it'll use VNC for backend and might bugs while rendering).
19
+
```
20
+
sudo apt install xRDP
21
+
```
22
+
23
+
Now need to configure a bit, first need to create xsession.
24
+
```
25
+
echo "xfce4-session > ~/.xsession
26
+
```
27
+
28
+
The second file we need to edit is the startup file for XRDP, so it will start the desktop.
29
+
```
30
+
nano /etc/xrdp/startwm.sh
31
+
```
32
+
33
+
Delete all the content there and paste this: #!/bin/sh
0 commit comments