Showing posts with label wine. Show all posts
Showing posts with label wine. Show all posts

Friday, 16 September 2016

How to Install and Use Wine to Run Windows Applications on Linux

How to Install and Use Wine to Run Windows Applications on Linux


Image result for how to install wine on linux
To installing WineHQ packages you have to  uninstall any previously installed Wine package from another repository, remove it and any packages that depend on it (e.g., wine-mono, wine-gecko, winetricks)
Enable 32 bit architecture, If your system is 64 bit (if not yet enabled):
sudo dpkg --add-architecture i386 
Add the repository:
sudo add-apt-repository ppa:wine/wine-builds
Update packages:
sudo apt-get update
Install
Eg: for the development branch
sudo apt-get install --install-recommends winehq-devel
If is Staging branch that you want, replace `winehq-devel` with `winehq-staging` in the line above.
If apt-get complains about missing dependencies, install them, then repeat the last two steps (update and install).



Before you leave, do me a favor and answer me this question:
What’s your opinion of Bitcoin
~Is it here to stay — permanently — or is it just another passing fad?
Leave your comment below  (Please! Don’t forget to use the social sharing buttons, either)!

Run Windows Programs Using Wine

Run Windows Programs Using Wine

Image result for how to install wine on mac

(if what you want is how to install wine click here)
Open up the Terminal and run this to get to your Program Files folder:
cd ~/.wine/drive_c/Program\ Files/
Pick a program, and enter its directory using cd. 
Note: If the folder has a space in it, you must type a \ before the space. For example, Program\ Files. If you're having problems, try using tab autocomplete. There should be a file that ends in .exe: this is the program file. Type this into Terminal:
wine $PROGRAM.exe

Where $PROGRAM is the name of the .exe file. XQuartz will open 
Note: It will open full screen' to reduce it in size, go open the Window menu from the Mac OS X menu bar, and select Zoom Window. You can then resize the program normally. 
Enjoy using Windows on your Mac, comment!


Before you leave, do me a favor and answer me this question:
What’s your opinion of Bitcoin
~Is it here to stay — permanently — or is it just another passing fad?

Leave your comment below  (Please! Don’t forget to use the social sharing buttons, either)!

How To Uninstall Wine From Mac OS X

Uninstalling Wine and Homebrew

Image result for how to install wine on macIf you use Wine and you don't like it, uninstalling it is easy. Just run this command:
brew uninstall wine
And Homebrew will helpfully remove Wine from your computer. 
Note: in order to install Wine, Homebrew also install many other small programs that Wine relies upon to work correctly. if you want to remove these as well, download and run the Homebrew uninstallation script

Installing Wine on Mac OS X

 How To Install Wine On Mac


Image result for how to install wine on mac    Wine is an awesome  free, legal, and open source software  that lets you run Windows apps without the Windows operating system. 
To install Wine on your Mac, you will need the following:
  • OS X 10.9 (Mavericks) or above
  • Access to an Admin account, with password
  • An internet connection
  • some time 

Image result for how to install wine on mac

Install Xcode
Xcode is an app that is used to compile source code made by Apple.
It's available on the Mac App Store. Use the Mac App Store to install Xcode, and then run it and open the Preferences. Go to the Downloads tab, and if the "Command Line Tools" are available, install them. (If not, that means is already installed.)
Install Homebrew
Image result for how to install wine on macHomebrew is a package manager that makes installing open source programs easier. Homebrew itself is simple to install: just open up the Terminal and run this command:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Press Enter when asked to proceed . Type in the password to the Admin account on your computer if asked and press Enter. If the installation was successful, and terminal ask you to run brew doctor. Do so by running this command:
brew doctor
you'll see the message Your system is ready to brew, When everything is setup correctly,
Note: If Homebrew tells you that you need to agree to the Xcode license, do that by running:
sudo xcodebuild -license
The Xcode license will fill up Terminal window read it, type agree and hit enter to agree to the license.
Install Homebrew Cask
Homebrew Cask is a homebrew extension that it uses to install other programs. Install the Cask by running:
brew tap caskroom/cask
Install Required Casks

Java and XQuartz are what wine needs to run correctly, install them with Homebrew Cask. Run the this command:

brew cask install java xquartz
Install Wine with Homebrew
Now we'll install the actually install Wine! Homebrew will do all the work for us, just type this command:
brew install wine
This step will probably take awhile 
If you get an error message at this step that reads error: C compiler cannot create executables orFailed to locate 'make' in path, it means you forgot to install Xcode, or it installed incorrectly. 
Enjoy and don't forget to comment!!!
Before you leave, do me a favor and answer me this question:
What’s your opinion of Bitcoin
~Is it here to stay — permanently — or is it just another passing fad?
Leave your comment below  (Please! Don’t forget to use the social sharing buttons, either)!