Project

General

Profile

Wine » History » Version 23

Per Amundsen, 11/14/2016 02:04 AM

1 2 Per Amundsen
{{>toc}}
2
3 1 Per Amundsen
h1. Wine
4
5 3 Per Amundsen
Installing AdiIRC in "Wine":https://www.winehq.org/ on 64 bit Ubuntu and OS X.
6 1 Per Amundsen
7 16 Per Amundsen
"Wine":https://www.winehq.org is a Windows compatibility layer which allows you to run many Windows programs on Linux/OS X.
8 13 Per Amundsen
9 16 Per Amundsen
"Winetricks":https://github.com/Winetricks/winetricks is a script to help you install various Windows components and programs.
10 13 Per Amundsen
11 2 Per Amundsen
h2. Install "Wine":https://www.winehq.org/
12 1 Per Amundsen
13 5 Per Amundsen
On Ubuntu/Debian Type:
14 1 Per Amundsen
15
<pre>
16
apt-get install wine
17 3 Per Amundsen
</pre>
18
19 4 Per Amundsen
On OS X type:
20 3 Per Amundsen
21 1 Per Amundsen
<pre>
22 4 Per Amundsen
# If homebrew is not installed, type
23
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
24
25
# Then install Wine through homebrew
26 3 Per Amundsen
brew install wine
27 1 Per Amundsen
</pre>
28
29 12 Per Amundsen
h2. Create a 32 bit "Wine":https://www.winehq.org/ prefix
30 1 Per Amundsen
31 22 Per Amundsen
Wine does not allow running 64 bit .NET applications, so you must create a 32 bit wine folder.
32 21 Per Amundsen
33 1 Per Amundsen
Type:
34 18 Per Amundsen
35 19 Per Amundsen
<pre>
36 21 Per Amundsen
WINEARCH=win32 WINEPREFIX=~/.wine32 winecfg
37 1 Per Amundsen
</pre>
38
39 8 Per Amundsen
h2. Download "Winetricks":https://github.com/Winetricks/winetricks
40 1 Per Amundsen
41
Type:
42
43
<pre>
44 8 Per Amundsen
wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
45
chmod +x winetricks
46 1 Per Amundsen
</pre>
47
48
h2. Install ".NET":https://en.wikipedia.org/wiki/.NET_Framework using "Winetricks":https://github.com/Winetricks/winetricks
49
50 22 Per Amundsen
If you downloaded the 32 bit .NET 2.0 version of AdiIRC (recommended) type:
51 1 Per Amundsen
52
<pre>
53 21 Per Amundsen
WINEPREFIX=~/.wine32 ./winetricks dotnet20
54 1 Per Amundsen
</pre>
55
56 22 Per Amundsen
If you downloaded the 32 bit .NET 4.5 version of AdiIRC (not recommended) type:
57 1 Per Amundsen
58
<pre>
59 21 Per Amundsen
WINEPREFIX=~/.wine32 ./winetricks dotnet45
60 1 Per Amundsen
</pre>
61
62
h2. Run AdiIRC with "Wine":https://www.winehq.org/
63
64 20 Per Amundsen
After .NET is installed, you should be able to run AdiIRC by typing:
65
66
<pre>
67 21 Per Amundsen
WINEPREFIX=~/.wine32 wine AdiIRC.exe
68 1 Per Amundsen
</pre>