Το Ubuntu 9.10 είχε πρόβλημα να συνεργαστεί με τον ήχο από το tuner που χρησιμοποίησα.
 Σε περίπτωση που αντιμετωπίσεις το ίδιο πρόβλημα δοκίμασε το παρακάτω.
 Τρέξε σε μια κονσόλα το
 gconf-editor
 και βρες το /apps/gnomeradio
 εκεί θα πρέπει να αλλάξεις τις παραμέτρους ως εξής
 device /dev/radio0
 driver v4l2
 mixer pcm
 mixer-device /dev/mixer
 δώσε σε ένα τερματικό
 sudo mv “/usr/bin/gnomeradio” “/usr/bin/gnomeradio.orig”
 φτιάξε και το παρακάτω script
 sudo touch  /usr/bin/gnomeradio
 sudo chmod +x /usr/bin/gnomeradio
 gksudo gedit /usr/bin/gnomeradio
 Γράψε τα παρακάτω μέσα
#!/bin/sh # 12-13-2009 # gnomeradio with Sound and Mixer (c) Panagiotis Skarvelis # sl45sms@yahoo.gr # # Copyright: Public Domain # License: GNU GPL http://www.gnu.org/licenses/gpl.html # # Please send any modifications or suggestions to the above email address. # PLEASE NOTE # You have to find first the device and ctl that you want to use, in the case of this script # hw:1 is the sound output from tuner sox -c 2 -s -r 48000 -t alsa hw:1 -t alsa -r 48000 -d & gnomeradio.orig wait gnomeradio.orig t=`pidof sox`; kill $t; #change here if you wish amixer -c 0 sset PCM 80%,80% unmute
