LoginSignup
1
2

More than 3 years have passed since last update.

Ubuntu 20 に kindle 1.30 をインストール

Last updated at Posted at 2021-04-05

Ubuntu 20 に kindle 1.30 をインストールします。
Screenshot from 2021-04-05 09-36-44.png
通常の wine ですとうまくインストールができないのでレポジトリを登録した上で最新の wine をインストールします。

# 既存の wine の削除
# sudo apt purge wine ;
# rm -rf ~/.wine

# レポジトリの登録
sudo dpkg --add-architecture i386 ;
wget -O - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add - ;
sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main' ;
sudo add-apt-repository ppa:cybermax-dexter/sdl2-backport ;

# インストール
sudo apt update && sudo apt install -y --install-recommends winehq-devel ;
mkdir -p ${WINEPREFIX:-$HOME/.wine}/drive_c/users/$USER/AppData/Local/Amazon/Kindle ;
wine KindleForPC-installer-1.30.59056.exe ;
# kindle & ;

※インストール時に.net や geko のインストールの選択が求められるかと思います。はいを選択します。

一応 kindle と同じような電子書籍ソフト calibre のインストール方法も載せておきます。

sudo -v && wget -nv -O- https://download.calibre-ebook.com/linux-installer.sh | sudo sh /dev/stdin ;
calibre & ;

参考リンク

1
2
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
1
2