Skip to content

0. Setup and Installation

Ben "Overcast" Acord edited this page Mar 29, 2023 · 3 revisions

The steps outlined on this page will walk through the installation process for AutoRpt.

  1. Ensure your OS and installed apps are upgraded.
sudo apt-get update -y && sudo apt-get upgrade -y
  1. Create a home for AutoRpt:
cd /opt
sudo mkdir AutoRpt
  1. Set your user and group as owner.
sudo chown kali:kali AutoRpt
  1. Clone the GitHub repo.
git clone https://github.com/BenAcord/AutoRpt.git
  1. Change directory to the newly hydrated directory.
cd AutoRpt
  1. Review the setup script.
more setup.sh
  1. If you are content with script, run it to install dependencies and create symlinks.
./setup.sh
  1. If setup completed successfully you should be able to view the help using the symlink.
autorpt help

🥇 Congratulations! You're ready to use AutoRpt.

Clone this wiki locally