cool_zero schreef op 05 oktober 2004 @ 19:28:
Mooi dat het werkt. En je moet gewoon Wolfenstein Enemy Territory gaan spelen, dat heeft tenminste gewoon linux binaries en hoef je niet onder wine te draaien

Maar als je echt cs wilt spelen dan zijn er waarschijnlijk genoeg topics(got/google) waarin optimalisaties voor cs met winex zijn te vinden.
woei ik heb na jou reply maar ff Enemy Territory geinstalleerd, en ik moet zeggen dat het een geinig is voor een gratis spel

aleen geen geluid, ik dacht dat het aan cs lag maar niet dus.
Ik ik wel geluid in amsn/kde/xmms etc maar zodra ik een spel start heb ik totaal geen geluid, soms aleen in het menu. iets blokkeerd mijn geluidskaart. als ik artsd
kill heb ik wel geluid in tuxracer maar niet in ET en CS

meerder gamez nog niet geprobeerd..
hoe laad ik de alsa sound driver? heb hem geinstaleerd via apt-get install alsa, maar als ik hem in config scherm van kde selecteer zegt ie; Error while initializing the sound driver;
dit is mijn modules.confg
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
| ### This file is automatically generated by update-modules"
#
# Please do not edit this file directly. If you want to change or add
# anything please take a look at the files in /etc/modutils and read
# the manpage for update-modules.
#
### update-modules: start processing /etc/modutils/0keep
# DO NOT MODIFY THIS FILE!
# This file is not marked as conffile to make sure if you upgrade modutils
# it will be restored in case some modifications have been made.
#
# The keep command is necessary to prevent insmod and friends from ignoring
# the builtin defaults of a path-statement is encountered. Until all other
# packages use the new `add path'-statement this keep-statement is essential
# to keep your system working
keep
### update-modules: end processing /etc/modutils/0keep
### update-modules: start processing /etc/modutils/actions
# Special actions that are needed for some modules
# The BTTV module does not load the tuner module automatically,
# so do that in here
post-install bttv insmod tuner
post-remove bttv rmmod tuner
### update-modules: end processing /etc/modutils/actions
### update-modules: start processing /etc/modutils/aliases
# Aliases to tell insmod/modprobe which modules to use
# Uncomment the network protocols you don't want loaded:
# alias net-pf-1 off # Unix
# alias net-pf-2 off # IPv4
# alias net-pf-3 off # Amateur Radio AX.25
# alias net-pf-4 off # IPX
# alias net-pf-5 off # DDP / appletalk
# alias net-pf-6 off # Amateur Radio NET/ROM
# alias net-pf-9 off # X.25
# alias net-pf-10 off # IPv6
# alias net-pf-11 off # ROSE / Amateur Radio X.25 PLP
# alias net-pf-19 off # Acorn Econet
alias char-major-10-175 agpgart
alias char-major-10-200 tun
alias char-major-81 bttv
alias char-major-108 ppp_generic
alias /dev/ppp ppp_generic
alias tty-ldisc-3 ppp_async
alias tty-ldisc-14 ppp_synctty
alias ppp-compress-21 bsd_comp
alias ppp-compress-24 ppp_deflate
alias ppp-compress-26 ppp_deflate
# Crypto modules (see http://www.kerneli.org/)
alias loop-xfer-gen-0 loop_gen
alias loop-xfer-3 loop_fish2
alias loop-xfer-gen-10 loop_gen
alias cipher-2 des
alias cipher-3 fish2
alias cipher-4 blowfish
alias cipher-6 idea
alias cipher-7 serp6f
alias cipher-8 mars6
alias cipher-11 rc62
alias cipher-15 dfc2
alias cipher-16 rijndael
alias cipher-17 rc5
### update-modules: end processing /etc/modutils/aliases
### update-modules: start processing /etc/modutils/alsa-base
above snd-pcm snd-pcm-oss
above snd-mixer snd-mixer-oss
above snd-seq snd-seq-oss
### update-modules: end processing /etc/modutils/alsa-base
### update-modules: start processing /etc/modutils/apm
alias char-major-10-134 apm
alias /dev/apm_bios /dev/misc/apm_bios
alias /dev/misc/apm_bios apm
### update-modules: end processing /etc/modutils/apm
### update-modules: start processing /etc/modutils/paths
# This file contains a list of paths that modprobe should scan,
# beside the ones that are compiled into the modutils tools
# themselves.
### update-modules: end processing /etc/modutils/paths
### update-modules: start processing /etc/modutils/setserial
#
# This is what I wanted to do, but logger is in /usr/bin, which isn't loaded
# when the module is first loaded into the kernel at boot time!
#
#post-install serial /etc/init.d/setserial start | logger -p daemon.info -t "setserial-module reload"
#pre-remove serial /etc/init.d/setserial stop | logger -p daemon.info -t "setserial-module uload"
#
alias /dev/tts serial
alias /dev/tts/0 serial
alias /dev/tts/1 serial
alias /dev/tts/2 serial
alias /dev/tts/3 serial
post-install serial /etc/init.d/setserial modload > /dev/null 2> /dev/null
pre-remove serial /etc/init.d/setserial modsave > /dev/null 2> /dev/null
### update-modules: end processing /etc/modutils/setserial
### update-modules: start processing /etc/modutils/arch/i386
alias parport_lowlevel parport_pc
alias char-major-10-144 nvram
alias binfmt-0064 binfmt_aout
alias char-major-10-135 rtc
### update-modules: end processing /etc/modutils/arch/i386 |
lsmod
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
| Module Size Used by
emu10k1 71812 0
sound 75308 1 emu10k1
snd_seq_oss 29440 0
snd_seq_midi_event 7552 1 snd_seq_oss
snd_seq 46608 4 snd_seq_oss,snd_seq_midi_event
fglrx 219580 9
ipv6 229764 8
ehci_hcd 27908 0
tsdev 7168 0
mousedev 9996 1
usbhid 28864 0
ohci_hcd 19460 0
usbcore 104164 5 ehci_hcd,usbhid,ohci_hcd
snd_intel8x0 33068 0
snd_ac97_codec 59268 1 snd_intel8x0
snd_pcm_oss 48168 0
snd_mixer_oss 16640 1 snd_pcm_oss
snd_pcm 85384 2 snd_intel8x0,snd_pcm_oss
snd_timer 23172 2 snd_seq,snd_pcm
snd_page_alloc 11144 2 snd_intel8x0,snd_pcm
snd_mpu401_uart 7296 1 snd_intel8x0
snd_rawmidi 23204 1 snd_mpu401_uart
snd_seq_device 7944 3 snd_seq_oss,snd_seq,snd_rawmidi
snd 50660 12 snd_seq_oss,snd_seq_midi_event,snd_seq,snd_intel8x0,snd_ac97_codec,
snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer,snd_mpu401_uart,snd_rawmidi,snd_seq_device
shpchp 87148 0
pciehp 83948 0
pci_hotplug 30640 2 shpchp,pciehp
sis_agp 8068 1
agpgart 31784 1 sis_agp
floppy 54992 0
analog 10784 0
gameport 4736 2 snd_intel8x0,analog
parport_pc 31936 0
parport 37320 1 parport_pc
pcspkr 3816 0
evdev 9088 0
i810_audio 33300 0
ac97_codec 16908 2 emu10k1,i810_audio
soundcore 9824 4 emu10k1,sound,snd,i810_audio
sis900 18436 0
crc32 4608 1 sis900
capability 4872 0
commoncap 7168 1 capability
ide_cd 38176 0
cdrom 35740 1 ide_cd
rtc 12088 0
ext3 109544 1
jbd 54552 1 ext3
ide_generic 1664 0
sis5513 15240 1
ide_disk 16768 3
ide_core 125156 4 ide_cd,ide_generic,sis5513,ide_disk
unix 25908 284
font 8576 0
vesafb 6688 0
cfbcopyarea 3840 1 vesafb
cfbimgblt 3200 1 vesafb
cfbfillrect 3712 1 vesafb |
[
Voor 119% gewijzigd door
naps op 06-10-2004 13:53
]