Sandsound
March 24th, 2008, 09:49 AM
On my website ( http://www.sandgreen.dk/index.php?side=linux_wineasio ) I have made a simplyfied guide on how to install wineasio, mostly for my own amusement.
I'd like to make it even more simple, so I'm trying to make a script that does this :
$ sudo apt-get -y install wine wine-dev libjack0.100.0-dev qjackctl build-essential
winecfg : click the audio-tab, make shure that only the "alsa" is checked
Download a precompiled wineasio.dll.so (version 0.7.3) and copy the file to the /usr/lib/wine/ folder
$ regsvr32 wineasio.dll
$ sudo ln -s /usr/lib/libjack-0.100.0.so.0 /usr/lib/libjack.so.0
This is my script so far (by the way... my first script ever :-) ) :
#!/bin/bash
# by Sandy Sandgreen
# Install wineasio 0.7.3 on Ubuntu 8.04
echo "This script will download and install wineasio ... this might take awhile, please be patient" ;
echo "First it will install the latest wine, jack and some other usefull stuff" ;
sudo apt-get -y install wine wine-dev libjack0.100.0-dev qjackctl build-essential
echo "Then it will download the wineasio driver and place it in your wine-folder" ;
mkdir -p ~/wineasio_tmp
cd ~/wineasio_tmp
wget http://www.sandgreen.dk/xt2/files/wineasio_0.7.3/wineasio.dll.so
chmod u+rwx wineasio.dll.so
sudo mv wineasio.dll.so /usr/lib/wine/
rm -Rf ~/wineasio_tmp
regsvr32 wineasio.dll
sudo ln -s /usr/lib/libjack-0.100.0.so.0 /usr/lib/libjack.so.0
echo "All done :-) ... Now you can use the win-version of EnergyXT2 (or Reaper) with wineasio" ;
exit
My problem is that I don't know how to check if wine is set to alsa in the audio-tab, and how to corect this if it isnt ?
I'd like to make it even more simple, so I'm trying to make a script that does this :
$ sudo apt-get -y install wine wine-dev libjack0.100.0-dev qjackctl build-essential
winecfg : click the audio-tab, make shure that only the "alsa" is checked
Download a precompiled wineasio.dll.so (version 0.7.3) and copy the file to the /usr/lib/wine/ folder
$ regsvr32 wineasio.dll
$ sudo ln -s /usr/lib/libjack-0.100.0.so.0 /usr/lib/libjack.so.0
This is my script so far (by the way... my first script ever :-) ) :
#!/bin/bash
# by Sandy Sandgreen
# Install wineasio 0.7.3 on Ubuntu 8.04
echo "This script will download and install wineasio ... this might take awhile, please be patient" ;
echo "First it will install the latest wine, jack and some other usefull stuff" ;
sudo apt-get -y install wine wine-dev libjack0.100.0-dev qjackctl build-essential
echo "Then it will download the wineasio driver and place it in your wine-folder" ;
mkdir -p ~/wineasio_tmp
cd ~/wineasio_tmp
wget http://www.sandgreen.dk/xt2/files/wineasio_0.7.3/wineasio.dll.so
chmod u+rwx wineasio.dll.so
sudo mv wineasio.dll.so /usr/lib/wine/
rm -Rf ~/wineasio_tmp
regsvr32 wineasio.dll
sudo ln -s /usr/lib/libjack-0.100.0.so.0 /usr/lib/libjack.so.0
echo "All done :-) ... Now you can use the win-version of EnergyXT2 (or Reaper) with wineasio" ;
exit
My problem is that I don't know how to check if wine is set to alsa in the audio-tab, and how to corect this if it isnt ?