Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gamersalpha/3c62ddfc1aaed331308cf6e53a5d09e5 to your computer and use it in GitHub Desktop.
Save gamersalpha/3c62ddfc1aaed331308cf6e53a5d09e5 to your computer and use it in GitHub Desktop.
Hello there so i m using Kali linux :
version : 2021 -1
First i do this for the sound :
```
# Step 1 - Install Some PreReqs
sudo apt-get install git libpulse-dev autoconf m4 intltool build-essential dpkg-dev -y
sudo apt build-dep pulseaudio -y
# Download pulseaudio source in /tmp directory - Do not forget to enable source repositories
cd /tmp
sudo apt source pulseaudio
# Compile
pulsever=$(pulseaudio --version | awk '{print $2}')
cd /tmp/pulseaudio-$pulsever
sudo ./configure
# Create xrdp sound modules
sudo git clone https://github.com/neutrinolabs/pulseaudio-module-xrdp.git
cd pulseaudio-module-xrdp
sudo ./bootstrap
sudo ./configure PULSE_DIR="/tmp/pulseaudio-$pulsever"
sudo make
#copy files to correct location (as defined in /etc/xrdp/pulse/default.pa)
cd /tmp/pulseaudio-$pulsever/pulseaudio-module-xrdp/src/.libs
sudo install -t "/var/lib/xrdp-pulseaudio-installer" -D -m 644 *.so
```
andi install xrdp :
```
sudo apt update
sudo apt install xrdp
sudo systemctl enable xrdp
sudo systemctl restart xrdp
```
the xrdp works but i still not got sound, can u tell me what is wrong please
to got more information :
![image](https://user-images.githubusercontent.com/32466950/118013151-1a9b2f00-b352-11eb-9ea1-4bfae8238d55.png)
the session rdp works and looks like sound works to, but i heard nothing :/
webologie :
https://c-nergy.be/blog/?p=13655
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment