ソフトウェア等の利用条件は,利用者自身で確認下さい.
UbuntuUbuntu で OS のシステム更新を行うときは, 端末で,次のコマンドを実行する.
sudo apt -y update sudo apt -yV upgrade sudo /sbin/shutdown -r now
端末で,次のコマンドを実行する.
sudo apt -y update sudo apt -y install build-essential gcc g++ make libtool texinfo dpkg-dev pkg-config sudo apt -y install git perl
端末で,次のコマンドを実行する.
https://wiki.qt.io/Building_Qt_5_from_Git の記載による.
sudo apt -y build-dep qt5-default sudo apt -y install libxcb-xinerama0-dev sudo apt -y install '^libxcb.*-dev' libx11-xcb-dev libglu1-mesa-dev libxrender-dev libxi-dev libxkbcommon-dev libxkbcommon-x11-dev sudo apt -y install flex bison gperf libicu-dev libxslt-dev ruby sudo apt -y install libssl-dev libxcursor-dev libxcomposite-dev libxdamage-dev libxrandr-dev libdbus-1-dev libfontconfig1-dev libcap-dev libxtst-dev libpulse-dev libudev-dev libpci-dev libnss3-dev libasound2-dev libxss-dev libegl1-mesa-dev gperf bison sudo apt -y install libasound2-dev libgstreamer1.0-dev
https://wiki.qt.io/Building_Qt_5_from_Git の記載による.
端末で,次のコマンドを実行する.
バージョン 5.13.0 をインストールすることにしている.
cd /tmp rm -rf qt5 git clone -b 5.13.0 https://code.qt.io/qt/qt5.git cd qt5 git submodule update --init --recursive ../qt5/configure --prefix=/usr/local -developer-build -opensource -nomake examples -nomake tests make -j4 sudo make install