1
					Laitealue / Vs: Bluetooth GPS ja COM- portit
« : 15.08.09 - klo:13.17 »
					Joo näin ykisnkertaista se olikin, kiitos.
					
				Ubuntu 24.04.3 LTS | Lataa ja asenna | Tutustu yhteisöön | Blogi | Yritysten tarjoamat palvelut
Uusimmat julkaisut: 24.04.3 LTS (suositeltu, 7.8.2025) ja 25.10 (9.10.2025).
Tässä osiossa voit tarkastella kaikkia tämän jäsenen viestejä. Huomaa, että näet viestit vain niiltä alueilta, joihin sinulla on pääsy.
korpraali@laptop:~$ lsmod |grep snd
snd_hda_intel          17936  2
snd_hda_codec          88064  1 snd_hda_intel
snd_pcm_oss            53792  0
snd_mixer_oss          18944  1 snd_pcm_oss
snd_pcm                89992  3 snd_hda_intel,snd_hda_codec,snd_pcm_oss
snd_timer              25220  1 snd_pcm
snd                    56292  10 snd_hda_intel,snd_hda_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer
soundcore              10208  1 snd
snd_page_alloc         10760  2 snd_hda_intel,snd_pcm
					Edit: Ai Dapperista olikin puhe... Heh... Noista Beta-versioin bugeista tai käyttäjäongelmista on aika turhaa jutella. Bugi-raportit sinne, minne ne kuuluvat.
sudo ./configure --with-oss=yes --with-cards=hda-intelThe file dir/include/linux/version.h does not exist.
Please install the package with full kernel sources for your distribution
or use --with-kernel=dir option to specify another directory with kernel
sources (default is /usr/src/linux).Failed to open http://akastreaming.yle.fi/broadplay/yle/broad_event_1.asx./configure --with-oss=yes --with-cards=hda-intel --with-kernel=/usr/src/linux-headers-2.6.12-10-386/./configure --with-oss=yes --with-cards=hda-intel --with-kernel=/usr/src/linux-2.6.15/#! /bin/sh
# $Id: dns-clean,v 1.1.1.1 2004/05/07 03:12:59 john Exp $
# dns-clean by John Hasler 1999-2003
# Any possessor of a copy of this program may treat it as if it
# were in the public domain.  I waive all rights.
# This script should be run at bootup to clean up any mess left by 0dns-up.
# It should be run before ppp is started.
# It should never be run while ppp is up.
PATH=/sbin:/bin:/usr/sbin:/usr/bin
test -f /usr/sbin/pppconfig || exit 0
test -f /etc/ppp/ip-down.d/0dns-down || exit 0
. /lib/lsb/init-functions
case "$1" in
  start)
	log_begin_msg "Restoring resolver state..."
	/etc/ppp/ip-down.d/0dns-down "0dns-clean"
	log_end_msg $?
	;;
  stop|restart|force-reload)
	;;
  *)
        ;;
esac
exit 0