docs tidy etc
242
content/client/Client Deployment/_index.en.md
Normal file
@@ -0,0 +1,242 @@
|
||||
---
|
||||
title: Client Deployment
|
||||
weight: 6
|
||||
---
|
||||
|
||||
You can deploy using a number of methods, some are covered in [Client](https://github.com/dinger1986/doc.rustdesk.com/blob/docs-reworking/content/client/_index.en.md#configuring-rustdesk)
|
||||
|
||||
Alternatively you can use mass deployment scripts.
|
||||
|
||||
### Powershell
|
||||
|
||||
```ps
|
||||
$ErrorActionPreference= 'silentlycontinue'
|
||||
|
||||
$rdver = ((Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\RustDesk\").Version)
|
||||
|
||||
if($rdver -eq "1.2.1")
|
||||
{
|
||||
write-output "RustDesk $rdver is the newest version"
|
||||
|
||||
exit
|
||||
}
|
||||
|
||||
If (!(Test-Path c:\Temp)) {
|
||||
New-Item -ItemType Directory -Force -Path c:\Temp > null
|
||||
}
|
||||
|
||||
cd c:\Temp
|
||||
|
||||
powershell Invoke-WebRequest "https://github.com/rustdesk/rustdesk/releases/download/1.2.1/rustdesk-1.2.1-x86_64.exe" -Outfile "rustdesk.exe"
|
||||
Start-Process .\rustdesk.exe --silent-install -wait
|
||||
|
||||
$ServiceName = 'Rustdesk'
|
||||
$arrService = Get-Service -Name $ServiceName -ErrorAction SilentlyContinue
|
||||
|
||||
if ($arrService -eq $null)
|
||||
{
|
||||
Start-Sleep -seconds 20
|
||||
}
|
||||
|
||||
while ($arrService.Status -ne 'Running')
|
||||
{
|
||||
Start-Service $ServiceName
|
||||
Start-Sleep -seconds 5
|
||||
$arrService.Refresh()
|
||||
}
|
||||
net stop rustdesk
|
||||
|
||||
$username = ((Get-WMIObject -ClassName Win32_ComputerSystem).Username).Split('\')[1]
|
||||
Remove-Item C:\Users\$username\AppData\Roaming\RustDesk\config\RustDesk2.toml
|
||||
New-Item C:\Users\$username\AppData\Roaming\RustDesk\config\RustDesk2.toml
|
||||
Set-Content C:\Users\$username\AppData\Roaming\RustDesk\config\RustDesk2.toml "rendezvous_server = 'youraddress' `nnat_type = 1`nserial = 0`n`n[options]`ncustom-rendezvous-server = 'youraddress'`nkey = 'yourkey'`nrelay-server = 'youraddress'`napi-server = 'https://youraddress'"
|
||||
Remove-Item C:\Windows\ServiceProfiles\LocalService\AppData\Roaming\RustDesk\config\RustDesk2.toml
|
||||
New-Item C:\Windows\ServiceProfiles\LocalService\AppData\Roaming\RustDesk\config\RustDesk2.toml
|
||||
Set-Content C:\Windows\ServiceProfiles\LocalService\AppData\Roaming\RustDesk\config\RustDesk2.toml "rendezvous_server = 'youraddress' `nnat_type = 1`nserial = 0`n`n[options]`ncustom-rendezvous-server = 'youraddress'`nkey = 'yourkey'`nrelay-server = 'youraddress'`napi-server = 'https://youraddress'"
|
||||
|
||||
net start rustdesk
|
||||
```
|
||||
|
||||
### Mac OS Bash
|
||||
|
||||
```sh
|
||||
#!/bin/bash
|
||||
|
||||
# Assign the value "XYZ" to the password variable
|
||||
rustdesk_password="XYZ"
|
||||
|
||||
# Get your config string from your Web portal and Fill Below.
|
||||
rustdesk_config="configstring"
|
||||
|
||||
####################################Please Do Not Edit Below This Line##########################################
|
||||
|
||||
# Check if the script is being run as root
|
||||
if [[ $EUID -ne 0 ]]; then
|
||||
echo "This script must be run as root."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ $(arch) == 'arm64' ]]; then
|
||||
echo "Installing Rosetta"
|
||||
/usr/sbin/softwareupdate --install-rosetta --agree-to-license
|
||||
fi
|
||||
|
||||
# Specify the path to the rustdesk.dmg file
|
||||
dmg_file="/tmp/rustdesk-1.2.2-x86_64.dmg"
|
||||
|
||||
# Specify the mount point for the DMG (temporary directory)
|
||||
mount_point="/Volumes/RustDesk"
|
||||
|
||||
# Download the rustdesk.dmg file
|
||||
echo "Downloading RustDesk Now"
|
||||
curl -L https://github.com/rustdesk/rustdesk/releases/download/nightly/rustdesk-1.2.2-x86_64.dmg --output "$dmg_file"
|
||||
|
||||
# Mount the DMG file to the specified mount point
|
||||
hdiutil attach "$dmg_file" -mountpoint "$mount_point" &> /dev/null
|
||||
|
||||
# Check if the mounting was successful
|
||||
if [ $? -eq 0 ]; then
|
||||
# Move the contents of the mounted DMG to the /Applications folder
|
||||
cp -R "$mount_point/RustDesk.app" "/Applications/" &> /dev/null
|
||||
|
||||
# Unmount the DMG file
|
||||
hdiutil detach "$mount_point" &> /dev/null
|
||||
else
|
||||
echo "Failed to mount the RustDesk DMG. Installation aborted."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Run the rustdesk command with --get-id and store the output in the rustdesk_id variable
|
||||
cd /Applications/RustDesk.app/Contents/MacOS/
|
||||
rustdesk_id=$(./RustDesk --get-id)
|
||||
|
||||
# Apply new password to RustDesk
|
||||
./RustDesk --server &
|
||||
/Applications/RustDesk.app/Contents/MacOS/RustDesk --password $rustdesk_password &> /dev/null
|
||||
|
||||
/Applications/RustDesk.app/Contents/MacOS/RustDesk --config $rustdesk_config
|
||||
|
||||
# Kill all processes named RustDesk
|
||||
rdpid=$(pgrep RustDesk)
|
||||
kill $rdpid &> /dev/null
|
||||
|
||||
echo "..............................................."
|
||||
# Check if the rustdesk_id is not empty
|
||||
if [ -n "$rustdesk_id" ]; then
|
||||
echo "RustDesk ID: $rustdesk_id"
|
||||
else
|
||||
echo "Failed to get RustDesk ID."
|
||||
fi
|
||||
|
||||
# Echo the value of the password variable
|
||||
echo "Password: $rustdesk_password"
|
||||
echo "..............................................."
|
||||
|
||||
echo "Please complete install on GUI, launching RustDesk now."
|
||||
open -n /Applications/RustDesk.app
|
||||
```
|
||||
|
||||
### Linux
|
||||
|
||||
```sh
|
||||
#!/bin/bash
|
||||
|
||||
# Assign the value "XYZ" to the password variable
|
||||
rustdesk_password="XYZ"
|
||||
|
||||
# Get your config string from your Web portal and Fill Below.
|
||||
rustdesk_config="encryptedconfigstring"
|
||||
|
||||
####################################Please Do Not Edit Below This Line##########################################
|
||||
|
||||
# Check if the script is being run as root
|
||||
if [[ $EUID -ne 0 ]]; then
|
||||
echo "This script must be run as root."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# identify OS
|
||||
if [ -f /etc/os-release ]; then
|
||||
# freedesktop.org and systemd
|
||||
. /etc/os-release
|
||||
OS=$NAME
|
||||
VER=$VERSION_ID
|
||||
|
||||
UPSTREAM_ID=${ID_LIKE,,}
|
||||
|
||||
# Fallback to ID_LIKE if ID was not 'ubuntu' or 'debian'
|
||||
if [ "${UPSTREAM_ID}" != "debian" ] && [ "${UPSTREAM_ID}" != "ubuntu" ]; then
|
||||
UPSTREAM_ID="$(echo ${ID_LIKE,,} | sed s/\"//g | cut -d' ' -f1)"
|
||||
fi
|
||||
|
||||
|
||||
elif type lsb_release >/dev/null 2>&1; then
|
||||
# linuxbase.org
|
||||
OS=$(lsb_release -si)
|
||||
VER=$(lsb_release -sr)
|
||||
elif [ -f /etc/lsb-release ]; then
|
||||
# For some versions of Debian/Ubuntu without lsb_release command
|
||||
. /etc/lsb-release
|
||||
OS=$DISTRIB_ID
|
||||
VER=$DISTRIB_RELEASE
|
||||
elif [ -f /etc/debian_version ]; then
|
||||
# Older Debian/Ubuntu/etc.
|
||||
OS=Debian
|
||||
VER=$(cat /etc/debian_version)
|
||||
elif [ -f /etc/SuSe-release ]; then
|
||||
# Older SuSE/etc.
|
||||
OS=SuSE
|
||||
VER=$(cat /etc/SuSe-release)
|
||||
elif [ -f /etc/redhat-release ]; then
|
||||
# Older Red Hat, CentOS, etc.
|
||||
OS=RedHat
|
||||
VER=$(cat /etc/redhat-release)
|
||||
else
|
||||
# Fall back to uname, e.g. "Linux <version>", also works for BSD, etc.
|
||||
OS=$(uname -s)
|
||||
VER=$(uname -r)
|
||||
fi
|
||||
|
||||
# Install Rustdesk
|
||||
|
||||
echo "Installing Rustdesk"
|
||||
if [ "${ID}" = "debian" ] || [ "$OS" = "Ubuntu" ] || [ "$OS" = "Debian" ] || [ "${UPSTREAM_ID}" = "ubuntu" ] || [ "${UPSTREAM_ID}" = "debian" ]; then
|
||||
wget https://github.com/rustdesk/rustdesk/releases/download/nightly/rustdesk-1.2.2-x86_64.deb > null
|
||||
apt-get install -fy ./rustdesk-1.2.2-x86_64.deb > null
|
||||
elif [ "$OS" = "CentOS" ] || [ "$OS" = "RedHat" ] || [ "$OS" = "Fedora Linux" ] || [ "${UPSTREAM_ID}" = "rhel" ] ; then
|
||||
wget https://github.com/rustdesk/rustdesk/releases/download/nightly/rustdesk-1.2.2-0.x86_64.rpm > null
|
||||
yum localinstall ./rustdesk-1.2.2-0.x86_64.rpm -y > null
|
||||
else
|
||||
echo "Unsupported OS"
|
||||
# here you could ask the user for permission to try and install anyway
|
||||
# if they say yes, then do the install
|
||||
# if they say no, exit the script
|
||||
exit 1
|
||||
fi
|
||||
|
||||
systemctl stop rustdesk
|
||||
|
||||
# Run the rustdesk command with --get-id and store the output in the rustdesk_id variable
|
||||
rustdesk_id=$(rustdesk --get-id)
|
||||
|
||||
# Apply new password to RustDesk
|
||||
systemctl start rustdesk
|
||||
rustdesk --password $rustdesk_password &> /dev/null
|
||||
|
||||
rustdesk --config $rustdesk_config
|
||||
|
||||
systemctl restart rustdesk
|
||||
|
||||
|
||||
echo "..............................................."
|
||||
# Check if the rustdesk_id is not empty
|
||||
if [ -n "$rustdesk_id" ]; then
|
||||
echo "RustDesk ID: $rustdesk_id"
|
||||
else
|
||||
echo "Failed to get RustDesk ID."
|
||||
fi
|
||||
|
||||
# Echo the value of the password variable
|
||||
echo "Password: $rustdesk_password"
|
||||
echo "..............................................."
|
||||
```
|
||||
115
content/client/_index.en.md
Executable file
@@ -0,0 +1,115 @@
|
||||
---
|
||||
title: RustDesk Client
|
||||
weight: 2
|
||||
pre: "<b>1. </b>"
|
||||
chapter: true
|
||||
---
|
||||
|
||||
### Chapter 1
|
||||
|
||||
### Introduction
|
||||
The RustDesk client is used on devices to connect via our RustDesk Server either opensource or Pro, it is available to download from [GitHub](https://github.com/rustdesk/rustdesk/releases)
|
||||
|
||||
The current stable version is 1.2.1 and Unstable (Nightly build) version is 1.2.2.
|
||||
|
||||
### Supported Platforms
|
||||
- Microsoft Windows (all current versions with our standard client and some older versions with out sciter client).
|
||||
- Mac OS (M1/M2 requires rosetta)
|
||||
- Debian Derivatives (Ubuntu, Mint etc)
|
||||
- Redhat Derivatives (Centos, Rocky etc)
|
||||
- Arch/Manjaro
|
||||
- Opensuse
|
||||
- Android
|
||||
|
||||
### Installation
|
||||
|
||||
#### Windows
|
||||
|
||||
Download the exe from GitHub and install
|
||||
|
||||
To install silently call the install exe with `--silent-install`.
|
||||
|
||||
#### Mac OS
|
||||
|
||||
Download the dmg file from GitHub more info can be found on the Mac OS page.
|
||||
|
||||
Open the .dmg file and drag `RustDesk` to `Applications`.
|
||||
|
||||
Allow RustDesk to run (and install Rosetta if required)
|
||||
|
||||
Enable permissions requested and follow prompts on the left hand side of RustDesk to finish setup.
|
||||
|
||||
#### Linux
|
||||
|
||||
Please see below instructions to install for the various "flavours" of linux, all installers are on GitHub.
|
||||
|
||||
#### Debian Derivatives (>= 16)
|
||||
|
||||
```bash
|
||||
# please ignore the wrong disk usage report
|
||||
sudo apt install -fy ./rustdesk-<version>.deb
|
||||
```
|
||||
|
||||
#### CentOS/Fedora (>= 18)
|
||||
|
||||
```sh
|
||||
sudo yum localinstall ./rustdesk-<version>.rpm
|
||||
```
|
||||
|
||||
#### Arch/Manjaro
|
||||
|
||||
```sh
|
||||
sudo pacman -U ./rustdesk-<version>.pkg.tar.zst
|
||||
```
|
||||
|
||||
#### Opensuse (>= Leap 15.0)
|
||||
|
||||
```sh
|
||||
sudo zypper install --allow-unsigned-rpm ./rustdesk-<version>-suse.rpm
|
||||
```
|
||||
#### Android
|
||||
Install apk from our GitHub more info can be found on the Android page.
|
||||
|
||||
### Usage
|
||||
Once installed (or run as a temporary executable) RustDesk will connect to the Public servers (you will see a message at the bottom saying (1) "Ready, For faster connection, please setup your own server). In the Top left you will see your (2) ID and (3) One Time Password and on the (4) Right a box for you to connect to another computer if you know their ID.
|
||||
|
||||

|
||||
|
||||
|
||||
To access the settings, click on the (5) 3 dots to the right of ID.
|
||||
|
||||
Under Settings you will find:
|
||||
- General - Service Control, Theme, Hardware Codec, Audio, Recording and Language
|
||||
- Security - Permissions for someone taking control, Password options, ability to change your ID and Advanced Security Settings
|
||||
- Network - Set your own server settings here and proxy
|
||||
- Display - Control the display settings for remote sessions and other default options, sync clipboard etc
|
||||
- Account - This can be used in conjuction with the Pro Server to sign into the API
|
||||
- About - Shows information about the software.
|
||||
|
||||
### Configuring RustDesk
|
||||
There is number of ways to configure RustDesk.
|
||||
|
||||
The easiest way is using RustDesk Server Pro you can obtain an encrypted config string, this can be used in conjuction with `--config` to import settings. To do this:
|
||||
1. Open command line on whichever OS you use, to the folder where RustDesk is installed ie C:\program files\RustDesk on windows, /usr/bin on linux.
|
||||
2. Use the command `rustdesk.exe --config your-encrypted-string` eg `rustdesk.exe --config 9JSPSvJzNrBDasJjNSdXOVVBlERDlleoNWZzIHcOJiOikXZr8mcw5yazVGZ0NXdy5CdyciojI0N3boJye`
|
||||
|
||||
You can manually setup a client, to do this
|
||||
1. Click on Settings
|
||||
2. Click on Network
|
||||
3. Click Unlock Network Settings
|
||||
4. Enter your ID, Relay, API (if using pro) servers and your key.
|
||||
|
||||

|
||||
|
||||
If you manually setup a client, you can retrieve the RustDesk2.toml (in the users folder) file and use `--import-config` in a similar way to the above example.
|
||||
|
||||
### Parameters
|
||||
|
||||
`--password` can be used to set a permanent password.
|
||||
`--get-id` can be used to retrieve the ID.
|
||||
`--set-id` can be used to set an ID, please note IDs should start with a letter.
|
||||
`--silent-install` can be used to install RustDesk silently on windows.
|
||||
|
||||
Additional Advanced parameters can be found [here](https://github.com/rustdesk/rustdesk/blob/bdc5cded221af9697eb29aa30babce75e987fcc9/src/core_main.rs#L242)
|
||||
|
||||
{{% children depth="1" showhidden="true" %}}
|
||||
83
content/client/android/_index.de.md
Executable file
@@ -0,0 +1,83 @@
|
||||
---
|
||||
title: Steuern Sie Ihr Android
|
||||
weight: 4
|
||||
---
|
||||
|
||||
### Bildschirm und Dateien Ihres Android-Telefons freigeben
|
||||
------
|
||||
|
||||
Ab Version 1.1.9 hat der Android-Client die Funktion zur Freigabe des Bildschirms und des Dateisystems des Telefons hinzugefügt.
|
||||
|
||||
- Für die Bildschirmfreigabe ist Android 6 oder höher erforderlich
|
||||
- Android 10 oder höher ist erforderlich, um den internen Sound des Mobiltelefonsystems zu teilen
|
||||
- iOS unterstützt noch keine Bildschirmfreigabe
|
||||
|
||||
|
||||
#### **Berechtigungen anfordern und Dienste starten**
|
||||
|
||||
Klicken Sie in der unteren Navigationsleiste auf `Bildschirm freigeben`.
|
||||
|
||||
Konfigurieren Sie nach Bedarf verschiedene Berechtigungen. Jedes Mal, wenn Sie RustDesk starten, müssen Sie die Berechtigungen „Bildschirmaufnahme“ und „Eingabesteuerung“ erneut anfordern.
|
||||
|
||||

|
||||
|
||||
| Berechtigung | Beschreibung |
|
||||
| --------------- | --------------------------------------------------------- |
|
||||
| Bildschirmaufnahme | Wenn Sie die Berechtigung zur Freigabe von Bildschirmaufnahmen aktivieren, wird der Überwachungsdienst gleichzeitig mit dem Start des Dienstes aktiviert. |
|
||||
| Eingabesteuerung* | Legt fest, ob das Steuergerät die Eingaben des Mobiltelefons steuern darf, z. B. die Bedienung des virtuellen Touchscreens mit der Maus. |
|
||||
| Datei übertragen* | Wenn Sie die Berechtigung zur Dateiübertragung aktivieren, können Sie nach dem Start das Dateisystem des Telefons fernsteuern. |
|
||||
| Audioaufnahme | Legt fest, ob die Systemmusik innerhalb des Telefons freigegeben werden soll (nicht der Mikrofoneingang). |
|
||||
|
||||
{{% notice note %}}
|
||||
Das obige * steht für spezielle Berechtigungen. Um solche Berechtigungen zu erhalten, müssen Sie auf die Seite mit den Android-Systemeinstellungen wechseln, um sie manuell zu erhalten. Die Einzelheiten sind wie folgt
|
||||
{{% /notice %}}
|
||||
|
||||
#### **Sondergenehmigung beantragen – Datei**
|
||||
|
||||
| Das Anfordern von Android-Dateiberechtigungen führt automatisch zur Seite mit den Systemeinstellungen |
|
||||
| :---------------: |
|
||||
|  |
|
||||
|
||||
#### **Sondergenehmigung beantragen - Mauseingabe**
|
||||
| Schritt 1 Suchen Sie „Installierte Dienste“ | Schritt 2 Starten Sie RustDesk Input |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
{{% notice note %}}
|
||||
Die Systemeinstellungsseite der verschiedenen Anbieter kann unterschiedlich sein, bitte passen Sie sie entsprechend Ihrer Systemseite an
|
||||
{{% /notice %}}
|
||||
|
||||
**Tastenkombinationen für die Fernbedienung der Maus:**
|
||||
|
||||
- Klick mit der rechten Maustaste: zurück
|
||||
- Klick auf das Mausrad: Startseite
|
||||
- Langes Drücken des Mausrads: zuletzt geöffnete Apps
|
||||
- Scrollen mit dem Mausrad: vertikales Gleiten simulieren
|
||||
|
||||
#### **Dienst starten**
|
||||
|
||||
Nach Erhalt der Berechtigung `Bildschirmaufnahme` wird der Dienst automatisch gestartet. Sie können auch auf die Schaltfläche `Dienst starten` klicken, um den Dienst zu starten. Nachdem der Dienst gestartet wurde, kann er Desktop-Steuerungsanfragen von anderen Geräten annehmen.
|
||||
|
||||
Wenn die Berechtigung `Datei übertragen` aktiviert ist, kann es auch Dateisteuerungsanfragen von anderen Geräten annehmen.
|
||||
|
||||
Nachdem der Dienst gestartet wurde, werden automatisch eine eindeutige ID und ein zufälliges Passwort für dieses Gerät vergeben. Andere Geräte können das Telefon über die ID und das Passwort steuern oder den Eingang einer neuen Anfrage manuell bestätigen.
|
||||
|
||||
| Vor dem Start des Dienstes | Nach dem Start des Dienstes |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
{{% notice note %}}
|
||||
1. Wenn Sie auf "Dienst starten" klicken, wird die Berechtigung "Bildschirmaufnahme" standardmäßig aktiviert.
|
||||
2. Wenn die "Bildschirmaufnahme"-Erlaubnis nicht erteilt wird, können andere Geräte keine Kontrollanfragen stellen.
|
||||
3. Mit Ausnahme der Berechtigung `Bildschirmaufnahme` wirkt sich das Umschalten anderer Berechtigungen nur auf eine neue und nicht auf die bestehende Verbindung aus. Wenn Sie die Berechtigungen für die bestehende Verbindung ändern müssen, schließen Sie bitte zuerst die aktuelle Verbindung, ändern Sie die Berechtigungen und empfangen Sie dann eine Steuerungsanforderung.
|
||||
{{% /notice %}}
|
||||
|
||||
##### PC
|
||||
|
||||

|
||||
|
||||
##### Mobiles Endgerät
|
||||
|
||||
| Sie können den Dienst jederzeit beenden oder die angegebene Verbindung schließen | Sie können Chats empfangen oder initiieren |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
146
content/client/android/_index.en.md
Executable file
@@ -0,0 +1,146 @@
|
||||
---
|
||||
title: Android
|
||||
weight: 4
|
||||
---
|
||||
|
||||
### Remote Control
|
||||
|
||||
Enter the ID of the remote device in the home page or select a historical device to verify.
|
||||
After the verification is successful, you can control remote device.
|
||||
|
||||
| Home | Successfully connected |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
Input control provides two modes: `mouse mode` and `touch mode`, which can be switched through the lower toolbar.
|
||||
|
||||
| Mouse settings | Mode selection |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
{{% notice note %}}
|
||||
In `mouse mode`,you can also trigger the remote device's `Right Mouse` with a `Two-Finger Tap`
|
||||
{{% /notice %}}
|
||||
|
||||
### File Transfer (Android)
|
||||
|
||||
> Requires RustDesk 1.1.9+
|
||||
|
||||
In the device list on the home page, select the device.
|
||||
|
||||
Long press or tap the menu on the right to select `File Transfer`
|
||||
|
||||
| Home | Successfully connected |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
- The initial directory is the Home directory of the device, you can click <i class="fas fa-home"></i> to quickly return to Home.
|
||||
- Below the title bar is the directory level, you can click the corresponding folder to jump quickly.
|
||||
- Click <i class="fas fa-arrow-up"></i> to access the parent directory.
|
||||
- The current absolute path and project statistics will be prompted at the bottom of the list.
|
||||
- Click `Local` / `Remote` in the title bar to switch pages.
|
||||
|
||||
#### How do I transfer files?
|
||||
|
||||
1. **Long press** on a file or folder in the list to quickly enter the **multiple selection mode**, which can select multiple items.
|
||||
2. After selecting the file(s), switch the `local` / `remote` page. After switching, you will see the `Paste here?` prompt at the bottom of the screen.
|
||||
3. Click the paste file icon in the picture to transfer the selected item(s) to the target directory.
|
||||
|
||||
| Multi-Select Mode | File Paste |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
### Set ID/Relay Server
|
||||
|
||||
1. Click `Settings` on the bottom navigation bar.
|
||||
2. Click `ID/Relay Server`.
|
||||
3. Enter your ID Server hostname/IP Address in the `ID Server` field. Leave `Relay Server` and `API Server` blank, and enter your public key (optional, required for encryption) in the `Key` field. Press **OK** to save your settings. It will automatically switch to the specified server.
|
||||
|
||||
You can also configure it by scanning a QR Code. To generate the QR Code, use the following format (change the `host` and `key` values to your own):
|
||||
|
||||
```nolang
|
||||
config={"host": "xxx", "key": "xxx"}
|
||||
```
|
||||
|
||||
Then go to an [Online QR Code Generator](https://www.qr-code-generator.com/) and paste in the code above.
|
||||
|
||||
The picture below is a screenshot of Android. If it is iOS, please check top-right menu on the home page.
|
||||
|
||||

|
||||
|
||||
### Share screen/files of your Android phone
|
||||
|
||||
Starting from version 1.1.9, the Android client has added the functions of sharing the phone screen and sharing the file system of the phone.
|
||||
|
||||
- Android 6 and above is required for screen sharing
|
||||
- Android 10 or above is required to share the internal audio of the mobile phone system
|
||||
- iOS does not yet support screen sharing
|
||||
|
||||
#### **Request permissions and start services**
|
||||
|
||||
Click on `Share Screen` from the bottom navigation bar
|
||||
|
||||
Configure various permissions as needed. Every time you start RustDesk, you need to request "Screen Capture" and "Input Control" permissions again.
|
||||
|
||||

|
||||
|
||||
| Permissions | Description |
|
||||
| -- | -- |
|
||||
| Screen Capture | Whether to enable screen capture sharing permission, the monitoring service will be enabled at the same time as startup |
|
||||
| Input Control* | Whether to allow the controller to control the input of the mobile phone, such as virtual touch screen operation with the mouse |
|
||||
| File transfer* | Whether to enable file transfer permission, after startup, you can remotely control the file system of this phone |
|
||||
| Audio capture | Whether to share the system music inside the phone (not microphone input) |
|
||||
|
||||
{{% notice note %}}
|
||||
Above * represents special permissions. To obtain such permissions, you need to jump to the Android system settings page to obtain them manually. The details are as follows
|
||||
{{% /notice %}}
|
||||
|
||||
#### **Special Permission Request - File**
|
||||
|
||||
| Requesting Android file permissions will automatically jump to the system settings page |
|
||||
| :---------------: |
|
||||
|  |
|
||||
|
||||
#### **Special Permission Request - mouse input**
|
||||
| Step 1 Find "Installed Services" | Step 2 Start RustDesk Input |
|
||||
| -- | -- |
|
||||
|  |  |
|
||||
|
||||
{{% notice note %}}
|
||||
The system setting page of different vendors may be different, please adjust it according to your system page
|
||||
{{% /notice %}}
|
||||
|
||||
**Remote mouse control shortcuts:**
|
||||
|
||||
- Click the right mouse button: go back
|
||||
- Click the mouse wheel: Home
|
||||
- Long press mouse wheel: recently opened apps
|
||||
- Mouse wheel scrolling: simulate vertical sliding
|
||||
|
||||
#### **Start service**
|
||||
|
||||
After obtaining the `screen capture` permission, the service will be automatically started. You can also click the `Start service` button to start the service. After the service is started, it can accept desktop control requests from other devices.
|
||||
|
||||
If the `file transfer` permission is enabled, it can also accept file control requests from other devices.
|
||||
|
||||
After the service is started, a unique ID and random password will be automatically obtained for this device. Other devices can control the phone through the ID and password, or manually confirm when a new request is received.
|
||||
|
||||
| Before starting the service | After starting the service |
|
||||
| -- | -- |
|
||||
|  |  |
|
||||
|
||||
{{% notice note %}}
|
||||
1. Clicking `Start Service` will enable the `Screen capture` permission by default.
|
||||
2. When the `screen capture` permission is not obtained, other devices cannot issue control requests.
|
||||
3. Except for the `screen capture` permission, the switching of other permissions will only affect the new connection, and will not affect the established connection. If you need to switch permissions for an established connection, please close the current connection first, modify the permissions, and then receive a control request.
|
||||
{{% /notice %}}
|
||||
|
||||
##### PC
|
||||
|
||||

|
||||
|
||||
##### Mobile terminal
|
||||
|
||||
| You can stop the service or close the specified connection at any time | You can receive or initiate chats |
|
||||
| -- | -- |
|
||||
|  |  |
|
||||
82
content/client/android/_index.es.md
Normal file
@@ -0,0 +1,82 @@
|
||||
---
|
||||
title: Controla tu Android
|
||||
weight: 4
|
||||
---
|
||||
|
||||
### Comparte pantalla/archivos de tu teléfono Android
|
||||
------
|
||||
|
||||
A partir de la versión 1.1.9, el cliente de Android ha agregado las funciones de compartir la pantalla del teléfono y compartir el sistema de archivos del teléfono.
|
||||
|
||||
- Se requiere Android 6 y superior para compartir pantalla
|
||||
- Se requiere Android 10 o superior para compartir el audio interno del sistema del teléfono móvil
|
||||
- iOS aún no admite compartir pantalla
|
||||
|
||||
|
||||
#### **Solicitar permisos e iniciar servicios**
|
||||
|
||||
Haga clic en `Compartir pantalla` desde la barra de navegación inferior
|
||||
|
||||
Configure varios permisos según sea necesario. Cada vez que inicia RustDesk, debe solicitar los permisos de "Captura de pantalla" y "Control de entrada" nuevamente.
|
||||
|
||||

|
||||
|
||||
| Permisos | Descripción |
|
||||
| -------------------------- | --------------------------------------------------------- |
|
||||
| Captura de pantalla | Ya sea para habilitar el permiso para compartir capturas de pantalla, el servicio de monitoreo se habilitará al mismo tiempo que se inicia |
|
||||
| Control de entrada* | Ya sea para permitir que el controlador controle la entrada del teléfono móvil, como la operación de pantalla táctil virtual con el mouse |
|
||||
| Transferencia de archivos* | Ya sea para habilitar el permiso de transferencia de archivos, después del inicio, puede controlar de forma remota el sistema de archivos de este teléfono |
|
||||
| Captura de audio | Ya sea para compartir la música del sistema dentro del teléfono (sin entrada de micrófono) |
|
||||
|
||||
{{% notice note %}}
|
||||
Arriba * representa permisos especiales. Para obtener dichos permisos, debe ir a la página de configuración del sistema Android para obtenerlos manualmente. Los detalles son los siguientes
|
||||
{{% /notice %}}
|
||||
|
||||
#### **Solicitud de Permiso Especial - Archivo**
|
||||
|
||||
| Al solicitar permisos de archivo de Android, se saltará automáticamente a la página de configuración del sistema |
|
||||
| :---------------: |
|
||||
|  |
|
||||
|
||||
#### **Solicitud de permiso especial: entrada del mouse**
|
||||
| Paso 1 Busque "Servicios instalados" | Paso 2 Inicie la entrada de RustDesk |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
{{% notice note %}}
|
||||
La página de configuración del sistema de diferentes proveedores puede ser diferente, ajústela de acuerdo con la página de su sistema
|
||||
{{% /notice %}}
|
||||
|
||||
**Métodos abreviados de control remoto del ratón:**
|
||||
|
||||
- Hacer clic con el botón derecho del ratón: volver
|
||||
- Haga clic en la rueda del mouse: Inicio
|
||||
- Mantenga presionada la rueda del mouse: aplicaciones abiertas recientemente
|
||||
- Desplazamiento de la rueda del mouse: simule el deslizamiento vertical
|
||||
|
||||
#### **Empieza el servicio**
|
||||
|
||||
Después de obtener la `screen capture` permiso, el servicio se iniciará automáticamente. También puede hacer clic en el `Start service` botón para iniciar el servicio. Una vez que se inicia el servicio, puede aceptar solicitudes de control de escritorio de otros dispositivos.
|
||||
|
||||
Si el `file transfer` el permiso está habilitado, también puede aceptar solicitudes de control de archivos de otros dispositivos.
|
||||
|
||||
Una vez iniciado el servicio, se obtendrá automáticamente una identificación única y una contraseña aleatoria para este dispositivo. Otros dispositivos pueden controlar el teléfono a través de la identificación y la contraseña, o confirmar manualmente cuando se recibe una nueva solicitud.
|
||||
|
||||
| Antes de iniciar el servicio | Después de iniciar el servicio |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
{{% notice note %}}
|
||||
1. Haciendo clic `Start Service` habilitará el `Screen capture` permiso por defecto.
|
||||
2. Cuando el `screen capture` no se obtiene el permiso, otros dispositivos no pueden emitir solicitudes de control.
|
||||
3. Excepto por el `screen capture` permiso, el cambio de otros permisos solo afectará la nueva conexión y no afectará la conexión establecida. Si necesita cambiar los permisos para una conexión establecida, primero cierre la conexión actual, modifique los permisos y luego reciba una solicitud de control.
|
||||
{{% /notice %}}
|
||||
|
||||
**PC:**
|
||||
|
||||

|
||||
|
||||
**Terminal móvil:**
|
||||
| Puede detener el servicio o cerrar la conexión especificada en cualquier momento | Puedes recibir o iniciar chats |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
85
content/client/android/_index.fr.md
Normal file
@@ -0,0 +1,85 @@
|
||||
---
|
||||
title: Contrôle d'un appareil Android distant
|
||||
weight: 4
|
||||
---
|
||||
|
||||
### Partager l'écran et fichiers de votre téléphone Android
|
||||
------
|
||||
|
||||
À partir de la version 1.1.9, le client Android permet le partage d'écran et du système de fichiers du téléphone.
|
||||
|
||||
- Minimum Android 6 pour le partage d'écran
|
||||
- Minimum Android 10 pour partager l'audio interne du système de téléphonie mobile
|
||||
- iOS ne prend pas encore en charge le partage d'écran
|
||||
|
||||
|
||||
#### **Donner les autorisations et démarrer les services**
|
||||
|
||||
Cliquez sur "Partager l'écran" dans la barre de navigation inférieure
|
||||
|
||||
Donnez des autorisations selon vos besoins. Chaque fois que vous démarrez RustDesk, vous devrez demander à nouveau les autorisations "Capture d'écran" et "Contrôle de saisie".
|
||||
|
||||

|
||||
|
||||
| Autorisations | Descriptif |
|
||||
| --------------- | --------------------------------------------------------- |
|
||||
| Capture d'écran | Donne l'autorisation de partage d'écran, le service de surveillance sera démarré en même temps que l'application |
|
||||
| Contrôle de saisie * | Permettre la saisie clavier ainsi que le contrôle de l'écran tactile virtuel avec la souris |
|
||||
| Transfert de fichiers * | Donne l'autorisation de transfert de fichiers. Après le démarrage, vous pourrez contrôler à distance le système de fichiers du téléphone |
|
||||
| Capture audio | Autorise le partage du son système du téléphone (pas l'entrée microphone) |
|
||||
|
||||
{{% notice note %}}
|
||||
\* Autorisations spéciales<br/>
|
||||
Pour obtenir ces autorisations, vous devez accéder à la page des paramètres système Android afin de les obtenir manuellement. Voir la suite pour plus de détails.
|
||||
{{% /notice %}}
|
||||
|
||||
#### **Demande d'autorisation spéciale - Accès fichiers**
|
||||
|
||||
| La demande d'autorisations d'accès aux fichiers Android vous amènera automatiquement à la page des paramètres système |
|
||||
| :---------------: |
|
||||
|  |
|
||||
|
||||
#### **Demande d'autorisation spéciale - contrôler le pointeur**
|
||||
| Étape 1 - Recherchez Rustdesk dans la liste "Applications téléchargées" | Étape 2 - Activer "Utiliser RustDesk Input" |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
{{% notice note %}}
|
||||
La page configuration système diffère selon les constructeurs. Adaptez s'il vous plait les précédentes étapes à votre situation.
|
||||
{{% /notice %}}
|
||||
|
||||
**Les Raccourcis pour le contrôle à distance du pointeur :**
|
||||
|
||||
- Clic bouton droit : retour en arrière
|
||||
- Clic molette : Accueil
|
||||
- Clic long molette : applications récemment ouvertes
|
||||
- Défilement molette: simule un glissement vertical
|
||||
|
||||
#### **Démarrer le service**
|
||||
|
||||
Après avoir obtenu l'autorisation "capture d'écran", le service sera automatiquement démarré, ou vous pouvez également cliquer sur le bouton "Démarrer le service". Une fois le service démarré, il pourra accepter les demandes de contrôle du bureau provenant d'autres appareils.
|
||||
|
||||
Si l'autorisation "transfert de fichiers" est activée, le service pourra également accepter les demandes d'accès fichiers depuis d'autres appareils.
|
||||
|
||||
Une fois le service démarré, un identifiant unique et un mot de passe aléatoire seront automatiquement obtenus pour cet appareil. D'autres appareils peuvent contrôler le téléphone via ce couple identifiant et mot de passe, ou vous pourrez confirmer manuellement la réception d'une demande.
|
||||
|
||||
| Avant le lancement du service "Capture d'écran" | Après le démarrage du service "Capture d'écran" |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
{{% notice note %}}
|
||||
1. Cliquer sur "Démarrer le service" activera l'autorisation "Capture d'écran".
|
||||
2. Lorsque l'autorisation de "capture d'écran" n'est pas obtenue, les autres appareils ne pourront pas émettre de demandes de contrôle.
|
||||
3. À l'exception de l'autorisation "capture d'écran", le changement d'autres autorisations n'affectera que la nouvelle connexion et n'affectera pas la connexion établie. Si vous avez besoin de changer les autorisations pour une connexion établie, veuillez d'abord fermer la connexion actuelle, modifier les autorisations, puis recevoir une nouvelle demande de contrôle.
|
||||
{{% /notice %}}
|
||||
|
||||
##### Vue PC
|
||||
|
||||

|
||||
|
||||
##### Vue Appareil Mobile
|
||||
|
||||
|
||||
| Vous pouvez arrêter le service ou fermer la connexion spécifiée à tout moment | Vous pouvez recevoir ou initier des chats |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
6
content/client/android/_index.it.md
Executable file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Control your Android
|
||||
weight: 4
|
||||
---
|
||||
|
||||
[English](/docs/en/client/android/)
|
||||
6
content/client/android/_index.ja.md
Executable file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Control your Android
|
||||
weight: 4
|
||||
---
|
||||
|
||||
[English](/docs/en/client/android/)
|
||||
83
content/client/android/_index.nl.md
Normal file
@@ -0,0 +1,83 @@
|
||||
---
|
||||
title: Beheer uw Android
|
||||
weight: 4
|
||||
---
|
||||
|
||||
### Deel scherm/bestanden van uw Android-telefoon
|
||||
------
|
||||
|
||||
Vanaf versie 1.1.9 heeft de Android-client de functies toegevoegd voor het delen van het telefoonscherm en het delen van het bestandssysteem van de telefoon.
|
||||
|
||||
- Android 6 en hoger is vereist voor scherm delen
|
||||
- Android 10 of hoger is vereist om de interne audio van het mobiele telefoonsysteem te delen
|
||||
- iOS ondersteunt nog geen schermdeling
|
||||
|
||||
|
||||
#### **Toestemming vragen en services starten**
|
||||
|
||||
Klik op `Scherm delen` in de onderste navigatiebalk
|
||||
|
||||
Configureer verschillende toestemmingen als dat nodig is. Elke keer dat u RustDesk opstart, moet u de toestemmingen " Schermopname" en "Invoercontrole" opnieuw aanvragen.
|
||||
|
||||

|
||||
|
||||
| Toestemmingen | Beschrijving |
|
||||
| --------------- | --------------------------------------------------------- |
|
||||
| Schermopname | Of de toestemming voor het delen van schermopnamen moet worden ingeschakeld, de monitoring service zal tegelijk met het opstarten worden ingeschakeld. |
|
||||
| Invoercontrole* | Of de controller de invoer van de mobiele telefoon mag besturen, zoals virtuele touchscreenbediening met de muis |
|
||||
| Bestandsoverdracht* | Of u toestemming geeft voor bestandsoverdracht, na het opstarten kunt u het bestandssysteem van deze telefoon op afstand bedienen. |
|
||||
| Audio-opname | Of de systeemmuziek in de telefoon moet worden gedeeld (geen microfooningang) |
|
||||
|
||||
{{% notice note %}}
|
||||
Boven * staat voor speciale toestemmingen. Om dergelijke toestemmingen te verkrijgen, moet u naar de Android-systeeminstellingenpagina gaan om ze handmatig te verkrijgen. De details zijn als volgt
|
||||
{{% /notice %}}
|
||||
|
||||
#### **Speciaal Verzoek om Toestemming - Bestand**
|
||||
|
||||
| Het aanvragen van Android bestandstoestemmingen zal automatisch naar de systeeminstellingen pagina springen |
|
||||
| :---------------: |
|
||||
|  |
|
||||
|
||||
#### **Special Permission Request - mouse input**
|
||||
| Stap 1 Zoek " Installeerde Services " | Stap 2 Start RustDesk Invoer |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
{{% notice note %}}
|
||||
De systeeminstellingspagina van verschillende leveranciers kan verschillen, pas deze aan volgens uw systeempagina.
|
||||
{{% /notice %}}
|
||||
|
||||
**Sneltoetsen voor muisbesturing op afstand:**
|
||||
|
||||
- Klik de rechter muisknop: ga terug
|
||||
- Klik met het muiswiel: Home
|
||||
- Lang indrukken muiswiel: onlangs geopende apps
|
||||
- Scrollen met muiswiel: simuleren verticaal schuiven
|
||||
|
||||
#### **Start service**
|
||||
|
||||
Na het verkrijgen van de `schermopname` toestemming, wordt de service automatisch gestart. U kunt ook op de `Start service` knop klikken om de service te starten. Nadat de service is gestart, kan het bureaublad besturingsverzoeken van andere apparaten accepteren.
|
||||
|
||||
Als de toestemming `bestandsoverdracht` is ingeschakeld, kan het ook verzoeken om bestandsbeheer van andere apparaten accepteren.
|
||||
|
||||
Nadat de service is gestart, wordt automatisch een uniek ID en een willekeurig wachtwoord voor dit apparaat verkregen. Andere apparaten kunnen het toestel bedienen via het ID en het wachtwoord, of handmatig bevestigen wanneer een nieuw verzoek wordt ontvangen.
|
||||
|
||||
| Voordat de service start | Na de start van de service |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
{{% notice note %}}
|
||||
1. Door op `Start Service` te klikken wordt de `Schermopname` standaard ingeschakeld.
|
||||
2. Wanneer de "schermopname" toestemming niet is verkregen, kunnen andere apparaten geen controleverzoeken doen.
|
||||
3. Met uitzondering van de `schermopname` toestemming, zal het wijzigen van andere toestemmingen alleen gevolgen hebben voor de nieuwe verbinding, en niet voor de bestaande verbinding. Als u de toestemmingen voor een opgezette verbinding moet wijzigen, sluit dan eerst de huidige verbinding, wijzig de toestemmingen en ontvang dan een controleverzoek.
|
||||
{{% /notice %}}
|
||||
|
||||
##### PC
|
||||
|
||||

|
||||
|
||||
##### Mobiele terminal
|
||||
|
||||
| U kunt de service op elk moment stoppen of de opgegeven verbinding sluiten. | U kunt chats ontvangen of starten |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
6
content/client/android/_index.pt.md
Executable file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Control your Android
|
||||
weight: 4
|
||||
---
|
||||
|
||||
[English](/docs/en/client/android/)
|
||||
82
content/client/android/_index.ru.md
Executable file
@@ -0,0 +1,82 @@
|
||||
---
|
||||
title: Управление устройствами на Android
|
||||
weight: 4
|
||||
---
|
||||
|
||||
### Передача изображения экрана и файлов с устройства Android
|
||||
------
|
||||
|
||||
Начиная с версии 1.1.9, в клиент для Android добавлены функции совместного доступа к экрану телефона и общего доступа к файловой системе телефона.
|
||||
|
||||
- Для демонстрации экрана необходима версия Android 6 или выше
|
||||
- Для передачи аудио необходима версия Android 10 или выше
|
||||
- iOS пока не поддерживает демонстрацию экрана
|
||||
|
||||
|
||||
#### **Запрос разрешений и запуск служб**
|
||||
|
||||
Нажмите `Share Screen` на нижней панели навигации
|
||||
|
||||
Настройте необходимые разрешения. При каждом запуске RustDesk, необходим повторный запрос разрешений.
|
||||
|
||||

|
||||
|
||||
| Разрешение | Описание |
|
||||
| --------------- | --------------------------------------------------------- |
|
||||
| Screen Capture | Доступ к изображению экрана |
|
||||
| Input Control* | Доступ к управлению вводом устройства |
|
||||
| File transfer* | Доступ к файловой системе |
|
||||
| Audio capture | Доступ к аудио |
|
||||
|
||||
{{% notice note %}}
|
||||
\* - особые разрешение. Для их настройки необходимо зайти в системные настройки Android и установить их вручную.
|
||||
{{% /notice %}}
|
||||
|
||||
#### **Особые разрешения - Передача файлов**
|
||||
|
||||
| Запрос разрешения на передачу файлов автоматически перенаправит на страницу системных настроек |
|
||||
| :---------------: |
|
||||
|  |
|
||||
|
||||
#### **Особые разрешения - Ввод**
|
||||
| Шаг 1 Найдите "Установленные службы" | Шаг 2 Включите RustDesk Input |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
{{% notice note %}}
|
||||
Страницы системных настроек могут отличаться в зависимости от производителя оборудования
|
||||
{{% /notice %}}
|
||||
|
||||
**Управление мышью:**
|
||||
|
||||
- ПКМ: Назад
|
||||
- СКМ: На главный экран
|
||||
- Длительное нажатие СКМ: Недавние приложения
|
||||
- Прокрутка колесика мыши: Имитация вертикальной прокрутки
|
||||
|
||||
#### **Запуск службы**
|
||||
|
||||
После получения разрешения `screen capture`, служба зпустится автоматически. Для запуска службы также можно нажать кнопку `Start Service`. После запуска службы, она может принимать запросы на управление от других устройств.
|
||||
|
||||
Если получено разрешение `file transfer`, то доступна передача файлов на другие устройства.
|
||||
|
||||
После запуска службы, для устройства будет получен уникальный ID и случайный пароль. Другие устройства могут подключаться к этому с помощью ID и пароля или с помощью ID и подтверждения.
|
||||
|
||||
| До запуска службы | После запуска службы |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
{{% notice note %}}
|
||||
1. Нажатие `Start Service` включит разрешение `Screen Capture` по умолчанию.
|
||||
2. Если разрешение `screen capture` не получено, другие устройства не смогут отправлять запросы на управление.
|
||||
3. Выключение любого разрешения, кроме `Screen Capture`, отразится только на новых соединениях. Если вам надо изменить разрешения для активного соединения, завершите его, настройте разрешения и откройте соединение заново.
|
||||
{{% /notice %}}
|
||||
|
||||
**PC:**
|
||||
|
||||

|
||||
|
||||
**Мобильный терминал:**
|
||||
| Можно в любое время остановить службу и закрыть соединение | Чат |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
84
content/client/android/_index.zh-cn.md
Executable file
@@ -0,0 +1,84 @@
|
||||
---
|
||||
title: 安卓被控
|
||||
weight: 4
|
||||
---
|
||||
|
||||
### 共享安卓手机的屏幕或者文件
|
||||
------
|
||||
|
||||
1.1.9版本开始,安卓客户端增加了共享手机屏幕和共享手机文件系统的功能。
|
||||
|
||||
- 基础屏幕共享功能需要安卓6及以上版本
|
||||
- 共享手机系统内部音频需要安卓10及以上版本
|
||||
- IOS尚不支持屏幕共享
|
||||
|
||||
|
||||
#### **获取权限与开启服务**
|
||||
|
||||
通过底部导航栏点击`共享屏幕`
|
||||
|
||||
根据需要,配置各项权限, 每次启动RustDesk后,"屏幕录制"以及“输入控制"权限都再次重新申请。
|
||||
|
||||

|
||||
|
||||
| 权限 | 说明 |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
| 屏幕录制 | 是否启动屏幕录制共享权限,启动的同时即开启监听服务 |
|
||||
| 输入控制* | 是否允许控制者控制手机的输入,比如用鼠标进行虚拟触屏操作 |
|
||||
| 文件传输* | 是否开启文件传输权限,启动后可远程控制这台手机的文件系统 |
|
||||
| 音频录制 | 是否共享手机内部的系统音乐(非麦克风输入) |
|
||||
|
||||
{{% notice note %}}
|
||||
其中,* 代表特殊权限,获取此类权限需要跳转到安卓系统设置页面手动获取,详情如下
|
||||
{{% /notice %}}
|
||||
|
||||
#### **特殊权限获取 - 文件**
|
||||
|
||||
| 获取安卓文件权限将会自动跳转到系统设置页面 |
|
||||
| :---------------: |
|
||||
|  |
|
||||
|
||||
#### **特殊权限获取 - 鼠标输入**
|
||||
| 步骤 一 找到“已安装的服务” | 步骤 二 启动RustDesk Input |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
{{% notice note %}}
|
||||
以上演示操作系统为 Samsung Galaxy S10 mobile11 OneUI,
|
||||
不同安卓手机系统的系统设置页面可能会不同,请根据您的系统页面调整
|
||||
{{% /notice %}}
|
||||
|
||||
**远程鼠标控制安卓的快捷操作:**
|
||||
|
||||
- 点击鼠标右键:返回
|
||||
- 点击鼠标滚轮:Home
|
||||
- 长按鼠标滚轮:最近打开的应用
|
||||
- 鼠标滚轮滚动:模拟垂直方向的滑动
|
||||
|
||||
#### **启动服务**
|
||||
|
||||
获取 `屏幕录制` 权限后将自动启动服务,也可以通过点击`启动服务`按钮开启服务,服务启动后即可接受来自其他设备的桌面控制请求。
|
||||
|
||||
若开启了`文件传输`权限,也可以接受来自其他设备的文件控制请求。
|
||||
|
||||
启动服务后,会自动为此设备获取唯一ID和随机的密码,其他设备可以通过ID与密码对手机进行控制,也可以在收到新请求时手动进行确认。
|
||||
|
||||
| 启动服务前 | 启动服务后 |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
{{% notice note %}}
|
||||
1.点击`启动服务`会默认开启`屏幕录制`权限。
|
||||
2.未获得`屏幕录制`权限时,其他设备无法发出控制请求。
|
||||
3.除`屏幕录制`权限外,其他权限的切换只会对新的连接产生影响,不会影响已经建立的连接。如需对已建立的连接切换权限,请先关闭当前连接,修改权限后再接收控制请求。
|
||||
{{% /notice %}}
|
||||
|
||||
**PC端:**
|
||||
|
||||

|
||||
|
||||
**mobile端:**
|
||||
| 可以随时停止服务或关闭指定连接 | 可以接收或发起聊天 |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
82
content/client/android/_index.zh-tw.md
Executable file
@@ -0,0 +1,82 @@
|
||||
---
|
||||
title: 控制您的 Android 手機
|
||||
weight: 4
|
||||
---
|
||||
|
||||
### 分享您的 Android 手機的畫面或檔案
|
||||
------
|
||||
|
||||
1.1.9 版本開始,Android 客戶端增加了分享手機畫面和檔案系統的功能。
|
||||
|
||||
- 需要 Android 6 或以上版本以使用畫面分享
|
||||
- 需要 Android 10 或以上版本以分享系統音訊
|
||||
- iOS 尚未支援畫面分享
|
||||
|
||||
#### **取得權限和啟動服務**
|
||||
|
||||
點擊下方瀏覽列的`分享畫面`
|
||||
|
||||
根據需要,配置各項權限,每次啟動 RustDesk,您都需要重新請求 "畫面擷取" 和 "輸入控制" 權限。
|
||||
|
||||

|
||||
|
||||
| 權限 | 說明 |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
| 畫面擷取 | 是否啟動畫面錄製分享權限,啟動的同時即開啟監聽服務 |
|
||||
| 輸入控制* | 是否允許控制者控制手機的輸入,比如用滑鼠進行虛擬觸控操作 |
|
||||
| 檔案傳輸* | 是否開啟檔案傳輸權限,啟動後可遠端控制這台手機的檔案系統 |
|
||||
| 音訊擷取 | 是否分享手機的系統音訊 (非麥克風輸入) |
|
||||
|
||||
{{% notice note %}}
|
||||
其中,* 代表特殊權限,獲取此類權限需要跳轉到 Android 系統設定頁面手動授權,詳情如下
|
||||
{{% /notice %}}
|
||||
|
||||
#### **特殊權限獲取 - 檔案**
|
||||
|
||||
| 獲取 Android 檔案權限將會自動跳轉到系統設定頁面 |
|
||||
| :---------------: |
|
||||
|  |
|
||||
|
||||
#### **特殊權限獲取 - 滑鼠輸入**
|
||||
| 步驟一 找到“已安裝的服務” | 步驟二 啟動 RustDesk Input |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
{{% notice note %}}
|
||||
不同 Android 手機系統的系統設定頁面可能會不同,請根據您的系統頁面調整
|
||||
{{% /notice %}}
|
||||
|
||||
**遠端滑鼠控制 Android 的快捷操作:**
|
||||
|
||||
- 點擊滑鼠右鍵:返回
|
||||
- 點擊滑鼠滾輪:主頁
|
||||
- 長按滑鼠滾輪:最近打開的應用程式
|
||||
- 滑鼠滾輪滾動:模擬垂直方向滑動
|
||||
|
||||
#### **啟動服務**
|
||||
|
||||
獲取 `畫面錄製` 權限後將自動啟動服務,也可以通過點擊`啟動服務`按鈕開啟服務,服務啟動後即可接受來自其他裝置的桌面控制請求。
|
||||
|
||||
若開啟了`檔案傳輸`權限,也可以接受來自其他裝置的檔案控制請求。
|
||||
|
||||
啟動服務後,會自動為此裝置獲取唯一 ID 和隨機的密碼,其他裝置可以通過 ID 與密碼對手機進行控制,也可以在收到新請求時手動進行確認。
|
||||
|
||||
| 啟動服務前 | 啟動服務後 |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
|
||||
{{% notice note %}}
|
||||
1. 點擊`啟動服務`會默認開啟`畫面錄製`權限。
|
||||
2. 未獲得`畫面錄製`權限時,其他裝置無法發出控制請求。
|
||||
3. 除`畫面錄製`權限外,其他權限的切換只會對新的連接產生影響,不會影響已經建立的連接。如需對已建立的連接切換權限,請先關閉當前連接,修改權限後再接收控制請求。
|
||||
{{% /notice %}}
|
||||
|
||||
##### PC
|
||||
|
||||

|
||||
|
||||
##### 手機端
|
||||
|
||||
| 可以隨時停止服務或關閉指定連接 | 可以接收或發起聊天 |
|
||||
| --------------- | -------------------------------------------------------- |
|
||||
|  |  |
|
||||
BIN
content/client/android/images/android_server1_zh.jpg
Normal file
|
After Width: | Height: | Size: 81 KiB |
BIN
content/client/android/images/android_server2_en.jpg
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
content/client/android/images/android_server2_zh.jpg
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
content/client/android/images/android_server_pc_side_en.png
Normal file
|
After Width: | Height: | Size: 113 KiB |
BIN
content/client/android/images/android_server_pc_side_zh.png
Normal file
|
After Width: | Height: | Size: 149 KiB |
BIN
content/client/android/images/connection.jpg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
content/client/android/images/connection_en.jpg
Normal file
|
After Width: | Height: | Size: 61 KiB |
BIN
content/client/android/images/connection_home_en.jpg
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
content/client/android/images/connection_home_file_en.jpg
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
content/client/android/images/connection_home_file_zh.jpg
Normal file
|
After Width: | Height: | Size: 53 KiB |
BIN
content/client/android/images/connection_home_zh.jpg
Normal file
|
After Width: | Height: | Size: 49 KiB |
BIN
content/client/android/images/file_connection.jpg
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
content/client/android/images/file_connection_en.jpg
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
content/client/android/images/file_copy.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
content/client/android/images/file_copy_en.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
content/client/android/images/file_multi_select.jpg
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
content/client/android/images/file_multi_select_en.jpg
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
content/client/android/images/get_file_en.jpg
Normal file
|
After Width: | Height: | Size: 45 KiB |
BIN
content/client/android/images/get_file_zh.jpg
Normal file
|
After Width: | Height: | Size: 60 KiB |
BIN
content/client/android/images/get_input1_en.jpg
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
content/client/android/images/get_input1_zh.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
content/client/android/images/get_input2_en.jpg
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
content/client/android/images/get_input2_zh.jpg
Normal file
|
After Width: | Height: | Size: 49 KiB |
BIN
content/client/android/images/id_setting_en.jpg
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
content/client/android/images/id_setting_zh.png
Normal file
|
After Width: | Height: | Size: 8.9 KiB |
BIN
content/client/android/images/server_off_en.jpg
Normal file
|
After Width: | Height: | Size: 80 KiB |
BIN
content/client/android/images/server_off_zh.jpg
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
content/client/android/images/server_on_en.jpg
Normal file
|
After Width: | Height: | Size: 92 KiB |
BIN
content/client/android/images/server_on_zh.jpg
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
content/client/android/images/touch_mode_en.jpg
Normal file
|
After Width: | Height: | Size: 421 KiB |
BIN
content/client/android/images/touch_mode_icon.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
content/client/android/images/touch_mode_icon_en.png
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
BIN
content/client/android/images/touch_mode_zh.jpg
Normal file
|
After Width: | Height: | Size: 431 KiB |
BIN
content/client/images/client.png
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
content/client/images/network-settings.png
Normal file
|
After Width: | Height: | Size: 91 KiB |
54
content/client/linux/_index.de.md
Executable file
@@ -0,0 +1,54 @@
|
||||
---
|
||||
title: Linux
|
||||
weight: 4
|
||||
---
|
||||
|
||||
### Installation
|
||||
|
||||
#### Ubuntu (>= 16)
|
||||
|
||||
```bash
|
||||
# Bitte ignorieren Sie den falschen Bericht zur Festplattennutzung
|
||||
sudo apt install -fy ./rustdesk-<version>.deb
|
||||
```
|
||||
|
||||
#### CentOS/Fedora (>= 18)
|
||||
|
||||
```sh
|
||||
sudo yum localinstall ./rustdesk-<version>.rpm
|
||||
```
|
||||
|
||||
#### Arch/Manjaro
|
||||
|
||||
```sh
|
||||
sudo pacman -U ./rustdesk-<version>.pkg.tar.zst
|
||||
```
|
||||
|
||||
#### openSUSE (>= Leap 15.0)
|
||||
|
||||
```sh
|
||||
sudo zypper install --allow-unsigned-rpm ./rustdesk-<version>-suse.rpm
|
||||
```
|
||||
|
||||
### ~~X11 erforderlich~~
|
||||
~~RustDesk unterstützt Wayland noch nicht; Sie müssen manuell zu X11 wechseln.~~
|
||||
|
||||
RustDesk unterstützt jetzt experimentell Wayland. Um dieses Feature zu aktivieren, müssen Sie möglicherweise die [Nightly-Version](https://github.com/rustdesk/rustdesk/releases/tag/nightly) herunterladen.
|
||||
|
||||
#### Server anzeigen
|
||||
|
||||
[Ubuntu](https://askubuntu.com/questions/1260142/ubuntu-set-default-login-desktop) |
|
||||
[Fedora](https://docs.fedoraproject.org/en-US/quick-docs/configuring-xorg-as-default-gnome-session/) |
|
||||
[Arch](https://bbs.archlinux.org/viewtopic.php?id=218319)
|
||||
|
||||
#### Anmeldebildschirm
|
||||
|
||||
Ändern Sie die folgende Zeile zu `WaylandEnable=false` in `/etc/gdm/custom.conf` oder `/etc/gdm3/custom.conf`:
|
||||
|
||||
```ini
|
||||
#WaylandEnable=false
|
||||
```
|
||||
|
||||
{{% notice note %}}
|
||||
Bitte **neu starten**, damit die oben genannten Änderungen wirksam werden.
|
||||
{{% /notice %}}
|
||||
54
content/client/linux/_index.en.md
Executable file
@@ -0,0 +1,54 @@
|
||||
---
|
||||
title: Linux
|
||||
weight: 4
|
||||
---
|
||||
|
||||
### Installation
|
||||
|
||||
#### Ubuntu (>= 16)
|
||||
|
||||
```bash
|
||||
# please ignore the wrong disk usage report
|
||||
sudo apt install -fy ./rustdesk-<version>.deb
|
||||
```
|
||||
|
||||
#### CentOS/Fedora (>= 18)
|
||||
|
||||
```sh
|
||||
sudo yum localinstall ./rustdesk-<version>.rpm
|
||||
```
|
||||
|
||||
#### Arch/Manjaro
|
||||
|
||||
```sh
|
||||
sudo pacman -U ./rustdesk-<version>.pkg.tar.zst
|
||||
```
|
||||
|
||||
#### Opensuse (>= Leap 15.0)
|
||||
|
||||
```sh
|
||||
sudo zypper install --allow-unsigned-rpm ./rustdesk-<version>-suse.rpm
|
||||
```
|
||||
|
||||
### ~~X11 Required~~
|
||||
~~RustDesk does not support Wayland yet; you need switch to X11 manually.~~
|
||||
|
||||
RustDesk now has experimental Wayland support. You may need to download the [nightly version](https://github.com/rustdesk/rustdesk/releases/tag/nightly) to enable this feature.
|
||||
|
||||
#### Display Server
|
||||
|
||||
[Ubuntu](https://askubuntu.com/questions/1260142/ubuntu-set-default-login-desktop) |
|
||||
[Fedora](https://docs.fedoraproject.org/en-US/quick-docs/configuring-xorg-as-default-gnome-session/) |
|
||||
[Arch](https://bbs.archlinux.org/viewtopic.php?id=218319)
|
||||
|
||||
#### Login Screen
|
||||
|
||||
Modify below line to `WaylandEnable=false` in `/etc/gdm/custom.conf` or `/etc/gdm3/custom.conf`:
|
||||
|
||||
```ini
|
||||
#WaylandEnable=false
|
||||
```
|
||||
|
||||
{{% notice note %}}
|
||||
Please **reboot** to make above changes taking effect
|
||||
{{% /notice %}}
|
||||
59
content/client/linux/_index.es.md
Normal file
@@ -0,0 +1,59 @@
|
||||
---
|
||||
title: Linux
|
||||
weight: 4
|
||||
---
|
||||
|
||||
### Installation
|
||||
------
|
||||
|
||||
- Ubuntu (>= 16)
|
||||
```
|
||||
# please ignore the wrong disk usage report
|
||||
sudo apt install -fy ./rustdesk-<version>.deb
|
||||
```
|
||||
|
||||
- CentOS/Fedora (>=18)
|
||||
```
|
||||
sudo yum localinstall ./rustdesk-<version>.rpm
|
||||
```
|
||||
|
||||
- Arch/Manjaro
|
||||
```
|
||||
sudo pacman -U ./rustdesk-<version>.pkg.tar.zst
|
||||
```
|
||||
|
||||
- Opensuse (>= Leap 15.0)
|
||||
```
|
||||
sudo zypper install --allow-unsigned-rpm ./rustdesk-<version>-suse.rpm
|
||||
```
|
||||
|
||||
### ~~X11 Required~~
|
||||
~~RustDesk aún no admite wayland, debe cambiar a X11. RustDesk lo guiará para cambiar a X11.~~
|
||||
|
||||
RustDesk ahora cuenta con soporte experimental para Wayland. Es posible que debas descargar la versión nocturna para habilitar esta función.
|
||||
|
||||
| Haga clic en "Fix it" | corrección para la pantalla de inicio de sesión | Ingrese su contraseña |
|
||||
| ---- | ---- | --- |
|
||||
||||
|
||||
|
||||
{{% notice note %}}
|
||||
Por favor **reiniciar** para hacer que los cambios anteriores surtan efecto
|
||||
{{% /notice %}}
|
||||
|
||||
#### También puede hacer los cambios anteriores manualmente
|
||||
|
||||
#### Servidor de visualización
|
||||
|
||||
Ubuntu: https://askubuntu.com/questions/1260142/ubuntu-set-default-login-desktop
|
||||
|
||||
Fedora: https://docs.fedoraproject.org/en-US/quick-docs/configuring-xorg-as-default-gnome-session/
|
||||
|
||||
Arch: https://bbs.archlinux.org/viewtopic.php?id=218319
|
||||
|
||||
##### Login Screen
|
||||
|
||||
Modificar debajo de la línea para `WaylandEnable=false` en `/etc/gdm/custom.conf` o `/etc/gdm3/custom.conf`.
|
||||
```
|
||||
#WaylandEnable=false
|
||||
```
|
||||
|
||||
54
content/client/linux/_index.fr.md
Normal file
@@ -0,0 +1,54 @@
|
||||
---
|
||||
title: Linux
|
||||
weight: 4
|
||||
---
|
||||
|
||||
|
||||
### Installation
|
||||
|
||||
#### Ubuntu (>= 16)
|
||||
|
||||
```bash
|
||||
sudo apt install -fy ./rustdesk-<version>.deb
|
||||
```
|
||||
|
||||
#### CentOS/Fedora (>=18)
|
||||
|
||||
```sh
|
||||
sudo yum localinstall ./rustdesk-<version>.rpm
|
||||
```
|
||||
|
||||
#### Arch/Manjaro
|
||||
|
||||
```sh
|
||||
sudo pacman -U ./rustdesk-<version>.pkg.tar.zst
|
||||
```
|
||||
|
||||
#### Opensuse (>= Leap 15.0)
|
||||
|
||||
```sh
|
||||
sudo zypper install --allow-unsigned-rpm ./rustdesk-<version>-suse.rpm
|
||||
```
|
||||
|
||||
### ~~X11 nécessaire~~
|
||||
~~RustDesk ne prend pas encore en charge wayland ; vous devez passer manuellement à X11.~~
|
||||
|
||||
RustDesk dispose désormais d'une prise en charge expérimentale de Wayland. Vous devrez peut-être télécharger la version nightly pour activer cette fonctionnalité.
|
||||
|
||||
#### Serveur d'affichage
|
||||
|
||||
[Ubuntu](https://askubuntu.com/questions/1260142/ubuntu-set-default-login-desktop) |
|
||||
[Fedora](https://docs.fedoraproject.org/en-US/quick-docs/configuring-xorg-as-default-gnome-session/) |
|
||||
[Arch](https://bbs.archlinux.org/viewtopic.php?id=218319)
|
||||
|
||||
#### Écran de connexion
|
||||
|
||||
Modifiez la ligne ci-dessous en `WaylandEnable=false` dans `/etc/gdm/custom.conf` ou `/etc/gdm3/custom.conf` :
|
||||
|
||||
```ini
|
||||
#WaylandEnable=false
|
||||
```
|
||||
|
||||
{{% notice note %}}
|
||||
Veuillez **redémarrer** pour que les modifications ci-dessus prennent effet
|
||||
{{% /notice %}}
|
||||
6
content/client/linux/_index.it.md
Executable file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Linux
|
||||
weight: 4
|
||||
---
|
||||
|
||||
[English](/docs/en/manual/linux/)
|
||||
6
content/client/linux/_index.ja.md
Executable file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Linux
|
||||
weight: 4
|
||||
---
|
||||
|
||||
[English](/docs/en/manual/linux/)
|
||||
53
content/client/linux/_index.nl.md
Normal file
@@ -0,0 +1,53 @@
|
||||
---
|
||||
title: Linux
|
||||
weight: 4
|
||||
---
|
||||
|
||||
### Installatie
|
||||
|
||||
#### Ubuntu (>= 16)
|
||||
|
||||
```bash
|
||||
# please ignore the wrong disk usage report
|
||||
sudo apt install -fy ./rustdesk-<version>.deb
|
||||
```
|
||||
|
||||
#### CentOS/Fedora (>=18)
|
||||
|
||||
```sh
|
||||
sudo yum localinstall ./rustdesk-<version>.rpm
|
||||
```
|
||||
|
||||
#### Arch/Manjaro
|
||||
|
||||
```sh
|
||||
sudo pacman -U ./rustdesk-<version>.pkg.tar.zst
|
||||
```
|
||||
|
||||
#### Opensuse (>= Leap 15.0)
|
||||
|
||||
```sh
|
||||
sudo zypper install --allow-unsigned-rpm ./rustdesk-<version>-suse.rpm
|
||||
```
|
||||
|
||||
### ~~X11 Vereist~~
|
||||
~~RustDesk ondersteunt wayland nog niet; u moet handmatig overschakelen naar X11.~~
|
||||
RustDesk heeft nu experimentele Wayland-ondersteuning. Je moet mogelijk de nightly-versie downloaden om deze functie in te schakelen.
|
||||
|
||||
#### Toon Server
|
||||
|
||||
[Ubuntu](https://askubuntu.com/questions/1260142/ubuntu-set-default-login-desktop) |
|
||||
[Fedora](https://docs.fedoraproject.org/en-US/quick-docs/configuring-xorg-as-default-gnome-session/) |
|
||||
[Arch](https://bbs.archlinux.org/viewtopic.php?id=218319)
|
||||
|
||||
#### Login Scherm
|
||||
|
||||
Wijzig onderstaande regel in `WaylandEnable=false` in `/etc/gdm/custom.conf` of `/etc/gdm3/custom.conf`:
|
||||
|
||||
```ini
|
||||
#WaylandEnable=false
|
||||
```
|
||||
|
||||
{{% notice note %}}
|
||||
**herstart** om bovenstaande wijzigingen in werking te laten treden
|
||||
{{% /notice %}}
|
||||
6
content/client/linux/_index.pt.md
Executable file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Linux
|
||||
weight: 4
|
||||
---
|
||||
|
||||
[English](/docs/en/manual/linux/)
|
||||
52
content/client/linux/_index.ru.md
Executable file
@@ -0,0 +1,52 @@
|
||||
---
|
||||
title: Linux
|
||||
weight: 4
|
||||
---
|
||||
|
||||
### Установка
|
||||
------
|
||||
|
||||
- Ubuntu (>= 16)
|
||||
```
|
||||
# игнорируйте предупреждение "wrong disk usage"
|
||||
sudo apt install -fy ./rustdesk-<version>.deb
|
||||
```
|
||||
|
||||
- CentOS/Fedora (>=18)
|
||||
```
|
||||
sudo yum localinstall ./rustdesk-<version>.rpm
|
||||
```
|
||||
|
||||
- Arch/Manjaro
|
||||
```
|
||||
sudo pacman -U ./rustdesk-<version>.pkg.tar.zst
|
||||
```
|
||||
|
||||
- Opensuse (>= Leap 15.0)
|
||||
```
|
||||
sudo zypper install --allow-unsigned-rpm ./rustdesk-<version>-suse.rpm
|
||||
```
|
||||
|
||||
### ~~X11 обязателен~~
|
||||
~~RustDesk пока не поддерживает Wayland. Необходимо перейти на X11 вручную.~~
|
||||
|
||||
В RustDesk теперь есть экспериментальная поддержка Wayland. Возможно, вам потребуется скачать ночную версию, чтобы включить эту функцию.
|
||||
|
||||
#### Сервер отображения
|
||||
Ubuntu: https://askubuntu.com/questions/1260142/ubuntu-set-default-login-desktop
|
||||
|
||||
Fedora: https://docs.fedoraproject.org/en-US/quick-docs/configuring-xorg-as-default-gnome-session/
|
||||
|
||||
Arch: https://bbs.archlinux.org/viewtopic.php?id=218319
|
||||
|
||||
##### Экран входа в систему
|
||||
|
||||
Измените параметр `WaylandEnable` в `/etc/gdm/custom.conf` или `/etc/gdm3/custom.conf`.
|
||||
```
|
||||
#WaylandEnable=false
|
||||
```
|
||||
|
||||
{{% notice note %}}
|
||||
**Перезагрузите** ваш компьютер, чтобы применить изменения
|
||||
{{% /notice %}}
|
||||
|
||||
55
content/client/linux/_index.zh-cn.md
Executable file
@@ -0,0 +1,55 @@
|
||||
---
|
||||
title: Linux
|
||||
weight: 4
|
||||
---
|
||||
|
||||
### 安装
|
||||
|
||||
#### Ubuntu (>= 16)
|
||||
|
||||
```bash
|
||||
# 请忽略磁盘错误使用报告
|
||||
sudo apt install -fy ./rustdesk-<version>.deb
|
||||
```
|
||||
|
||||
#### CentOS/Fedora (>= 18)
|
||||
|
||||
```sh
|
||||
sudo yum localinstall ./rustdesk-<version>.rpm
|
||||
```
|
||||
|
||||
#### Arch/Manjaro
|
||||
|
||||
```sh
|
||||
sudo pacman -U ./rustdesk-<version>.pkg.tar.zst
|
||||
```
|
||||
|
||||
#### Opensuse (>= Leap 15.0)
|
||||
|
||||
```sh
|
||||
sudo zypper install --allow-unsigned-rpm ./rustdesk-<version>-suse.rpm
|
||||
```
|
||||
|
||||
### ~~需要 X11~~
|
||||
|
||||
~~RustDesk 尚未支持 Wayland; 您需要手动切换到 X11。~~
|
||||
|
||||
RustDesk 现在有实验性的 Wayland 支持,您可能需要下载 [nightly version](https://github.com/rustdesk/rustdesk/releases/tag/nightly) 来启用这一特性。
|
||||
|
||||
#### 显示服务器
|
||||
|
||||
[Ubuntu](https://askubuntu.com/questions/1260142/ubuntu-set-default-login-desktop) |
|
||||
[Fedora](https://docs.fedoraproject.org/en-US/quick-docs/configuring-xorg-as-default-gnome-session/) |
|
||||
[Arch](https://bbs.archlinux.org/viewtopic.php?id=218319)
|
||||
|
||||
#### 登陆屏幕
|
||||
|
||||
在 `/etc/gdm/custom.conf` 或 `/etc/gdm3/custom.conf` 中,将如下的该行更改为 `WaylandEnable=false`:
|
||||
|
||||
```ini
|
||||
#WaylandEnable=false
|
||||
```
|
||||
|
||||
{{% notice note %}}
|
||||
请**重新启动**来使上述变更生效
|
||||
{{% /notice %}}
|
||||
54
content/client/linux/_index.zh-tw.md
Executable file
@@ -0,0 +1,54 @@
|
||||
---
|
||||
title: Linux
|
||||
weight: 4
|
||||
---
|
||||
|
||||
### 安裝
|
||||
|
||||
#### Ubuntu (>= 16)
|
||||
|
||||
```bash
|
||||
# 請忽略磁碟使用錯誤回報
|
||||
sudo apt install -fy ./rustdesk-<version>.deb
|
||||
```
|
||||
|
||||
#### CentOS/Fedora (>=18)
|
||||
|
||||
```sh
|
||||
sudo yum localinstall ./rustdesk-<version>.rpm
|
||||
```
|
||||
|
||||
#### Arch/Manjaro
|
||||
|
||||
```sh
|
||||
sudo pacman -U ./rustdesk-<version>.pkg.tar.zst
|
||||
```
|
||||
|
||||
#### Opensuse (>= Leap 15.0)
|
||||
|
||||
```sh
|
||||
sudo zypper install --allow-unsigned-rpm ./rustdesk-<version>-suse.rpm
|
||||
```
|
||||
|
||||
### ~~需要 X11~~
|
||||
~~RustDesk 尚未支援 wayland;您需要手動切換至 X11。~~
|
||||
|
||||
RustDesk 現已支援 Wayland (測試中),您可能需要下載 Nightly 版來啟用此功能。
|
||||
|
||||
#### 顯示伺服器
|
||||
|
||||
[Ubuntu](https://askubuntu.com/questions/1260142/ubuntu-set-default-login-desktop) |
|
||||
[Fedora](https://docs.fedoraproject.org/en-US/quick-docs/configuring-xorg-as-default-gnome-session/) |
|
||||
[Arch](https://bbs.archlinux.org/viewtopic.php?id=218319)
|
||||
|
||||
#### 登入畫面
|
||||
|
||||
在 `/etc/gdm/custom.conf` 或 `/etc/gdm3/custom.conf` 中,將該行更改為 `WaylandEnable=false`:
|
||||
|
||||
```ini
|
||||
#WaylandEnable=false
|
||||
```
|
||||
|
||||
{{% notice note %}}
|
||||
請**重新啟動**以套用上述變更
|
||||
{{% /notice %}}
|
||||
BIN
content/client/linux/images/fix1.png
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
BIN
content/client/linux/images/fix2.png
Normal file
|
After Width: | Height: | Size: 80 KiB |
BIN
content/client/linux/images/fix3.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
47
content/client/mac/_index.de.md
Executable file
@@ -0,0 +1,47 @@
|
||||
---
|
||||
title: Mac
|
||||
weight: 3
|
||||
---
|
||||
|
||||
### Installation
|
||||
|
||||
Öffnen Sie die .dmg-Datei und ziehen Sie `RustDesk` zu `Applications`, wie unten dargestellt.
|
||||
|
||||

|
||||
|
||||
Stellen Sie sicher, dass Sie alle laufenden RustDesk beendet haben. Stellen Sie außerdem sicher, dass Sie den RustDesk-Dienst in der Taskleiste beendet haben.
|
||||
|
||||

|
||||
|
||||
### Ausführen von RustDesk zulassen
|
||||
|
||||
| Zum Ändern entsperren | Klicken Sie auf „App Store und identifizierte Entwickler“ |
|
||||
| ---- | ---- |
|
||||
|  |  |
|
||||
|
||||
### Berechtigungen aktivieren
|
||||
|
||||
{{% notice note %}}
|
||||
Aufgrund einer Änderung der macOS-Sicherheitspolitik funktioniert unsere API, die Eingaben auf der lokalen Seite erfasst, nicht mehr.
|
||||
Sie müssen die Berechtigung "Eingabeüberwachung" auf der lokalen Mac-Seite aktivieren.
|
||||
Bitte befolgen Sie dies
|
||||
[https://github.com/rustdesk/rustdesk/issues/974#issuecomment-1185644923](https://github.com/rustdesk/rustdesk/issues/974#issuecomment-1185644923).
|
||||
|
||||
Es scheint keine schnelle Lösung zu sein, wir müssen das zusammen mit unserer Flutter-Version beheben.
|
||||
{{% /notice %}}
|
||||
|
||||
Um den Bildschirm aufzunehmen, müssen Sie `RustDesk` die Berechtigungen **Zugriff** und **Bildschirmaufnahme** erteilen. RustDesk führt Sie zum Einstellungsfenster.
|
||||
|
||||
| RustDesk-Fenster | Einstellungsfenster |
|
||||
| ---- | ---- |
|
||||
|  |  |
|
||||
|
||||
Wenn Sie es in den Einstellungen aktiviert haben, warnt RustDesk dennoch. Bitte entfernen Sie RustDesk aus dem Einstellungsfenster über die Schaltfläche `-` und klicken Sie auf die Schaltfläche `+`, um RustDesk unter `/Applications` auszuwählen.
|
||||
|
||||
| Schaltfläche `+` und `-` | RustDesk auswählen |
|
||||
| ---- | ---- |
|
||||
|  |  |
|
||||
|
||||
Bitte kopieren Sie die obigen Schritte für die Berechtigung zur **Bildschirmaufnahme**.
|
||||
|
||||

|
||||
47
content/client/mac/_index.en.md
Executable file
@@ -0,0 +1,47 @@
|
||||
---
|
||||
title: Mac
|
||||
weight: 3
|
||||
---
|
||||
|
||||
### Installation
|
||||
|
||||
Open the .dmg file and drag `RustDesk` to `Applications` as below.
|
||||
|
||||

|
||||
|
||||
Make sure you have quit all running RustDesk. Also make sure you quit the RustDesk service shown on the tray.
|
||||
|
||||

|
||||
|
||||
### Allow RustDesk run
|
||||
|
||||
| Unlock to change | Click on "App Store and identified developers" |
|
||||
| ---- | ---- |
|
||||
|  |  |
|
||||
|
||||
### Enable permissions
|
||||
|
||||
{{% notice note %}}
|
||||
Due to macOS security policy change, our api which captures input on local side does not work any
|
||||
more. You have to enable "Input Monitoring" permission on local Mac side.
|
||||
Please follow this
|
||||
[https://github.com/rustdesk/rustdesk/issues/974#issuecomment-1185644923](https://github.com/rustdesk/rustdesk/issues/974#issuecomment-1185644923).
|
||||
|
||||
It seems no quick fix, we need to fix together with our Flutter version.
|
||||
{{% /notice %}}
|
||||
|
||||
To capture screen, you need to grant `RustDesk` **Accessibility** permission and **Screen Recording** permission. RustDesk will guide you to the settings window.
|
||||
|
||||
| RustDesk window | Settings window |
|
||||
| ---- | ---- |
|
||||
|  |  |
|
||||
|
||||
If you have enabled it in the settings window, but RustDesk still warns. Please remove RustDesk from the settings windows by the `-` button, and click on `+` button, select RustDesk in `/Applications`.
|
||||
|
||||
| `-` and `+` button | Select RustDesk |
|
||||
| ---- | ---- |
|
||||
|  |  |
|
||||
|
||||
Please copy above steps for **Screen Recording** permission.
|
||||
|
||||

|
||||
39
content/client/mac/_index.es.md
Normal file
@@ -0,0 +1,39 @@
|
||||
---
|
||||
title: Mac
|
||||
weight: 3
|
||||
---
|
||||
|
||||
### Instalación
|
||||
------
|
||||
|
||||
Abra el archivo .dmg y arrastre `RustDesk` a `Applications` como a continuación.
|
||||
|
||||

|
||||
|
||||
Asegúrese de haber dejado de ejecutar RustDesk. También asegúrese de salir del servicio RustDesk que se muestra en la bandeja.
|
||||
|
||||

|
||||
|
||||
### Permitir la ejecución de RustDesk
|
||||
|
||||
| Desbloquear para cambiar | Haga clic en "App Store y desarrolladores identificados" |
|
||||
| ---- | ---- |
|
||||
|||
|
||||
|
||||
### Habilitar permisos
|
||||
|
||||
Para capturar la pantalla, debe otorgar `RustDesk` **accesibilidad** permiso y **grabación de pantalla** permiso. RustDesk lo guiará a la ventana de configuración.
|
||||
|
||||
| Ventanas RustDesk | Ventana de configuración |
|
||||
| ---- | ---- |
|
||||
|||
|
||||
|
||||
Si lo ha habilitado en la ventana de configuración, pero RustDesk aún advierte. Elimine RustDesk de las ventanas de configuración por el `-` botón, y haga clic en `+` botón, seleccione RustDesk en `/Applications`.
|
||||
|
||||
| `-` y `+` botón | Seleccione RustDesk |
|
||||
| ---- | ---- |
|
||||
|||
|
||||
|
||||
Copie los pasos anteriores para obtener el permiso de **grabación de pantalla**.
|
||||
|
||||

|
||||
45
content/client/mac/_index.fr.md
Normal file
@@ -0,0 +1,45 @@
|
||||
---
|
||||
title: Mac
|
||||
weight: 3
|
||||
---
|
||||
|
||||
### Installation
|
||||
------
|
||||
|
||||
Ouvrez le fichier .dmg et faites glisser "RustDesk" vers "Applications" comme ci-dessous.
|
||||

|
||||
|
||||
Assurez-vous que vous avez quitté les instance des "RustDesk" en cours d'exécution. Assurez-vous également d'avoir quitter le service "RustDesk" si affiché dans la barre d'état.
|
||||
|
||||

|
||||
|
||||
### Autoriser l'exécution de "RustDesk"
|
||||
|
||||
| Déverrouillez pour modifier | Cliquez sur "App Store et développeurs identifiés" |
|
||||
| ---- | ---- |
|
||||
|||
|
||||
|
||||
### Activer les autorisations
|
||||
|
||||
{{% notice note %}}
|
||||
En raison du changement de politique de sécurité de MacOS, notre API qui capture les entrées du côté local ne fonctionne plus du tout. Vous devez activer l'autorisation "Surveillance des entrées" du côté Mac.
|
||||
Voir ceci: [https://github.com/rustdesk/rustdesk/issues/974#issuecomment-1185644923](https://github.com/rustdesk/rustdesk/issues/974#issuecomment-1185644923)
|
||||
|
||||
Cela ne semble pas être une solution miracle, nous devons résoudre le problème avec notre prochaine version Flutter.
|
||||
{{% /notice %}}
|
||||
|
||||
Pour capturer l'écran, vous devez accorder à "RustDesk" l'autorisation d'**accessibilité** et l'autorisation d'**enregistrement d'écran**. "RustDesk" vous guidera vers la fenêtre des paramètres.
|
||||
|
||||
| Lien vers la configuration accessibilité | Fenêtre configuration accessibilité |
|
||||
| ---- | ---- |
|
||||
|||
|
||||
|
||||
Si vous avez bien activé les permissions dans la fenêtre des paramètres, mais que "RustDesk" vous avertit toujours. Veuillez supprimer "RustDesk" de la liste de la fenêtre paramètres d'accessibilité par le bouton **"-"**, cliquez sur le bouton **"+"** et sélectionnez "RustDesk" dans **"/Applications"**.
|
||||
|
||||
| boutons "-" et "+" | Sélectionnez "RustDesk" |
|
||||
| ---- | ---- |
|
||||
|||
|
||||
|
||||
Veuillez suivre les mêmes étapes que ci-dessus pour l'autorisation **enregistrement d'écran**.
|
||||
|
||||

|
||||
6
content/client/mac/_index.it.md
Executable file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Mac
|
||||
weight: 3
|
||||
---
|
||||
|
||||
[English](/docs/en/manual/mac/)
|
||||
6
content/client/mac/_index.ja.md
Executable file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Mac
|
||||
weight: 3
|
||||
---
|
||||
|
||||
[English](/docs/en/manual/mac/)
|
||||
47
content/client/mac/_index.nl.md
Normal file
@@ -0,0 +1,47 @@
|
||||
---
|
||||
title: Mac
|
||||
weight: 3
|
||||
---
|
||||
|
||||
### Installatie
|
||||
------
|
||||
|
||||
Open het .dmg bestand en sleep `RustDesk` naar `Toepassingen` zoals hieronder.
|
||||
|
||||

|
||||
|
||||
Zorg ervoor dat u alle RustDesk services heeft afgesloten. Zorg er ook voor dat u de RustDesk service in de taakbalk afsluit.
|
||||
|
||||

|
||||
|
||||
### Sta RustDesk toe
|
||||
|
||||
| Ontgrendel om te wijzigen | Klik op "App Store en erkende ontwikkelaars" |
|
||||
| ---- | ---- |
|
||||
|||
|
||||
|
||||
### Machtigingen Inschakelen
|
||||
|
||||
{{% notice note %}}
|
||||
Door de wijziging in het beveiligingsbeleid van MacOS werkt onze api, die de invoer aan lokale zijde vastlegt, niet meer... U moet "Input Monitoring" inschakelen op de lokale Mac.
|
||||
Volg dit
|
||||
[https://github.com/rustdesk/rustdesk/issues/974#issuecomment-1185644923](https://github.com/rustdesk/rustdesk/issues/974#issuecomment-1185644923)
|
||||
|
||||
Het lijkt geen snelle oplossing, we moeten het samen met onze Flutter-versie oplossen.
|
||||
{{% /notice %}}
|
||||
|
||||
Om het scherm vast te leggen moet u `RustDesk` **toegang** en **schermopname** toestemming geven. RustDesk leidt u naar het instellingenvenster.
|
||||
|
||||
| RustDesk Vensters | Instellingen Venster |
|
||||
| ---- | ---- |
|
||||
|||
|
||||
|
||||
Als u het heeft ingeschakeld in het instellingen venster, maar RustDesk waarschuwt nog steeds. Verwijder RustDesk uit het instellingen venster door de `-` knop, en klik op de `+` knop, en selecteer RustDesk in `Toepassingen`.
|
||||
|
||||
| `-` en `+` knop | Selecteer RustDesk |
|
||||
| ---- | ---- |
|
||||
|||
|
||||
|
||||
Kopieer bovenstaande stappen voor **schermopname** toestemming.
|
||||
|
||||

|
||||
6
content/client/mac/_index.pt.md
Executable file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Mac
|
||||
weight: 3
|
||||
---
|
||||
|
||||
[English](/docs/en/manual/mac/)
|
||||
48
content/client/mac/_index.ru.md
Executable file
@@ -0,0 +1,48 @@
|
||||
---
|
||||
title: Mac
|
||||
weight: 3
|
||||
---
|
||||
|
||||
### Установка
|
||||
------
|
||||
|
||||
Откройте файл .dmg и перетащите `RustDesk` в `Applications` как на картинке ниже.
|
||||
|
||||

|
||||
|
||||
Убедитесь, что вы закрыли все запущенные приложения RustDesk. Также убедитесь, что вы закрыли службу RustDesk.
|
||||
|
||||

|
||||
|
||||
### Разрешение на запуск RustDesk
|
||||
|
||||
| Разблокируйте для изменения | Нажмите на "App Store and identified developers" |
|
||||
| ---- | ---- |
|
||||
|||
|
||||
|
||||
### Включение разрешений
|
||||
|
||||
{{% notice note %}}
|
||||
Due to MacOS security policy change, our api which captures input on local side does not work any
|
||||
more. You have to enable "Input Monitoring" permission on local Mac side.
|
||||
Please follow this
|
||||
[https://github.com/rustdesk/rustdesk/issues/974#issuecomment-1185644923](https://github.com/rustdesk/rustdesk/issues/974#issuecomment-1185644923)
|
||||
|
||||
It seems no quick fix, we need to fix together with our Flutter version.
|
||||
{{% /notice %}}
|
||||
|
||||
Чтобы захватывать экран требуются разрешения **accessibility** и **screen recording**. RustDesk поможет их настроить.
|
||||
|
||||
| Окно RustDesk | Окно настроек |
|
||||
| ---- | ---- |
|
||||
|||
|
||||
|
||||
Если разрешения включены, но RustDesk их не видит, то уберите RustDesk из списка при помощи кнопки `-`, затем нажмите кнопку `+` и выберите RustDesk в `/Applications`.
|
||||
|
||||
| Кнопки `-` и `+` | Выбор RustDesk |
|
||||
| ---- | ---- |
|
||||
|||
|
||||
|
||||
Пройдите те же шаги для настройки разрешения **screen recording**.
|
||||
|
||||

|
||||
48
content/client/mac/_index.zh-cn.md
Executable file
@@ -0,0 +1,48 @@
|
||||
---
|
||||
title: Mac
|
||||
weight: 3
|
||||
---
|
||||
|
||||
### 安装
|
||||
------
|
||||
|
||||
打开 .dmg 文件并将 `RustDesk` 拖到 `应用程序`,如下所示。
|
||||
|
||||

|
||||
|
||||
确保您已退出所有正在运行的 RustDesk。还要确保退出托盘上显示的 RustDesk 服务。
|
||||
|
||||

|
||||
|
||||
### 允许 RustDesk 运行
|
||||
|
||||
| 解锁改变 | 点击"App Store and identified developers" |
|
||||
| ---- | ---- |
|
||||
|||
|
||||
|
||||
### 启用权限
|
||||
|
||||
{{% notice note %}}
|
||||
Due to MacOS security policy change, our api which captures input on local side does not work any
|
||||
more. You have to enable "Input Monitoring" permission on local Mac side.
|
||||
Please follow this
|
||||
[https://github.com/rustdesk/rustdesk/issues/974#issuecomment-1185644923](https://github.com/rustdesk/rustdesk/issues/974#issuecomment-1185644923)
|
||||
|
||||
It seems no quick fix, we need to fix together with our Flutter version.
|
||||
{{% /notice %}}
|
||||
|
||||
为了获得捕获屏幕的能力,您需要授予 `RustDesk` **辅助功能** 权限和 **屏幕录制** 权限。 RustDesk 将引导您进入设置窗口。
|
||||
|
||||
| RustDesk 窗口 |设置窗口 |
|
||||
| ---- | ---- |
|
||||
|||
|
||||
|
||||
如果您在设置窗口中启用了它,但 RustDesk 仍然会发出警告。请通过 `-` 按钮从设置窗口中删除 RustDesk,然后单击 `+` 按钮,在 `/Applications` 中选择 RustDesk。
|
||||
|
||||
| `-` 和 `+` 按钮 |选择 RustDesk |
|
||||
| ---- | ---- |
|
||||
|||
|
||||
|
||||
请按照上面相似步骤设置*屏幕录制**权限。
|
||||
|
||||

|
||||
48
content/client/mac/_index.zh-tw.md
Executable file
@@ -0,0 +1,48 @@
|
||||
---
|
||||
title: Mac
|
||||
weight: 3
|
||||
---
|
||||
|
||||
### 安裝
|
||||
------
|
||||
|
||||
打開 .dmg 檔案並將 `RustDesk` 拖到 `應用程式`,如下所示。
|
||||
|
||||

|
||||
|
||||
確保您已退出所有正在執行的 RustDesk。還要確保退出托盤上顯示的 RustDesk 服務。
|
||||
|
||||

|
||||
|
||||
### 允許 RustDesk 執行
|
||||
|
||||
| 解鎖以變更 | 點擊 "App Store 和已確認的開發者" |
|
||||
| ---- | ---- |
|
||||
|||
|
||||
|
||||
### 啟用權限
|
||||
|
||||
{{% notice note %}}
|
||||
MacOS 的安全政策更動,導致我們擷取本機端輸入的 API 失效。您必須在本機 Mac 端啟用 "輸入監測" 權限。
|
||||
|
||||
請遵照
|
||||
[https://github.com/rustdesk/rustdesk/issues/974#issuecomment-1185644923](https://github.com/rustdesk/rustdesk/issues/974#issuecomment-1185644923)
|
||||
|
||||
It seems no quick fix, we need to fix together with our Flutter version.
|
||||
{{% /notice %}}
|
||||
|
||||
若要擷取畫面,您需要授予 `RustDesk` **輔助功能**權限和**畫面錄製**權限。RustDesk 將引導您進入設定視窗。
|
||||
|
||||
| RustDesk 視窗 | 設定視窗 |
|
||||
| ---- | ---- |
|
||||
|||
|
||||
|
||||
如果您在設置視窗中啟用了它,但 RustDesk 仍然發出警告。請通過 `-` 按鈕從設置視窗中刪除 RustDesk,然後單擊 `+` 按鈕,在 `/Applications` 中選擇 RustDesk。
|
||||
|
||||
| `-` 和 `+` 按鈕 | 選擇 RustDesk |
|
||||
| ---- | ---- |
|
||||
|||
|
||||
|
||||
請按照上面相似步驟設置**畫面錄製**權限。
|
||||
|
||||

|
||||
BIN
content/client/mac/images/acc.png
Normal file
|
After Width: | Height: | Size: 9.3 KiB |
BIN
content/client/mac/images/acc2.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
content/client/mac/images/acc3.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
content/client/mac/images/add.png
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
content/client/mac/images/allow.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
content/client/mac/images/allow2.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
content/client/mac/images/dmg.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
content/client/mac/images/screen.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
content/client/mac/images/tray.png
Normal file
|
After Width: | Height: | Size: 8.8 KiB |
21
content/client/windows/_index.en.md
Normal file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Windows
|
||||
weight: 1
|
||||
---
|
||||
|
||||
Install from our [GitHub](github.com/rustdesk/rustdesk)
|
||||
|
||||
### Put config in rustdesk.exe file name (Windows only)
|
||||
|
||||
Change `rustdesk.exe` to rustdesk-`host=<host-ip-or-name>,key=<public-key-string>`.exe, e.g. rustdesk-`host=192.168.1.137,key=xfdsfsd32=32`.exe. You can see the config result in the About Window below.
|
||||
|
||||
<a name="invalidchar"></a>
|
||||
{{% notice note %}}
|
||||
You need to set both `host` and `key`, missing either one will not work.
|
||||
|
||||
Optionally add a `,` (comma) character after the key, before the `.exe` part as a delimiter, to avoid the key being mangled if Windows or the browser renames the file when downloading duplicated names.
|
||||
|
||||
If there are invalid characters in the key which can not be used in a Windows file name, please remove the
|
||||
`id_ed25519` file from your server and restart `hbbs`/`hbbr`. This will cause the `id_ed25519.pub` file to regenerate. You may need to
|
||||
repeat this process until you get valid characters.
|
||||
{{% /notice %}}
|
||||