1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-11-19 10:19:45 +01:00

improved vnc and reverse tethering

This commit is contained in:
2025-11-14 03:11:41 +01:00
parent ee660899d1
commit da90bec3ff
2 changed files with 22 additions and 3 deletions

View File

@@ -15,15 +15,21 @@ This section addresses the usage of Gnirehtet.
## Setting Up and Running Reverse Tethering ## Setting Up and Running Reverse Tethering
The following command can be used to setup the reverse tethering and also run it. The following command can be used to setup the reverse tethering and also run it.
For it to work the mobile device has to enable `USB Debugging` so Gnirehtet can automatically be For it to work the [Android](/wiki/android.md) device has to enable `USB Debugging` so Gnirehtet can automatically be
installed (which is internally done using `adb`). installed (which is internally done using `adb`).
Additionally `Use USB for` has to be set to `File Transfer` and not to
`USB Tethering` as this would start the normal tethering process and resolving internet access from
the [Linux](/wiki/linux.md) system to the Android device and not the other way around.
The initiating of the reverse tethering can be done by using the following command.
```sh ```sh
gnirehtet run gnirehtet run
``` ```
Alternatively and only after being set up correctly the reverse tethering can be started and When the `run` command is active the reverse tethering can be started and stopped using the
stopped with the corresponding two commands that follow. following commands.
If the `run` command is not active the reverse tethering will not work.
```sh ```sh
gnirehtet start gnirehtet start

View File

@@ -8,3 +8,16 @@ VNC is especially used for accessing graphical applications or
[terminals](/wiki/linux/system_console.md) of a remote server, [terminals](/wiki/linux/system_console.md) of a remote server,
[dockerized](/wiki/docker.md#dockerize-a-graphical-application) or virtualized [dockerized](/wiki/docker.md#dockerize-a-graphical-application) or virtualized
program. program.
## VNC Clients
The following is a list of VNC clients.
- [AVNC](https://github.com/gujjwal00/avnc) is a VNC client for [Android](/wiki/android.md)
devices.
## VNC Server
The following is a list of VNC server.
- [wayvnc](https://github.com/any1/wayvnc) is a VNC server for [Linux](/wiki/linux.md) systems.