mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
Added steps to upgrade RaspAP
parent
3cfdcf138b
commit
8e517ebc43
23
FAQs.md
23
FAQs.md
@ -1,7 +1,8 @@
|
||||
This has been written to address some frequently encountered issues among users of RaspAP-WebGUI.
|
||||
|
||||
* [My custom rc.local/networking configuration/wpa configuration is gone!](#custom)
|
||||
* [How Do I Remove RaspAP-WebGUI?](#uninstall)
|
||||
* [How do I remove RaspAP?](#uninstall)
|
||||
* [What are the steps to upgrade RaspAP?](#upgrade)
|
||||
* [RaspAP control panel works but there is no WiFi after reboot](#nowifi)
|
||||
* [AP is not visible or can't connect to SSID with the Pi Zero](#pizero)
|
||||
|
||||
@ -10,9 +11,25 @@ Currently, RaspAP generates a few of its own files so that it starts with a know
|
||||
|
||||
Feel free to SSH in to restore those files to their rightful position, however, you may need to ensure that the RaspAP modifications are applied to your own custom configurations.
|
||||
|
||||
### <a name="uninstall"></a>How do I remove RaspAP?
|
||||
We have provided an uninstall script to remove RaspAP cleanly, and also restore any backups of your configuration that were created when RaspAP was installed. The uninstall script is located in `/var/www/html/installers/uninstall.sh`.
|
||||
|
||||
### <a name="uninstall"></a>How Do I Remove RaspAP-WebGUI?
|
||||
We have provided an uninstall script to remove RaspAP Web GUI cleanly, and also restore any backups of your configuration that were created when RaspAP Web GUI was installed. The uninstall script is located in `/var/www/html/installers/uninstall.sh`.
|
||||
### <a name="upgrade"></a>What are the steps to upgrade RaspAP?
|
||||
Upgrading your current install to a **specific release** is very straightforward. For example, to upgrade to release [version 1.3.1](https://github.com/billz/raspap-webgui/releases/tag/1.3.1), enter the following in the RaspAP install folder:
|
||||
|
||||
```
|
||||
sudo git fetch --tags
|
||||
sudo git checkout tags/1.3.1
|
||||
```
|
||||
A tag is a pointer that isn't connected to the main development tree that git knows about. As a result, git will reply that you're in a 'detached HEAD' state. This isn't a big deal, it just means that you have a specific version of the code that isn't connected to the git tree.
|
||||
|
||||
Alternatively, if you want the latest **bleeding edge** commits from the master branch, use the following:
|
||||
|
||||
```
|
||||
sudo git checkout master
|
||||
sudo git pull origin master
|
||||
```
|
||||
Whichever method you choose (specific release or latest updates), your RaspAP configuration won't be changed.
|
||||
|
||||
### <a name="nowifi"></a>RaspAP control panel works but there is no WIFI after reboot
|
||||
The problem is caused when another program tries to re-configure hostapd at startup (pi-hole is an example). What you need to do is create a shell script that tries to ping a device IP on your network. If it fails then you should stop/start hostapd.
|
||||
|
Loading…
x
Reference in New Issue
Block a user