Fedora 29: ウェブブラウザのOperaをインストールする

ウェブブラウザのOperaをインストールする手順を記載します。

1 operaのインストール

operaパッケージをインストールします。

#!/bin/sh

# Install opera.
URL=http://get.geo.opera.com/pub/opera/desktop/57.0.3098.76/linux
sudo dnf install -y ${URL}/opera-stable_57.0.3098.76_amd64.rpm

# Install flash.
URL=http://linuxdownload.adobe.com/adobe-release/adobe-release-x86_64-1.0-1.noarch.rpm
sudo dnf install -y ${URL}
sudo dnf install -y flash-player-ppapi

2 operaの起動

operaを実行します。

$ opera

0001_Opera.png