Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] Added curl and SCP instruction for ipk file #165

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions user/configure-device.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,14 @@ clipboard and then run the following commands on your OpenWrt device:
opkg update
opkg install ./<file-just-downloaded>

Alternatively, you can also use the curl method instead of wget to install the ipk file:

.. code-block:: bash

curl -o <some-file-name>.ipk <URL-you-just-copied>
opkg install <some-file-name>.ipk


If you're running at least OpenWRT 19.07, you can install openwisp-config
from the official OpenWRT packages:

Expand All @@ -75,6 +83,12 @@ from the official OpenWRT packages:
**We recommend installing from our latest builds or compiling your own
firmware image**. The OpenWrt packages are not always up to date.

If all the above methods fail you can:

- Download the ipk file on your system.
- Use SCP to transfer the file to the Openwrt system.
- Install using opkg.

Configuration
~~~~~~~~~~~~~

Expand Down