Advertisement
blistovmhz

Untitled

Nov 24th, 2014
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.84 KB | None | 0 0
  1. ##Install MS Office 2010 on Ubuntu/Mint with Wine 1.6##
  2.  
  3. #install wine1.6 and winetricks
  4. apt-get install wine1.6 winetricks
  5.  
  6. #set WINEARCH to win32, create WINEPREFIX ~/.wine32_mso2010, and run winecfg in that prefix. This creates a new WINE environment for your mso2010.
  7. WINEARCH=win32 WINEPREFIX=~/.wine32_mso2010 winecfg
  8. Change OS to Win7 and then close.
  9.  
  10. #run winetricks in your new PREFIX to install dotnet2.0, msxml6, and corefonts.
  11. WINEPREFIX=~/.wine32_mso2010 winetricks
  12. select default wineprefix (this is actually selecting the WINEPREFIX you just specified/created)
  13. Install a DLL (dotnet20 and msxml6)
  14. Install fonts (corefonts)
  15.  
  16. #run winecfg again and set your msxml6 to native
  17. WINEPREFIX=~/.wine32_mso2010 winecfg
  18. libraries - msxml6 (set to native only)
  19. close
  20.  
  21. #install Office
  22. WINEPREFIX=~/.wine32_mso2010 /path/to/installer.exe
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement