Browse Source

added installation to readme

marius.rescheleit 4 years ago
parent
commit
8bf6ffbe27
1 changed files with 36 additions and 1 deletions
  1. 36 1
      README.md

+ 36 - 1
README.md

@@ -1,3 +1,38 @@
 # CCats
 
-Covert Channels are Tricky Stuff
+Covert Channels are Tricky Stuff
+
+## daemon installation
+
+Change to daemon/ and run cmake and compile with
+
+```
+sudo cmake .
+```
+and
+```
+sudo make
+```
+
+Copy executable
+
+```
+sudo cp ccats /usr/bin
+```
+
+
+Copy service file 
+
+```
+sudo cp ccats.service /etc/systemd/system/
+```
+
+Enable and start service with 
+
+```
+sudo systemctl enable ccats.service
+```
+and
+```
+sudo systemctl start ccats.service
+```