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.

23 lines
775 B

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