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

BASH: Basic SED Training

Do you know Sed? If you ask 'who is he', then this little article if…

Linux: How to Set Startup Script

In previous Linux versions, startup scripts can simply be enabled by linking a script into…

Nginx Apache SSL Example

-------------- NGINX -> ** /etc/nginx/sites-available/domainx.conf**server {listen 80;servername xxxxx.domainx.com;return 301 https://$host$requesturi;}server {listen 443 ssl;servername xxxxx.domainx.com;sslcertificate /etc/nginx/ssl/cert_domainx.crt;sslcertificatekey…