These are some guides for various use.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
764 B

  1. # Wine
  2. Wine is a compatibility layer to run windows programs on linux machines.
  3. ## Installation and Configuration
  4. - Enable multilib support in pacman
  5. - `vim /etc/pacman.conf` - Uncomment the following lines
  6. ```
  7. [multilib]
  8. Include = /etc/pacman.d/mirrorlist
  9. ```
  10. - `pacman -S wine winetricks` - Install wine and configuration helper
  11. - Set the global variable `WINEPREFIX` to your liking, standard is `$HOME/.wine`
  12. - `winetricks` - run the installation of basic windows dependencies to the wine directory
  13. - Move the program you want to run to `$WINEPREFIX/drive_c/`
  14. - `winetricks sandbox` - (Optional) if you don't want wine to set up directories or files into your home directory
  15. - `wine $WINEPREFIX/drive_c/<insert program>` - Run the program with wine