Skip to content

Commit

Permalink
Simplify Linux install instructions.
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Rios committed Nov 9, 2018
1 parent 0459caf commit 32a8100
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,32 @@ A Simple Universal Serial Terminal developed using QT5.

#### Install Instructions:
Windows:
* Download [last version](https://github.com/J-Rios/SUSTerm/releases/download/v1.0/Windows_SUSTerm_v100.zip).
* Download [last version](https://github.com/J-Rios/SUSTerm/releases/download/v1.1/Windows_SUSTerm_v110.zip).
* Unzip it and place in C:\Program File (x86)
* Create a desktop shortcut of C:\Program File (x86)\SUSTerm\SUSTerm.exe

Linux:
* Download last version:
```
$ cd ~
$ wget https://github.com/J-Rios/SUSTerm/releases/download/v1.0/Linux_SUSTerm_v100.zip
$ wget https://github.com/J-Rios/SUSTerm/releases/download/v1.1/Linux_SUSTerm_v110.zip
```

* Unzip it, give execution permission to install script and execute it with sudo:
* Unzip it, give execution permission and place it to user binaries apps dir:
```
$ unzip Linux_SUSTerm_v100.zip
$ cd Linux_SUSTerm_v100
$ chmod +x install
$ sudo ./install
$ unzip Linux_SUSTerm_v110.zip
$ sudo chmod +x Linux_SUSTerm_v110/SUSTerm
$ sudo cp -a Linux_SUSTerm_v110/SUSTerm /usr/bin/
```

* Remove unnecessary used files:
```
$ cd ~
$ rm -rf Linux_SUSTerm_v100.*
$ rm -rf Linux_SUSTerm_v110*
```

* Add actual user to dialout group to allow open serial ports without been root:
* Add actual user to dialout group to allow open serial ports without been root and reboot system to apply:
```
$ sudo usermod -a -G dialout $USER
$ sudo usermod -aG dialout $USER
$ sudo reboot
```

Expand Down

0 comments on commit 32a8100

Please sign in to comment.