From 0c78472629a87b3bc0cd9c42b77d9a7624bd3991 Mon Sep 17 00:00:00 2001 From: roeland jansen Date: Wed, 3 Feb 2021 18:57:22 +0000 Subject: [PATCH] Update INSTALL.md --- INSTALL.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/INSTALL.md b/INSTALL.md index 70ccc21..45d72a1 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -51,3 +51,36 @@ sudo ./install.sh sudo chown $USER /dev/ttyUSB* ~~~ +- most linux systems just need to have you added to the dialout group as that's persistent and more secure. + + + +### opensuse install ### +--- + +the following is a raw - only one time tested piece of information + +install suse 15.x (did this on a kde virtual machine leap 15.2) + +qt5: + +wget http://download.qt.io/official_releases/online_installers/qt-unified-linux-x64-online.run +chmod +x qt-unified-linux-x64-online.run +sudo zypper in --type pattern devel_basis +kdesu ./qt-unified-linux-x64-online.run +install base qt5 default qt5 desktop development + +sudo zypper in libQt5Widgets-devel libqt5-qtbase-common-devel libqt5-qtserialport-devel libQt5SerialPort5 qcustomplot-devel libqcustomplot2 libQt5PrintSupport-devel + +mkdir src +cd src +git clone https://gitlab.com/eliggett/wfview.git +cd ../ +mkdir build +cd build +qmake-qt5 ../src/wfview/wvfiew.pro +make +sudo ./install.sh + + +---