Bakshara wrote:> Is it possible to create multiple user accounts and install a different
version of wine in each one?
Yes, you can use different Wine versions at the same time by different users. To
do that you either install different Wine versions into different directories or
you don't install Wine at all and run it directly from the build directory.
First method is some-what better - you save lots of space.
First method:
Code:
cd $HOME
git clone git://source.winehq.org/git/wine.git
cd wine.git
git checkout wine-1.3.18
./configure --prefix=/usr/local/wine/wine-1.3.18 && make && sudo
make install
make distclean
git checkout wine-1.3.17
./configure --prefix=/usr/local/wine/wine-1.3.17 && make && sudo
make install