We have reached the first milestone of the Mender client rewrite to C++: the first alpha version is now available! There are still a lot of features missing, but here are the ones that should be working:
rootfs-image
Update Module)One notable omission from the list is State Scripts. These will be added in a later iteration. There is also no help screen available at the moment, but the client accepts the same arguments as the existing Golang client for the implemented features.
The client already undergoes a fair amount of testing, but keep in mind that this is bleeding-edge software which is under daily, active development - so expect bugs! And there is no official support for this version (yet). Feel free to try, test, and provide feedback as we continue to develop this functionality.
There are three main avenues for getting the C++ client:
Compile directly from source.
git clone -b 3.99.0+really4.0.0-alpha1 https://github.com/mendersoftware/mender
README
file inside the repository for build instructions.Install the packages.
sudo dpkg -i <PKG_NAME>
Build using Yocto.
kirkstone
branch is currently supported.feature-c++-client
branch from the meta-mender repository by using this command: cd meta-mender
git fetch origin
git checkout -t origin/feature-c++-client
local.conf
file: PREFERRED_VERSION_mender = "3.99.0+really4.0.0-alpha1"
The binary is not called mender
anymore, it's called mender-update
. We may provide a wrapper using the old name later, but for now, just use mender-update
in place of mender
in all commands. For example:
mender-update install my-artifact.mender
Give it a try, see what you like and see what you don't like. Tell us about the former, and help us improve the latter. Although the client is under active development now, we would be happy to take applicable contributions. And if your idea is not applicable yet, then just check back in a few weeks. You can always find the current state on GitHub and discuss on the Mender Hub.
If you get a message like this:
Failed to intialize main context: LMDB error: mdb_env_open: No such file or directory
then you may need to create the /var/lib/mender
and device_type
manually:
mkdir /var/lib/mender
echo device_type=my_device_type > /var/lib/mender/device_type