Skip to content

kinggeorges12/prime-wine-wsl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

prime-wine (Windows for Linux in Windows Subsystem Linux)

Alternative approach to enable Prime Video HD playback on Linux, using Wine and Brave 📽️ merged_side_by_side_updated

Use

See upstream repository prime-wine for more info on use.

Prerequisites

  1. Install WSL and Docker.
  2. Download: Windows X-server
  3. Run with these settings:

Disable access control

Build

docker build --platform linux/amd64 -t wine-tkg-lutris "C:\Docker\Lutris"

Run Lutris

  1. Run this in pwsh or cmd:
docker run -it -e DISPLAY=host.docker.internal:0 -v /tmp/.X11-unix:/tmp/.X11-unix -v C:\Docker\Lutris\Wine:/data/wine -v lutris-wine-data:/home/lutrisuser wine-tkg-lutris
  1. No need to wait for wine to update. Click the + in the upper left corner and Install from a local install script.

Updating wine

3. Click through the next screens and install missing packages (`wine-mono` is for Windows compatibility).

Debugging Command Line

Open a command shell:

docker run -it -e DISPLAY=host.docker.internal:0 -v /tmp/.X11-unix:/tmp/.X11-unix -v C:\Docker\Lutris\Wine:/data/wine -v lutris-wine-data:/home/lutrisuser wine-tkg-lutris /bin/bash

Uninstall

Remove everything!

# Stop and remove containers using the Lutris image
$containers = docker ps -a --filter "ancestor=wine-tkg-lutris" --format "{{.ID}}"
if ($containers) {
    docker stop $containers
    docker rm $containers
}

# Remove the Lutris image
docker rmi wine-tkg-lutris --force

# Remove the specific Lutris volume
docker volume rm lutris-wine-data -f

# Remove the local project folder
Remove-Item -Recurse -Force "C:\Docker\Lutris"

About

Alternative approach to enable Prime Video HD playback on Linux!... on Windows!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Dockerfile 100.0%