Advertisement
shokti

ubuntu wine 1.4 installation

Sep 19th, 2012
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.98 KB | None | 0 0
  1. update repository database:
  2.     sudo apt-get update
  3. add wine repository for updated version:
  4.     sudo add-apt-repository ppa:ubuntu-wine/ppa
  5. update repository database:
  6.     sudo apt-get update
  7. install wine 1.4:
  8.     sudo apt-get install wine1.4
  9.  
  10. after installation run wine ---> configure wine on the desktop menu to setup wine and after running it, wine will create the ~/.wine folder.
  11.  
  12. to access virtual windows drive c. go to ~/.wine/drive_c:
  13.     cd ~/.wine/drive_c
  14.  
  15. to access windows program. go to ~/.wine/drive_c/Program Files:
  16.     cd ~/.wine/drive_c/Program\ Files/
  17.  
  18. to run windows program from the command line. go to the program's folder which mostly located under the  ~/.wine/drive_c/Program Files folder and execute the program name:
  19.     example running internet explorer:
  20.         cd ~/.wine/drive_c/Program\ Files/Internet\ Explorer/
  21.         wine iexplore.exe
  22.     example to run DOS command line:
  23.         wine cmd.exe
  24.    
  25. to uninstall windows program, run wine ---> Uninstall Wine Software on the desktop menu.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement