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
- Host: GitHub
- URL: https://github.com/rgl/lms-binaries
- Owner: rgl
- Created: 2022-04-29T07:44:13.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-31T18:12:18.000Z (almost 2 years ago)
- Last Synced: 2024-12-31T11:06:06.271Z (over 1 year ago)
- Topics: amt, lms, vpro
- Homepage:
- Size: 34.2 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:

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