so in the setup program, you do not have a field saying
"sound card configuration" ?
Nope. Just
1 2 3 4 5 6 7 8
| | Authentication configuration │ │ Firewall configuration │ │ Keyboard configuration │ │ Mouse configuration │ │ Network configuration │ │ Printer configuration │ │ System services │ │ Timezone configuration |
try typing
/sbin/lsmod
This shows info about the modules that are loaded
You should have something simular to this in the list that is printed.
emu10k1 60832 2 (autoclean)
ac97_codec 12256 0 (autoclean) [emu10k1]
sound 69260 0 (autoclean) [emu10k1]
soundcore 6212 7 (autoclean) [emu10k1 sound]
1 2 3
| i810_audio 25224 0 (autoclean) ac97_codec 13416 0 (autoclean) [i810_audio] soundcore 6500 2 (autoclean) [i810_audio] |
Ok? Sound module is missing. I found the following in /etc/modules.conf:
1 2 3 4
| alias sound-slot-0 i810_audio post-install sound-slot-0 /bin/aumix-minimal -f /etc/.aumixrc -L >/dev/null 2>&1 || : pre-remove sound-slot-0 /bin/aumix-minimal -f /etc/.aumixrc -S >/dev/null 2>&1 || : |
Are you sure your classpath and path are setup correctly?
How did you install j3d - in a seperate directory or in the same direcotyr as your standard java install?
If its in the same directory then all you need to do is point the PATH like the following in your .bash_profile (this is in your home directory)
export PATH
#Java 1.4.1_01
export PATH=/usr/java/j2sdk1.4.1_01/bin:$PATH
export PATH=/usr/java/j2sdk1.4.1_01/jre/bin:$PATH
export PATH=/usr/java/j2sdk1.4.1_01/include:$PATH
How can I be sure?? But anyway, I have them in my path (except include!) I installed J3D to /usr/java/j2sdk1.4.2/ and added a setup script to /etc/profile.d
Another more general question: does LD_LIBRARY_PATH still play any role? How are the libs from /usr/java/j2sdk1.4.2/jre/lib/i386/ found at all?
If you have it in another dir, then make sure you include that in your path.
[/quote]