Project

General

Profile

Wine » History » Revision 21

Revision 20 (Per Amundsen, 08/28/2016 04:23 AM) → Revision 21/33 (Per Amundsen, 11/14/2016 02:01 AM)

{{>toc}} 

 h1. Wine 

 Installing AdiIRC in "Wine":https://www.winehq.org/ on 64 bit Ubuntu and OS X. 

 "Wine":https://www.winehq.org is a Windows compatibility layer which allows you to run many Windows programs on Linux/OS X. 

 "Winetricks":https://github.com/Winetricks/winetricks is a script to help you install various Windows components and programs. 

 h2. Install "Wine":https://www.winehq.org/ 

 On Ubuntu/Debian Type: 

 <pre> 
 apt-get install wine 
 </pre> 

 On OS X type: 

 <pre> 
 # If homebrew is not installed, type 
 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 

 # Then install Wine through homebrew 
 brew install wine 
 </pre> 

 h2. Create a 32 bit "Wine":https://www.winehq.org/ prefix 

 Wine does not allow running Type: 

 <pre> 
 # You may have to remove any previous wine folders by typing rm -r ~/.wine, note: this will delete your wine folder and all apps installed in it. 
 # Tou can also install into a separate 32 bit .NET applications, so folder by changing WINEPREFIX=~/.wine to something like WINEPREFIX=~/.wine32, in that case, you must create a 32 bit should type WINEPREFIX=~/.wine32 before running wine folder. AdiIRC.exe 

 Type: 

 <pre> 
 WINEARCH=win32 WINEPREFIX=~/.wine32 WINEPREFIX=~/.wine winecfg 
 </pre> 

 _Skip this step if you are running a 32 bit Linux._ 

 h2. Download "Winetricks":https://github.com/Winetricks/winetricks 

 Type: 

 <pre> 
 wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks 
 chmod +x winetricks 
 </pre> 

 h2. Install ".NET":https://en.wikipedia.org/wiki/.NET_Framework using "Winetricks":https://github.com/Winetricks/winetricks 

 If you downloaded the .NET 2.0 version of AdiIRC (recommended) type: 

 <pre> 
 WINEPREFIX=~/.wine32 ./winetricks dotnet20 
 </pre> 

 If you downloaded the .NET 4.5 version of AdiIRC (not recommended) type: 

 <pre> 
 WINEPREFIX=~/.wine32 ./winetricks dotnet45 
 </pre> 

 h2. Run AdiIRC with "Wine":https://www.winehq.org/ 

 After .NET is installed, you should be able to run AdiIRC by typing: 

 <pre> 
 wine AdiIRC.exe 

 # if you setup a 32 bit prefix into a different folder 

 WINEPREFIX=~/.wine32 wine AdiIRC.exe 
  
 </pre>