I am a new Ubuntu user and I want to stream my system sound on my phone via usb. I downloaded soundwire which is a program that allows us to do this. I tested it on my other linux distro and was able to run it. But I can't run it in Ubuntu. Its "executable (program/x-executable)" file. please help me .
1 Answers
I think once you install PortAudio, and maybe libqt5widgets5
, firewall-config
, and pavucontrol
just to be sure, per the INSTALL.txt
instructions, it should work (you will need to issue these from the Terminal [Ctrl
-Alt
-T
], and type your password in):
sudo apt update
sudo apt install -y libportaudio2 libqt5widgets5 pavucontrol firewall-config
You'll need to reconfigure your firewall per the instructions. Launch Firewall from the GUI (typing your password in again), click on the Ports tab, click Add
, and for Port/Port Range
type 59010-59011
, and change the Protocol
to UDP
and click OK
. Go to the top and change Configuration
to Permanent
.
Now launch SoundWireServer from the terminal just to make sure it runs. A window should come up and give a Server Address and say Status: Disconnected
. Bring the app up on your phone and hit the button with the logo; you may have to enter the server address the server supplies. Then the Status
should change to Connected
.
From then on, you can launch SoundWireServer the way you attempted before. You can quit the version running on the Terminal first by typing Ctrl
-C
.

- 146
-
P.S. This definitely works over a local WiFi network, say at home. It says it will work over a 4G/5G network, but I don't see how. – Vercingatorix Jul 05 '23 at 20:03
-
-
You're welcome; my pleasure. If you could mark the question as Accepted (this is a check mark to the left of the answer), that's thanks enough! – Vercingatorix Jul 05 '23 at 20:06
https://georgielabs.net/
– POT Jul 05 '23 at 18:57executable (program/x-executable)
file and opened the application . on ubuntu i downloaded the exact program and now i cant open it . when i click on it nothing happens – POT Jul 05 '23 at 19:08INSTALL.txt
? – Vercingatorix Jul 05 '23 at 19:10program/x-executable
) file and opened the application". I'm a little confused about theprogram/x-executable
part. The files on the page you supplied aretar.gz
archives, notprogram/x-executable
files, and I'm not sure where you found out this file was aprogram/x-executable
type of file. Even if you double clicked on thetar.gz
file you downloaded, on my system, there are noprogram/x-executable
file types listed, only anunknown
type forSoundWireServer
. Is that the file you clicked on? – Vercingatorix Jul 05 '23 at 19:21executable (program/x-executable)
file . it worked on my other linux distro and loaded the program but not working on ubuntu . – POT Jul 05 '23 at 19:23SoundwireServer
itsexecutable (program/x-executable)
isnt it ? – POT Jul 05 '23 at 19:27SoundWireServer
; thanks. Have you used a terminal before (Ctrl
-Alt
-T
)? – Vercingatorix Jul 05 '23 at 19:28cd
command (e.g.cd ~/Downloads/SoundWireServer
) to navigate to the directory where you extracted the files. (Make sure you actually extracted them by clicking onExtract
or usingtar
from the command-line, rather than just viewing the archive by double-clicking on it in the desktop.) This directory I expected ends inSoundWireServer
. From that directory, type./SoundWireServer
, and tell me what it outputs. – Vercingatorix Jul 05 '23 at 19:34extract
button so i changed my directory to~/Desktop/SoundWireServer
and typed./SoundWireServer
. and its the error :./SoundWireServer: error while loading shared libraries: libportaudio.so.2: cannot open shared object file: No such file or directory
– POT Jul 05 '23 at 19:44