Installing Newtmgr on Linux¶
You can install the latest release (1.4.1) of the newtmgr tool from a Debian binary package (amd64). You can also download and build the latest release version of newtmgr from source.
This page shows you how to:
Set up your computer to download Debian binary packages from the runtimeco APT repository.
Note: The key for signing the repository has changed. If you set up your computer before release 1.1.0, you will need to download and import the public key again.
Install the latest release version of newtmgr from a Debian binary package. You can use apt-get to install the package or manually download and install the Debian binary package.
Download, build, and install the latest release version of newtmgr from source.
See Installing Previous Releases of Newtmgr to install an earlier version of newtmgr.
If you are installing on an amd64 platform, we recommend that you install from the binary package.
Note: We have tested the newtmgr tool binary and apt-get install from the runtimeco APT repository for Ubuntu version 16. Earlier Ubuntu versions (for example: Ubuntu 14) may have incompatibility with the repository. You can manually download and install the Debian binary package.
Note: See Contributing to Newt or Newtmgr Tools if you want to:
Use the newtmgr tool with the latest updates from the master branch. The master branch may be unstable and we recommend that you use the latest stable release version.
Contribute to the newtmgr tool.
Setting Up Your Computer to use apt-get to Install the Package¶
The newtmgr Debian packages are stored in a private APT repository on https://github/runtimeco/debian-mynewt. To use apt-get, you must set up the following on your computer to retrieve packages from the repository:
Note: You only need to perform this setup once on your computer. However, if you previously downloaded and imported the public key for the runtimeco APT repository, you will need to perform step 2 again as the key has changed.
Install the
apt-transport-https
package to use HTTPS to retrieve packages.Download the public key for the runtimeco APT repository and import the key into the apt keychain.
Add the repository for the binary and source packages to the apt source list.
Install the apt-transport-https package:
$ sudo apt-get update $ sudo apt-get install apt-transport-https
Download the public key for the runtimeco apt repo (Note: There is a
-
afterapt-key add
):$ wget -qO - https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/mynewt.gpg.key | sudo apt-key add -
Add the repository for the binary packages to the
mynewt.list
apt source list file.$ sudo -s [sudo] password for <user>: root$ cat > /etc/apt/sources.list.d/mynewt.list <<EOF deb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main EOF root$ exit
Note: Do not forget to exit the root shell.
Verify the content of the source list file:
$ more /etc/apt/sources.list.d/mynewt.list deb https://raw.githubusercontent.com/runtimeco/debian-mynewt/master latest main
Update the available packages:
$ sudo apt-get update
Note: If you are not using Ubuntu version 16, you may see the following errors. We have provided instructions on how to manually download and install the binary package.
W: Failed to fetch https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/dists/latest/main/source/Sources HttpError404
Installing the Latest Release of Newtmgr from a Binary Package¶
You can use either apt-get to install the package, or manually download and install the Debian binary package.
Method 1: Using apt-get to Upgrade or to Install¶
Run the following commands to upgrade or install the latest version of newtmgr:
$ sudo apt-get update
$ sudo apt-get install newtmgr
Method 2: Downloading and Installing the Debian Package Manually¶
Download and install the package manually.
$ wget https://raw.githubusercontent.com/runtimeco/debian-mynewt/master/pool/main/n/newtmgr/newtmgr_1.4.1-1_amd64.deb
$ sudo dpkg -i newtmgr_1.4.1-1_amd64.deb
See Checking the Latest Version of Newtmgr is Installed to verify that you are using the installed version of newtmgr.
Installing the Latest Release Version of Newtmgr from Source¶
If you are running Linux on a different architecture, you can build and install the latest release version of newtmgr from source.
Download and install the latest version of Go. Newtmgr requires Go version 1.7.6 or higher.
Create a Go workspace in the /tmp directory:
$ cd /tmp $ mkdir go $ cd go $ export GOPATH=/tmp/go
Run
go get
to download the newtmgr source. Note thatgo get
pulls down the HEAD from the master branch in git, builds, and installs newtmgr.$ go get mynewt.apache.org/newtmgr/newtmgr $ ls -l /tmp/go/bin/newtmgr -rwxr-xr-x 1 user staff 17884488 Jul 29 16:25 /tmp/go/bin/newtmgr
Check out the source from the latest release version:
$ cd src/mynewt.apache.org/newtmgr $ git checkout mynewt_1_4_1_tag Note: checking out 'mynewt_1_4_1_tag'.
Build newtmgr from the latest release version:
$ cd newtmgr $ go install $ ls /tmp/go/bin/newtmgr -rwxr-xr-x 1 user staff 17888680 Jul 29 16:28 /tmp/go/bin/newtmgr
If you have a Go workspace, remember to reset your GOPATH to your Go workspace.
Copy the newtmgr executable to a bin directory in your path. You can put it in the /usr/bin or the $GOPATH/bin directory.
Checking the Latest Version of Newtmgr is Installed¶
Run
which newtmgr
to verify that you are using the installed version of newtmgr.Get information about the newtmgr tool:
$ newtmgr Newtmgr helps you manage remote devices running the Mynewt OS Usage: newtmgr [flags] newtmgr [command] Available Commands: config Read or write a config value on a device conn Manage newtmgr connection profiles crash Send a crash command to a device datetime Manage datetime on a device echo Send data to a device and display the echoed back data fs Access files on a device help Help about any command image Manage images on a device log Manage logs on a device mpstat Read mempool statistics from a device reset Perform a soft reset of a device run Run test procedures on a device stat Read statistics from a device taskstat Read task statistics from a device Flags: -c, --conn string connection profile to use -h, --help help for newtmgr -l, --loglevel string log level to use (default "info") --name string name of target BLE device; overrides profile setting -t, --timeout float timeout in seconds (partial seconds allowed) (default 10) -r, --tries int total number of tries in case of timeout (default 1) Use "newtmgr [command] --help" for more information about a command.