4

I do most of my work over ssh on a remote linux server where I also keep most of my files. I'd like to be able to hear any sounds that normally would be on the PC speaker. Is there a way to have sound be sent through my ssh session along with the terminal display?

r4.
  • 495
devnill
  • 210

1 Answers1

3

You can use pulseaudio for streaming audio.

But i would suggest mounting remote filesystem on a local folder using sshfs and playing files from there.

mkdir mountfolder
sshfs username@remotehost:/ mountfolder
daya
  • 2,619