Posted On April 1, 2019

Windows Emulator inside Ubuntu 9.10

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Windows Emulator inside Ubuntu 9.10
# Add the Wine repository
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get install wine1.2
cd /home/[username]

# this installs winetricks and fixes the  "unable to find a volume for file extraction" error
wget && sh winetricks volnum

# this installs dotnet2.0 sp2,, set wine to XP emulation and a few other things
sh winetricks d3dx9 ie7 mdac28 jet40 mono24 vb6runsp6 wsh56 wsh56vb fakeie6 winxp volnum dotnet20sp2

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Linux User and Group General Operations

# Add new useruseradd tomcruise# Create new groupgroupadd webadmins# Add user to groupusermod -a -G…

Linux: Create a Shell Script to Watch Services

# create a script to watch services (notice the regex escape for special chars) sudo…

How to Install Selenium for Python on Windows or Linux

Windows # This error would occur if pip is not up to date PS C:\WINDOWS\system32>…