Rust Auto Wipe

Created On
N/A
Updated On
N/A
Total Views
270
Total Downloads
4
Maintainer
Gamemann

Installation

Building And Running Project (Manually)

Building the project is simple. We only require git and Go.

1# Clone repository. 2git clone https://github.com/gamemann/Rust-Auto-Wipe.git 3 4# Change directory to repository. 5cd Rust-Auto-Wipe/ 6 7# Build using Go into `raw` executable. This will also retrieve needed packages such as Cronv3. 8go build -o raw

Using Makefile as described below is my personal recommendation on installing this application for Linux-based systems.

Using Makefile + Systemd (Recommended)

You may also use a Makefile I made to build the application and install a Systemd file.

1# Build project (go build -o raw). 2make 3 4# Install `rawapp` (/usr/bin/rawapp) and Systemd process. 5sudo make install

To have the application run on startup, and/or in the background, you may do the following.

1# Reload Systemd daemon (may be needed after install of Systemd service). 2sudo systemctl daemon-reload 3 4# Enable (on startup) and start service. 5sudo systemctl enable --now raw 6 7# Start service. 8sudo systemctl start raw 9 10# Restart service. 11sudo systemctl restart raw 12 13# Stop service. 14sudo systemctl stop raw 15 16# Disable (on startup) and stop service. 17sudo systemctl disable --now raw