-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create installation.rst~67b7e06b1ec30d60e18b6de23536e3193d0ae1ab
- Loading branch information
1 parent
2d76e2d
commit 10cc02d
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
docs/book/src/installation/host/installation.rst~67b7e06b1ec30d60e18b6de23536e3193d0ae1ab
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
================= | ||
Installing Cuckoo | ||
================= | ||
|
||
Proceed with download and installation. Read :doc:`../../introduction/what` to | ||
learn where you can obtain a copy of the sandbox. | ||
|
||
Create a user | ||
============= | ||
|
||
You either can run Cuckoo from your own user or create a new one dedicated just | ||
to your sandbox setup. | ||
Make sure that the user that runs Cuckoo is the same user that you will | ||
use to create and run the virtual machines, otherwise Cuckoo won't be able to | ||
identify and launch them. | ||
|
||
Create a new user:: | ||
|
||
$ sudo adduser cuckoo | ||
|
||
If you're using VirtualBox, make sure the new user belongs to the "vboxusers" | ||
group (or the group you used to run VirtualBox):: | ||
|
||
$ sudo usermod -a -G vboxusers cuckoo | ||
|
||
If you're using KVM or any other libvirt based module, make sure the new user | ||
belongs to the "libvirtd" group (or the group your Linux distribution uses to | ||
run libvirt):: | ||
|
||
$ sudo usermod -a -G libvirtd cuckoo | ||
|
||
Install Cuckoo | ||
============== | ||
|
||
Extract or checkout your copy of Cuckoo to a path of your choice and you're | ||
ready to go ;-). | ||
|
||
After configuration, don't forget to run utils/community.py --force --rewrite --all | ||
to install all the available Cuckoo signature modules. | ||
|