diff --git a/INSTALL.md b/INSTALL.md index 1807630..26355a8 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -48,43 +48,49 @@ sudo ./install.sh ### 4. You can now launch wfview, either from the terminal or from your desktop environment. If you encounter issues using the serial port, run the following command: ~~~ + +if you are using the wireless 705 or any networked rig like the 7610, 7800, 785x, there is no need to use USB so below is not needed. + 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. sudo usermod -aG dialout $USER (don't forget to log out and log in) +~~~ -### opensuse install ### +### opensuse/sles/tumbleweed install ### --- -install suse 15.x (did this on a kde virtual machine leap 15.2) +install wfview on suse 15.x sles 15.x or tumbleweed; this was done on a clean install/updated OS. -qt5: +we need to add packages to be able to build the stuff. -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 - sudo zypper in libQt5Widgets-devel libqt5-qtbase-common-devel libqt5-qtserialport-devel libQt5SerialPort5 qcustomplot-devel libqcustomplot2 libQt5PrintSupport-devel libqt5-qtmultimedia-devel + +now get and install qt5: + +- wget http://download.qt.io/official_releases/online_installers/qt-unified-linux-x64-online.run +- chmod +x qt-unified-linux-x64-online.run + + - kdesu ./qt-unified-linux-x64-online.run - Qt 5.15.2 for GCC for desktop application development +install Qt 5.15.2 for GCC for desktop application development +when done, create the place where to build: -in your homedir: +in this case, use your homedir: -- mkdir src -- cd src +- mkdir -p ~/src/build && cd src - git clone https://gitlab.com/eliggett/wfview.git -- cd ../ -- mkdir build - cd build -- qqmake-qt5 ../wfview/wfview.pro +- qmake-qt5 ../wfview/wfview.pro - make -j - sudo ./install.sh +wfview is now installed in /usr/local/bin ---