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.

24 lines
772 B

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