An open API service indexing awesome lists of open source software.

https://github.com/rgl/lms-binaries

Intel LMS (Local Manageability Service) binaries
https://github.com/rgl/lms-binaries

amt lms vpro

Last synced: 4 months ago
JSON representation

Intel LMS (Local Manageability Service) binaries

Awesome Lists containing this project

README

          

This has the [Intel LMS (Local Manageability Service)](https://github.com/intel/lms) binaries for:

* Debian 11
* Debian 12
* Debian 13
* Ubuntu 20.04
* Ubuntu 22.04
* Ubuntu 24.04
* Ubuntu 26.04

These are built in [rgl/lms](https://github.com/rgl/lms) by a [GitHub Actions workflow](https://github.com/rgl/lms/actions) and are [manually released to this repository](https://github.com/rgl/lms-binaries/releases).

# Usage

You can install this in Ubuntu 24.04 using bash as:

```bash
sudo bash <<'EOF'
set -euxo pipefail
deb_url='https://github.com/rgl/lms-binaries/releases/download/v0.0.20251226/lms-2550.0.0-ubuntu-24.04.deb'
repo_path='/opt/apt/repo.d/lms'
install -d $repo_path
cd $repo_path
wget --no-clobber $deb_url
apt-get install -y dpkg-dev
dpkg-deb --info *.deb
dpkg-deb --contents *.deb
dpkg-scanpackages . >Packages
echo "deb [trusted=yes] file:$repo_path ./" >/etc/apt/sources.list.d/lms.list
apt-get update
apt-get install -y lms
systemctl status lms
EOF
```

You can install this in Ubuntu 24.04 using ansible as:

```yaml
- name: Install lms
apt:
deb: https://github.com/rgl/lms-binaries/releases/download/v0.0.20251226/lms-2550.0.0-ubuntu-24.04.deb
```

Watch the logs:

```bash
sudo journalctl --unit lms --follow
```

In MeshCommander, do a Graceful Shutdown/Reboot by choosing the `Soft-off`/`Soft-reset` Power Action:

![](meshcommander-soft-off.png)

The `lms` logs should show something alike:

```plain
Apr 29 08:19:00 vagrant LMS[16190]: Remote administrator shutdown request was executed
```

And the machine console should display a scheduled shutdown message alike:

```plain
Broadcast message from root@vagrant (Fri 2022-04-29 08:19:00 UTC):

The remote administrator has initiated a shutdown on this computer...
The system is going down for poweroff at Fri 2022-04-29 08:20:00 UTC!
```

And when the shutdown is actually done, the machine console should show something alike:

```plain
Broadcast message from root@vagrant (Fri 2022-04-29 08:20:00 UTC):

The remote administrator has initiated a shutdown on this computer...
The system is going down for poweroff NOW!
```

# References

* https://github.com/rgl/intel-amt-notes
* https://github.com/rgl/intel-amt-toggle-power-example
* https://github.com/rgl/lms
* https://github.com/intel/lms