Skip to content
Simon Shi edited this page May 12, 2020 · 2 revisions

Welcome to the vlmcsd-debian wiki!

This project helps you to manage vlmcsd directly and cleanly with package manager of dpkg.

Build Guide

First you need to install dependencies for building packages for debian.

sudo apt install git build-essentials devscripts

Then you need to fetch the source code.

git clone https://github.com/Wind4/vlmcsd --recursive

Finally, build the deb package.

cd vlmcsd
debuild -b -uc -us

You could find your package in the parent directory.

total 11248
drwx------  5 root root      311 May 12 13:34 .
drwxr-xr-x 17 root root      251 May 12 11:43 ..
drwxr-xr-x 11 root root      267 May 12 13:25 vlmcsd
-rw-r--r--  1 root root     4254 May 12 13:34 vlmcsd_1113_amd64.build
-rw-r--r--  1 root root     4194 May 12 13:34 vlmcsd_1113_amd64.buildinfo
-rw-r--r--  1 root root      885 May 12 13:34 vlmcsd_1113_amd64.changes
-rw-r--r--  1 root root    81404 May 12 13:34 vlmcsd_1113_amd64.deb

To install the package, just use apt.

apt install ./vlmcsd_1113_amd64.deb

Optional: Enable vlmcsd service on boot.

systemctl enable vlmcsd --now
Clone this wiki locally