Crates.io | systemd-manager |
lib.rs | systemd-manager |
version | 1.0.0 |
source | src |
created_at | 2016-06-29 00:08:09.682689 |
updated_at | 2016-06-29 00:08:09.682689 |
description | A GTK3 GUI for managing systemd services on Linux |
homepage | |
repository | https://github.com/mmstick/systemd-manager |
max_upload_size | |
id | 5523 |
size | 520,572 |
This application is a systemd service manager written in the Rust programming language with GTK3 as the graphical user interface of choice. The units are filtered into three separate lists: services, sockets, and timers. As a unit is selected in the left pane, the right pane is updated with information pertaining to that unit, and the right headerbar is updated to reflect the status of the unit where you may disable/enable and start/stop the selected unit. Services are units that are activated immediately, sockets are units that are activated when they are needed, and timers are units that activate on a regular time interval. In addition to display units, the application also provides stats generated by systemd-analyze
on the Systemd Analyze view.
This is available in the AUR as a git package: systemd-manager-git
.
RPM repositories have been made available for Fedora 22, 23 and 24 by Nuno Dias.
There are currently no PPAs to provide at this time. However, I am providing Debian packages which should largely be a two or three click install. This package should work on all Debian-based distributions that ship a version of GTK that is newer than GTK 3.16.
https://github.com/mmstick/systemd-manager/releases/download/0.4.7/systemd-manager_0.4.7_amd64.deb
For Debian-based users, ensure that you have installed the cargo-deb
subcommand. The cargo-deb
subcommand build and generate a Debian package based on information in the Cargo.toml
file automatically.
sudo apt install libgtk-3-dev -y
cargo install --git https://github.com/mmstick/cargo-deb
git clone https://github.com/mmstick/systemd-manager
cd systemd-manager
cargo deb && sudo dpkg -i systemd-manager*.deb
This will simply install directly to the /usr prefix. Simply install Rust via rustup.rs and execute make & sudo make install
. The installation of Rust software is incredibly simple as the process is largely just cargo build --release
, but this installation script will install all the files needed by the application for proper integration with PolicyKit into the correct places in the filesystem, which cargo install
does not perform.
git clone https://github.com/mmstick/systemd-manager && cd systemd-manager && make && sudo make install
In the event that you would like to uninstall the application, simply run the following:
sudo make uninstall