0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【WineHQ】Linux Mint 20.3とUbuntu Studio 20.04にターミナルでWineHQをインストール/日本語表示

Last updated at Posted at 2022-02-26

Linux Mint 20.3でWindowsのアプリ「Music Studio Producer」と「Synthesia」を使って音ゲーで遊ぼうと思いました。WineHQ7.0でそれらを実行しようと思います。

短く言うと

Linux Mint 20.x と Ubuntu 20.04 ではターミナルで以下のコマンドを入力することで WineHQのインストール→日本語化 ができます。

ターミナルを使ってWineHQ7.0をインストールします。

Terminal
sudo dpkg --add-architecture i386
wget -nc https://dl.winehq.org/wine-builds/winehq.key
sudo apt-key add winehq.key
sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main'
sudo apt update
sudo apt install --install-recommends winehq-stable

Winetricksを使って、cjkfontsをインストールします。

Terminal
sudo apt install -y winetricks
winetricks

「●Select the default wineprefix」「OK」→「●Install a font」「OK」→「cjkfonts」にチェック「OK」 ※インストール中いろいろ言われますが、すべて「はい」「OK」

はじめに

LinuxなPCをつかって音ゲーで遊ぼうと思いました。いろいろと検索したところ目的のアプリの一部はWindowsにしか対応していないようなのでそれらをWineHQ7.0から起動しようと思います。MIDI対応のWindowsアプリは安定させるのにとても手間がかかり(失敗もするので)、なんどもWineのインストールからはじめることになりました。ターミナルを使って簡単にインストールできるようにまとめておきます。

なお、MIDIを鳴らすにはLinux Mint / Ubuntu側でTiMidity++ / Fluidsynthの設定が必要です。

今回の環境

  • NEC LaVie LS350/A
  • Linux Mint 20.3 cinnamon または Ubuntu Studio 20.04.3

WineHQをインストール

Windowsアプリを使えるように、ターミナルを使ってWineHQ7.0をインストールします。

「Ubuntu - WineHQ Wiki」1を編集して引用します。

システムが64bitの場合、32bitアーキテクチャを有効にします。

Terminal
$ sudo dpkg --add-architecture i386

リポジトリキーをダウンロードして、追加します。

Terminal
$ wget -nc https://dl.winehq.org/wine-builds/winehq.key
$ sudo apt-key add winehq.key

リポジトリを追加します(Ubuntu 20.04 と Linux Mint 20.x の場合)。

Terminal
$ sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main'

パッケージを更新します。

Terminal
$ sudo apt update

WineHQ の安定版パッケージをインストールします。

Terminal
$ sudo apt install --install-recommends winehq-stable

以上で、WineHQ7.0がインストールできました。

Winetricksを使ってcjkfontsをインストール

WineHQで日本語を表示できるように多言語フォント「cjkfonts」をインストールします。

Winetricksをインストールして、起動します。

Terminal
$ sudo apt install -y winetricks
$ winetricks

「Wine MONO インストーラー」が立ち上がりインストールすると、WinetricksのGUIが開くので、

「●Select the default wineprefix」「OK」→「●Install a font」「OK」→「cjkfonts」にチェック「OK」

※インストール中いろいろ言われますが、すべて「はい」「OK」

以上で日本語表示が可能となります。

おわりに

Windowsアプリ「Music Studio Producer」と「Synthesia」を使いたいのでさらにMIDIの設定をしていきます。

参考サイト

  1. https://wiki.winehq.org/Ubuntu

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?