Forked from QuiltMeow/install-pulseaudio-module-xrdp.sh
Last active
November 11, 2022 12:00
-
-
Save maulvi/09d2385b0873eaf8f4384e1bc430a9ef to your computer and use it in GitHub Desktop.
Pulse Audio Module XRDP tested on debian 11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt-get update | |
apt-get dist-upgrade -y | |
apt-get install xrdp build-essential git autoconf libtool pkg-config libpulse-dev -y | |
adduser xrdp ssl-cert | |
systemctl restart xrdp | |
cd /root | |
git clone https://github.com/neutrinolabs/pulseaudio-module-xrdp.git | |
cd pulseaudio-module-xrdp/scripts | |
./install_pulseaudio_sources_apt.sh | |
cd .. | |
./bootstrap | |
./configure PULSE_DIR="/root/pulseaudio.src" | |
make | |
make install | |
apt-get install pulseaudio pavucontrol -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment