소스 검색

no sudo for compiling :)

anon 4 년 전
부모
커밋
cd9400f3ee
1개의 변경된 파일5개의 추가작업 그리고 4개의 파일을 삭제
  1. 5 4
      README.md

+ 5 - 4
README.md

@@ -7,11 +7,12 @@ Covert Channels are Tricky Stuff
 Change to daemon/ and run cmake and compile with
 
 ```
-sudo cmake .
+mkdir build
+cmake ..
 ```
 and
 ```
-sudo make
+make
 ```
 
 Copy executable
@@ -21,13 +22,13 @@ sudo cp ccats /usr/bin
 ```
 
 
-Copy service file 
+Copy service file
 
 ```
 sudo cp ccats.service /etc/systemd/system/
 ```
 
-Enable and start service with 
+Enable and start service with
 
 ```
 sudo systemctl enable ccats.service