Re: [Pharo-dev] Sound on Ubuntu Problems

2013-09-06 Thread J.F. Rick
SUCCESS! I installed the libpulse0 package. LDD showed that the library was linked to the i386 libraries. It worked. It seems like someone needs to update the other sound packages to point to the i386 packages rather than to default to the x86_64 ones. Thanks, Jeff On Thu, Sep 5, 2013 at 3:52

Re: [Pharo-dev] Sound on Ubuntu Problems

2013-09-05 Thread Damien Cassou
On Wed, Sep 4, 2013 at 12:37 PM, J.F. Rick s...@je77.com wrote: apt-get install libpulse-dev the *-dev packages are only useful when you compile packages. If you don't want to compile C files, you only need the non -dev packages (libpulse0). -- Damien Cassou

Re: [Pharo-dev] Sound on Ubuntu Problems

2013-09-04 Thread J.F. Rick
Hmm. Did this get sent or was it filtered? It doesn't seem to be in my inbox for the pharo-dev list. Cheers, Jeff On Tue, Sep 3, 2013 at 5:03 PM, J.F. Rick s...@je77.com wrote: I'm using Pharo 2.0 on Ubuntu 13.10 and I can't seem to get sound working. Getting sound to work on Linux seems to

Re: [Pharo-dev] Sound on Ubuntu Problems

2013-09-04 Thread Marcus Denker
On Sep 4, 2013, at 11:22 AM, J.F. Rick s...@je77.com wrote: Hmm. Did this get sent or was it filtered? It doesn't seem to be in my inbox for the pharo-dev list. It arrived… Cheers, Jeff On Tue, Sep 3, 2013 at 5:03 PM, J.F. Rick s...@je77.com wrote: I'm using Pharo 2.0 on

Re: [Pharo-dev] Sound on Ubuntu Problems

2013-09-04 Thread Guillermo Polito
Hi! If the modules are not printed, that probably means that they cannot be loaded :). (Bah, I assume that by looking at the vm code that does that [1]). So, first thing you can do is to see the output of stderr. Second, you can try to do an ldd [2] to the vm-sound-ALSA.so library to check the

Re: [Pharo-dev] Sound on Ubuntu Problems

2013-09-04 Thread J.F. Rick
Thanks. When trying to load the ALSA sound, stderr just reports could not find module vm-sound-ALSA. Doing an ldd on the vm-sound-ALSA.so included with the Pharo VM, I get: linux-gate.so.1 = (0xf76e9000) libc.so.6 = /lib/i386-linux-gnu/libc.so.6 (0xf7515000)

Re: [Pharo-dev] Sound on Ubuntu Problems

2013-09-04 Thread Guillermo Polito
I'd say it's pretty strange that the vm-sound-ALSA needs almost nothing... From the code I'd think It'd need to bind against asound [1], as the squeak vm says in libasound.so.2 = /usr/lib/x86_64-linux-gnu/libasound.so.2 (0x7f3c507ba000) [1]

Re: [Pharo-dev] Sound on Ubuntu Problems

2013-09-04 Thread J.F. Rick
Indeed. Yet the Squeak version does not load either. Cheers, Jeff On Wed, Sep 4, 2013 at 12:49 PM, Guillermo Polito guillermopol...@gmail.com wrote: I'd say it's pretty strange that the vm-sound-ALSA needs almost nothing... From the code I'd think It'd need to bind against asound [1], as

Re: [Pharo-dev] Sound on Ubuntu Problems

2013-09-04 Thread Guillermo Polito
Do you have libasound installed for i386? cause the one that outputs ldd looks like in folder for x86_64 On Wed, Sep 4, 2013 at 1:06 PM, J.F. Rick s...@je77.com wrote: Indeed. Yet the Squeak version does not load either. Cheers, Jeff On Wed, Sep 4, 2013 at 12:49 PM, Guillermo Polito

Re: [Pharo-dev] Sound on Ubuntu Problems

2013-09-04 Thread J.F. Rick
Well. I'm not that familiar with these C dependency things. It seems like the i386 ones were not installed. I did sudo apt-get install libasound2:i386 and sudo apt-get install libasound2-dev:i386 and sudo apt-get install libasound2-plugins:i386 to install it. While that seems to have worked to

[Pharo-dev] Sound on Ubuntu Problems

2013-09-03 Thread J.F. Rick
I'm using Pharo 2.0 on Ubuntu 13.10 and I can't seem to get sound working. Getting sound to work on Linux seems to be a common problem. While I've checked the archive for solutions, none of them work for me. I've investigated a bit and here's what I've found: Inside of the /usr/lib/pharo-vm