Skip to content

Instantly share code, notes, and snippets.

@eggplants
Last active May 6, 2024 20:41
Show Gist options
  • Save eggplants/e4d8cc13b4ce86a965cb9e1651e0a253 to your computer and use it in GitHub Desktop.
Save eggplants/e4d8cc13b4ce86a965cb9e1651e0a253 to your computer and use it in GitHub Desktop.
DLsite Nest on Wine

DLsiteNest on Wine

環境

  • Ubuntu 21.04
  • wine-6.13
  • dlsitenest-v1.4.4

手順

  1. Wine環境構築
curl -sS https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ groovy main' -y
sudo apt update
sudo apt install --install-recommends winehq-staging winetricks -y
  1. ダウンロード
wget https://play.dl.dlsite.com/assets/nest/releases/dlsitenest-v1.4.8-win32-ia32.exe
  1. インストール
  • インストーラの指示に従う
wine /home/eggplants/Downloads/dlsitenest-v1.4.8-win32-ia32.exe
  • ~/.wine/dosdevices/c:/Program Files (x86)/DLsiteNestにインストールされる
  1. 起動
cd "$HOME/.wine/dosdevices/c:/Program Files (x86)/DLsiteNest"
wine DLsiteNest.exe

Untitled


Extra

  • 起動スクリプト
#!/usr/bin/env bash

wine "$HOME/.wine/dosdevices/c:/Program Files (x86)/DLsiteNest/DLsiteNest.exe" \
     >/dev/null 2>/dev/null &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment