CentOS 7 Linux Installation
- Updated On 17 Oct 2020
- 1 Minute To Read
-
Print
-
DarkLight
A short guide on how to install CecureCircle Agent on CentOS 7 Linux machine.
Download and Install
- Download the installer for Linux. File will have an extension .run
- Open the terminal and type these commands
- Add privilege to execute this file
chmod +x yourinstaller.run
- Execute the installer and provide invitation ID and server address
sudo INVITATION_ID=85342cbec2dd11e886c423f9716fb867 ./yourinstaller.run --tracker=dev.securecircle.io
After installation is finished reboot your machine
- Manually insert the driver
sudo modprobe fhfs
- Allow the driver to load on boot
echo fhfs | sudo tee /etc/modules-load.d/fhfs.conf
- Create some directory to use with SecureCircle. All read/write/encrypt/decrypt/magic folder operations should happen below this
sudo bash -c "mkdir /opt/securecircle; chown root.ec2-user /opt/securecircle; chmod g+w /opt/securecircle"
- Configure the directory to fhfs overlay mount at boot
echo 'none /opt/securecircle fhfs rw,relatime,mount=/opt/securecircle 0 0' | sudo tee -a /etc/fstab
- Mount everything in filesystem table (fstab)
sudo mount -a
Now you can use /opt/securecircle as the main directory or use another directory while installing
Uninstall
sudo service fhagent stop
sudo fhfsdrv uninstall
yum remove -y fhlinux
-----Manuale delete fhfs fstab mount point---
Reboot
Was This Article Helpful?