User Tools

Site Tools


installing_lucy_on_linux

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
installing_lucy_on_linux [2019/03/27 15:43] – [What minimal packages are needed for the installer to work?] lucyinstalling_lucy_on_linux [2020/08/20 11:18] – [Uninstall LUCY] lucy
Line 34: Line 34:
   * **Make sure you use an updated list of repositories**: Get the latest list by typing "apt-get update" (apt-get update downloads the package lists from the repositories and "updates" them to get information on the newest versions of packages).    * **Make sure you use an updated list of repositories**: Get the latest list by typing "apt-get update" (apt-get update downloads the package lists from the repositories and "updates" them to get information on the newest versions of packages). 
   * **Make sure you have the latest PEM files**: Run "apt-get install ca-certificates". This package includes PEM files of CA certificates to allow SSL-based applications to check for the authenticity of SSL connection.   * **Make sure you have the latest PEM files**: Run "apt-get install ca-certificates". This package includes PEM files of CA certificates to allow SSL-based applications to check for the authenticity of SSL connection.
-  * **Make sure you have enough disk space in your temp drive**: Free some space by using "umount /tmp" in case there is not enough space. In general, the LUCY installation requires at least 30 GB HD. Other hardware requirements are described [[hardware|here]].+  * **Make sure you have enough disk space in your temp drive**: Free some space by using "umount /tmp" in case there is not enough space. In general, the LUCY installation requires at least 30 GB HDD. Other hardware requirements are described [[hardware|here]].
  
  
Line 54: Line 54:
 ===== What are the hardware/Disk requirements? ===== ===== What are the hardware/Disk requirements? =====
  
-  * TMP: You will need at least GB Space in the tmp directory. Please unmount your tmp in case you need to free some space there (example: "umount /tmp")+  * TMP: You will need at least GB Space in the tmp directory. Please unmount your tmp in case you need to free some space there (example: "umount /tmp")
   * Other hardware requirements can be found [[hardware|here]]   * Other hardware requirements can be found [[hardware|here]]
  
Line 60: Line 60:
 ===== Installation tutorial ===== ===== Installation tutorial =====
  
-1) First of all, download the file that you are going to execute e.g. "install.sh" from our download location (usually under http://phishing-server.comand save it in your directory. If you are using a terminal you first need to enumerate the current download link by pressing F12 in your browser when visiting our download section and then use **wget** to download the file (example: "wget http://download.phishing-server.com/dl/lucy-latest/install.sh"\\+1) First of all, download the file that you are going to execute e.g. "install.sh" from our download [[https://lucysecurity.com/download/|location]] and save it in your directory. If you are using a terminal you first need to enumerate the current download link by pressing F12 in your browser when visiting our download section and then use **wget** to download the file (example: "wget https://download.phishing-server.com/dl/lucy-latest/install.sh"\\
 2) Secondly, open the Terminal from Menu "Accessories \ Terminal".\\ 2) Secondly, open the Terminal from Menu "Accessories \ Terminal".\\
 3) Now type cd to the directory where you downloaded the file.\\ 3) Now type cd to the directory where you downloaded the file.\\
Line 107: Line 107:
  
 ===== Uninstall LUCY ===== ===== Uninstall LUCY =====
-If you want to remove LUCY you first need to get a list of all packages installed using $awk '/^Selecting/ {gsub(/\./,""); print $5}' /var/log/apt/term.log (which displays installed packages in historical order, and then purges the last packages). That list will enable you to remove the according packages. 
-This method works for legacy installation method only. 
  
 +If you want to remove LUCY you first need to get a list of all packages installed using the command (which displays installed packages in historical order, and then purges the last packages):
 +<code>
 +awk '/^Selecting/ {gsub(/\./,""); print $5}' /var/log/apt/term.log
 +</code>
  
 +That list will enable you to remove the according packages. This method works for legacy installation method only.
 +
 +For Docker-based installation you simply need to stop the container and remove it:
 +
 +<code>
 +docker stop lucy
 +docker ps -a
 +docker container rm <CONTAINER ID>
 +</code>
 ====== Frequently asked questions (FAQ) ====== ====== Frequently asked questions (FAQ) ======
 ===== Which components are installed with the installer script? What modifications are made to Linux OS by the installer? ===== ===== Which components are installed with the installer script? What modifications are made to Linux OS by the installer? =====
installing_lucy_on_linux.txt · Last modified: 2022/06/22 12:37 by lucysecurity