Skip to content

Instantly share code, notes, and snippets.

@qrkourier
Last active December 11, 2022 22:24
Show Gist options
  • Save qrkourier/fc2621e324b77b3c547468d010e6f936 to your computer and use it in GitHub Desktop.
Save qrkourier/fc2621e324b77b3c547468d010e6f936 to your computer and use it in GitHub Desktop.
build/install x11spice on Debian
#!/usr/bin/env bash
set -euo pipefail
sudo apt install \
build-essential \
libspice-server1 \
xutils-dev \
libxcb-damage0-dev \
libxcb-xtest0-dev \
libxcb-shm0-dev \
libxcb-util-dev \
libxcb-xkb-dev \
libspice-client-gtk-3.0-dev \
libspice-server-dev \
dh-autoreconf
git clone https://gitlab.freedesktop.org/spice/x11spice.git
cd ./x11spice
./autogen.sh
make
sudo make install
which x11spice
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment