#systemd #gtk #linux

app systemd-manager

A GTK3 GUI for managing systemd services on Linux

1 stable release

Uses old Rust 2015

1.0.0 Jun 29, 2016

#65 in #systemd

MIT license

415KB
763 lines

Build Status: Build Status

Systemd Manager

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.

Install Instructions

Arch Linux

This is available in the AUR as a git package: systemd-manager-git.

Fedora

RPM repositories have been made available for Fedora 22, 23 and 24 by Nuno Dias.

Ubuntu

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

Building From Source

Debian/Ubuntu

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

Everyone else

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

Screenshots

Services

Sockets

Timers

Journal

Analyze

Dependencies

~13MB
~321K SLoC