OS | Ubuntu 20.04 |
CPU | Core i5 3.0GHz × 6Core (8Gen) |
MEM | 32GB |
SSD | 512GB |
HDD | 1TB |
GPU | RTX2070 |
$ sudo apt install wine64 wine32 winetricks $ wine --version
$ WINEPREFIX=/home/atsushi/.steam/steam/steamapps/compatdata/784150/pfx winetricksWINEPREFIX は、各ゲームタイトルのインストール場所。32bit 環境の場合は
WINEARCH=win32をつける
$ WINEPREFIX=/home/atsushi/.steam/steam/steamapps/compatdata/784150/pfx winetricks cjkfonts
$ sudo apt install fluidsynth
[Unit]
Description=FluidSynth Daemon
Documentation=man:fluidsynth(1)
After=sound.target
[Service]
Type=notify
NotifyAccess=main
EnvironmentFile=/etc/default/fluidsynth
EnvironmentFile=-%h/.config/fluidsynth
ExecStart=/usr/bin/fluidsynth -is $OTHER_OPTS $SOUND_FONT
[Install]
WantedBy=multi-user.target
# Mandatory parameters (uncomment and edit)
SOUND_FONT=/usr/share/sounds/sf3/default-GM.sf3
# Additional optional parameters (may be useful, see 'man fluidsynth' for further info)
#OTHER_OPTS='-a alsa -m alsa_seq -r 48000'
OTHER_OPTS='-a pulseaudio -m alsa_seq -r 48000'
$ systemctl --user enable fluidsynth $ systemctl --user start fluidsynth
$ aconnect -o client 14: 'Midi Through' [type=カーネル] 0 'Midi Through Port-0' client 128: 'FLUID Synth (84544)' [type=ユーザ,pid=84544] 0 'Synth input port (84544:0)' $ aplaymidi ~/Downloads/forelise_01.mid --port 128:0
~/ ├── .steampath -> ~/.steam/sdk32/steam └── .steampid -> ~/.steam/steam.pid
~/.steam ├── bin -> /home/atsushi/.steam/bin32 ├── bin32 -> ~/.local/share/Steam/ubuntu12_32 ├── bin64 -> ~/.local/share/Steam/ubuntu12_64 ├── registry.vdf ├── root -> ~/.local/share/Steam ├── sdk32 -> ~/.local/share/Steam/linux32 ├── sdk64 -> ~/.local/share/Steam/linux64 ├── steam -> ~/.local/share/Steam ├── steam.pid ├── steam.pipe └── steam.token
$ mv -rf ~/.local/share/Steam $ mv -rf ~/.steam $ mv -f .steampath $ mv -f .steampid
$ sudo mkdir /data/steam $ sudo chown ${USER}:${USER} /data/steam $ ln -s /data/steam/ ~/.local/share/Steam