doc.rustdesk.com/content/dev/build/linux/_index.de.md

89 lines
2.8 KiB
Markdown
Raw Normal View History

2022-04-12 06:43:15 +02:00
---
title: Linux
weight: 10
---
2023-10-24 22:02:56 +02:00
### Abhängigkeiten
2022-04-12 06:43:15 +02:00
2023-03-03 22:11:36 +01:00
Desktop-Versionen nutzen [Sciter](https://sciter.com/) für die Benutzeroberfläche, bitte laden Sie die dynamische Bibliothek Sciter selbst herunter.
2022-04-12 06:43:15 +02:00
[Windows](https://raw.githubusercontent.com/c-smile/sciter-sdk/master/bin.win/x64/sciter.dll) |
[Linux](https://raw.githubusercontent.com/c-smile/sciter-sdk/master/bin.lnx/x64/libsciter-gtk.so) |
2023-01-14 23:13:24 +01:00
[macOS](https://raw.githubusercontent.com/c-smile/sciter-sdk/master/bin.osx/libsciter.dylib)
2022-04-12 06:43:15 +02:00
2023-10-24 22:02:56 +02:00
### Grobe Schritte zum Erstellen
2022-04-12 06:43:15 +02:00
2023-01-14 23:13:24 +01:00
- Bereiten Sie Ihre Rust-Entwicklungsumgebung und Ihre C++-Build-Umgebung vor
2022-04-12 06:43:15 +02:00
2023-01-14 23:13:24 +01:00
- Installieren Sie [vcpkg](https://github.com/microsoft/vcpkg) und setzen Sie die Umgebungsvariable `VCPKG_ROOT` korrekt
2022-04-12 06:43:15 +02:00
2023-05-21 12:56:24 +02:00
- Windows: `vcpkg install libvpx:x64-windows-static libyuv:x64-windows-static opus:x64-windows-static aom:x64-windows-static`
- Linux/macOS: `vcpkg install
2022-04-12 06:43:15 +02:00
2023-01-14 23:13:24 +01:00
- Nutzen Sie `cargo run`
2022-04-12 06:43:15 +02:00
2023-10-24 22:02:56 +02:00
### Auf Linux erstellen
2022-04-12 06:43:15 +02:00
2023-10-24 22:02:56 +02:00
#### Ubuntu 18 (Debian 10)
2022-04-12 06:43:15 +02:00
```sh
sudo apt install -y g++ gcc git curl wget nasm yasm libgtk-3-dev clang libxcb-randr0-dev libxdo-dev libxfixes-dev libxcb-shape0-dev libxcb-xfixes0-dev libasound2-dev libpulse-dev cmake
```
2023-10-24 22:02:56 +02:00
#### Fedora 28 (CentOS 8)
2022-04-12 06:43:15 +02:00
```sh
sudo yum -y install gcc-c++ git curl wget nasm yasm gcc gtk3-devel clang libxcb-devel libxdo-devel libXfixes-devel pulseaudio-libs-devel cmake alsa-lib-devel
```
2023-10-24 22:02:56 +02:00
#### Arch Linux (Manjaro)
2022-04-12 06:43:15 +02:00
```sh
sudo pacman -Syu --needed unzip git cmake gcc curl wget yasm nasm zip make pkg-config clang gtk3 xdotool libxcb libxfixes alsa-lib pulseaudio
```
2023-10-24 22:02:56 +02:00
#### vcpkg installieren
2022-04-12 06:43:15 +02:00
```sh
git clone https://github.com/microsoft/vcpkg
cd vcpkg
git checkout 2023.10.19
2022-04-12 06:43:15 +02:00
cd ..
vcpkg/bootstrap-vcpkg.sh
export VCPKG_ROOT=$PWD/vcpkg
vcpkg/vcpkg install --x-install-root="$VCPKG_ROOT/installed"
2022-04-12 06:43:15 +02:00
```
2023-10-24 22:02:56 +02:00
#### libvpx reparieren (für Fedora)
2022-04-12 06:43:15 +02:00
```sh
cd vcpkg/buildtrees/libvpx/src
cd *
./configure
sed -i 's/CFLAGS+=-I/CFLAGS+=-fPIC -I/g' Makefile
sed -i 's/CXXFLAGS+=-I/CXXFLAGS+=-fPIC -I/g' Makefile
make
cp libvpx.a $VCPKG_ROOT/installed/x64-linux/lib/
2022-04-12 06:43:15 +02:00
cd
```
2023-10-24 22:02:56 +02:00
#### Erstellen
2022-04-12 06:43:15 +02:00
```sh
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source $HOME/.cargo/env
git clone https://github.com/rustdesk/rustdesk
cd rustdesk
mkdir -p target/debug
wget https://raw.githubusercontent.com/c-smile/sciter-sdk/master/bin.lnx/x64/libsciter-gtk.so
mv libsciter-gtk.so target/debug
# Note: VCPKG_ROOT still set
cargo run
2022-04-12 06:43:15 +02:00
```
2023-10-24 22:02:56 +02:00
#### Wayland zu X11 ändern (Xorg)
2022-04-12 06:43:15 +02:00
2023-09-09 22:00:28 +02:00
~~RustDesk unterstützt Wayland nicht.~~ Lesen Sie diese [Anleitung](https://docs.fedoraproject.org/en-US/quick-docs/configuring-xorg-as-default-gnome-session/), um Xorg als Standard-GNOME-Sitzung zu konfigurieren.
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.