-
-
Notifications
You must be signed in to change notification settings - Fork 2
Arch Linux Screen Sharing
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to screen sharing on Arch Linux, including Wayland screen sharing, X11 screen sharing, and application screen sharing.
Install PipeWire:
# Install PipeWire
sudo pacman -S pipewire pipewire-pulse pipewire-alsa
# Install screen sharing
sudo pacman -S xdg-desktop-portal xdg-desktop-portal-gnomeEnable screen sharing:
# Enable services
systemctl --user enable pipewire pipewire-pulse
systemctl --user start pipewire pipewire-pulseInstall sharing tools:
# Install VNC
sudo pacman -S tigervnc
# Or use x11vnc
sudo pacman -S x11vncSetup x11vnc:
# Start x11vnc
x11vnc -display :0 -auth guess
# With password
x11vnc -display :0 -auth guess -passwd passwordInstall OBS:
# Install OBS
sudo pacman -S obs-studio
# Stream or record
obsInstall clients:
# Zoom
yay -S zoom
# Teams
yay -S teamsCheck permissions:
# Check PipeWire
systemctl --user status pipewireCheck portal:
# Check portal
systemctl --user status xdg-desktop-portalThis guide covered Wayland, X11, and application screen sharing.
- Arch Linux Remote Desktop - Remote access
- Arch Linux Audio Configuration - Audio setup
- ArchWiki Screen Sharing: https://wiki.archlinux.org/title/Screen_sharing
This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.