Mendel Development Tool (mdt)
Mendel Development Tool (MDT) is a command-line tool that lets you communicate with a device running Mendel Linux.
The mdt
command
facilitates a variety of device actions such as opening a shell, installing Debian packages, pushing
and pulling files, and more.
Install MDT
The server-side component that runs on your board is included with the Mendel system image.
So you only need to install the mdt
client on your host computer (Linux, macOS, or Windows 10).
You can install MDT on your host computer follows:
python3 -m pip install --user mendel-development-tool
You might see a warning that mdt
was installed somewhere that's not in your PATH
environment variable. If so, be sure you add the given location to your PATH
, as appropriate for
your operating system. If you're on Linux, you can add it like this:
echo 'export PATH="$PATH:$HOME/.local/bin"' >> ~/.bash_profile
source ~/.bash_profile
echo "alias mdt='winpty mdt'" >> ~/.bash_profile source ~/.bash_profile
Connect to a board's shell
MDT can access the shell on any Mendel device that's visible on your network (as long as the device already has your OpenSSH key installed), or MDT can connect over USB when you connect your computer to the device, using the board's USB OTG port.
If you have just one device, run this command:
mdt shell
When you want to exit the shell, type exit
.
When you connect to a board with mdt shell
, it uses OpenSSH with key-based authentication
(PEM-formatted and passwordless). The public key is saved on the board in
/home/mendel/.ssh/authorized_keys
and the private key is saved on your host computer in
~/.config/mdt/keys/mdt.key
(this key is used only when connecting with mdt shell
). If the board
doesn't have a key yet, mdt shell
creates it and pushes it. For other MDT commands that help
manage your keys, see all the MDT commands.
Connect to multiple boards
After you've connected to a board with MDT, you can reuse the same mdt.key
file with additional
boards. It's just a matter of pushing this key to the authorized_keys
file on each board:
-
If your additional board is newly flashed (or just unboxed), run
mdt shell
and it will push your existing MDT key from your computer's~/.config/mdt/keys/mdt.key
file. -
If your additional board already has an MDT key in it's
authorized_keys
file, follow the instructions to connect from multiple computers.
Then, you can list all available boards with mdt devices
and connect by specifying the name
(or IP address):
mdt shell king-shrimp
Connect to a board from multiple computers
Once you've connected to the board with one computer, you cannot immediately connect from another
computer because mdt shell
will not push a new key if the board already has one in the
authorized_keys
file (and if the mdt-keymaster
service is not running).
To connect from additional computers, just copy the mdt.key
file from the
first computer and save it to ~/.config/mdt/keys/mdt.key
on each computer you want to use.
If you don't have access to the first computer, see how to recover MDT access.
Recover MDT access
If you lose the private key stored at ~/.config/mdt/keys/mdt.key
(such as by switching
computers) or you lose the public key on the Coral board, then MDT cannot connect.
To recover access with MDT, follow these steps:
-
Connect to your board using the serial console (see the instruction for Dev Board or Dev Board Mini).
-
On the board, delete the contents of the
/home/mendel/.ssh/authorized_keys
file. -
On the board, restart the
mdt-keymaster
service with this command:sudo service mdt-keymaster restart
-
On your host computer, delete the
~/.config/mdt/keys/mdt.key
file. -
Either connect to your computer to the board via USB or ensure both are on the same Wi-Fi network.
-
On your host computer, generate a new key and connect:
mdt shell
Connect using other SSH tools
If you prefer to use other SSH tools, simply generate your own key and then push that one
to the device with mdt pushkey
. For example, run the following on your host computer:
ssh-keygen
# Follow steps to create key
mdt pushkey ~/.ssh/id_rsa.pub
ssh mendel@192.168.100.2
MDT commands
The following table provides a reference of the available commands you can use with mdt
using
this syntax:
mdt subcommand arguments
You can also use mdt help
and man mdt
for information about what commands are available in your version of MDT.
Subcommand | Description |
---|---|
devices |
Returns a list of device names and IP addresses found on the local network
segment. Also indicates if a given device is marked as your default.
Uses the Note: MDT uses a python implementation of mDNS ZeroConf for discovery, so it does not require a running Avahi daemon. |
wait-for-device |
Waits for a device to be discovered on the network. |
get variable-name |
Returns the value currently set for a given variable name. Some useful
variables are:
If no variable name is provided, |
set variable-name |
Sets the value for a given variable name. See example variables for the corresponding
get command above.
Note that setting a variable to the empty string does not clear it back to
the default value. Use |
clear variable-name |
Clears the value for a given variable name, resetting it back to its default value. |
genkey |
Generates an SSH key and saves it to the local machine (at
~/.config/mdt/keys/mdt.key ).
If you already have an To rotate your keys, call |
pushkey path-to-ssh-public-key |
Copies an SSH public key to the Mendel device's $HOME/.ssh/authorized_keys file. If
an MDT private key is provided (the mdt.key file), this will push the public half of
that key to the device's authorized_keys file. If no public key is provided, it
attempts to push MDT's previously generated public key from
$HOME/.config/mdt/keys/mdt.key .
To rotate your keys, call |
setkey path-to-private-key |
Copies a PEM-format SSH private key into the Mendel device's MDT keystore for use with authentication later. |
resetkeys device-or-ip-address |
Resets a device to it's pre-MDT state by removing all MDT keys and restarting
the mdt-keymaster on the device so that new keys can be pushed again.
To rotate your keys, call |
shell [device-or-ip-address] |
Opens an interactive shell to either your preferred device or to the first
device found.
If device-or-ip-address is specified, shell attempts to connect to that
device name or directly to the IP address provided instead.
Uses the variables If no SSH key is available on disk (you didn't run |
exec [shell-command...] |
Opens a non-interactive shell to either your preferred device or to the first
device found, runs a shell command and returns the output and the exit code.
If no SSH key is available on disk, it follows the same steps as the |
install deb-package-file |
Installs a given Debian package file to the connected device via
mdt-install-package . Uses the variables preferred-device ,
username , and password (see the get command above).
Note: If the package provided has dependencies that are not already installed on the device, this will require internet connectivity to fetch and install those dependencies. |
push local-path... [remote-path] |
Pushes (copies) a local file or set of files to the remote device. If you specify a directory for
local-path, then that directory is added to the remote location and the contents are
copied recursively.
local-path may be an absolute path or a relative path.
If you omit remote-path, MDT uses Uses the variables |
pull remote-path... local-path |
Pulls (copies) a set of files from the remote device to a local path. If you specify a directory
for remote-path, then that directory is added to the local location and the contents are
copied recursively.
remote-path may be an absolute path or a path relative to
Uses the variables |
reboot |
Reboots a device. |
reboot-bootloader |
Reboots a device to the bootloader and starts fastboot mode. After running this,
you should see your device listed when you run fastboot devices , making it easy to
then flash the device (see how to flash
the Dev Board or the Dev Board
Mini). |
version |
Prints which version of MDT this is. |
MDT on macOS
Beginning with macOS Catalina (10.15), you cannot create an MDT (or other SSH) connection over USB. However, you can still use MDT over your local network—you just need to install an OpenSSH key on your Coral board. Then your Mac can connect to the board over the local network.
So, here's how to create an SSH key and put it on your board using the serial console:
-
Make sure your board is fully booted up.
-
Connect to the board's serial console by following the instructions for either the Dev Board or Dev Board Mini.
Return to these instructions after you log into the board from the serial console.
-
In the serial console, create a new file for the public SSH key:
mkdir /home/mendel/.ssh && vi /home/mendel/.ssh/authorized_keys
Keep this serial console open while you create the SSH key...
-
On your Mac, open another terminal and create a PEM-formatted SSH key pair:
ssh-keygen -t rsa -m PEM
When prompted to enter a file name, type "mendel", and leave the passphrase empty.
This creates a private key called
mendel
and a public key calledmendel.pub
(in the current directory). -
Set the file permissions and relocate the private key on your Mac as shown here:
chmod 600 mendel mkdir -p ~/.config/mdt/keys && mv mendel ~/.config/mdt/keys/mdt.key
-
Now put the public key on the Coral board:
- In your Mac terminal, view the
mendel.pub
file (typecat mendel.pub
) and copy the file contents. - Go to the serial console and paste the key into the
authorized_keys
file you created above. - Then save and close the
authorized_keys
file (in the VI editor, press ESC, then type:wq
and press Enter.)
- In your Mac terminal, view the
There you go! Now just make sure your Coral board is on the same local network as your Mac (get on the same Wi-Fi) and you'll be able to use MDT from the Mac:
-
To connect the board to Wi-Fi, run this command from the serial console:
nmtui
-
Then select
Activate a connection
and follow the UI to join the same network as your Mac. -
Finally, open a new terminal on your Mac and connect to the board:
mdt shell
Is this content helpful?