Ubuntu Installation
1. Add Avocode GPG key to be able to verify the download by executing the command below in your command line
curl https://linux.avocode.com/avocode_pub.gpg | sudo apt-key add -
2. Add the Avocode repository
echo deb https://linux.avocode.com/apt all main >> /etc/apt/sources.list
Please note that you need access rights to sources.list
file. Open the file in privileged mode if the command above doesn't work. If you still get "Permission denied" error, you can also create a separate file with this line in /etc/apt/sources.list.d/avocode.list
. The command follows:
echo deb https://linux.avocode.com/apt all main >> /etc/apt/sources.list.d/avocode.list
If neither of the steps above work, please open the sources.list file manually in any text editor.
sudo gedit /etc/apt/sources.list
After it opens, just paste the line below to the last line of the file and save.
deb https://linux.avocode.com/apt all main
3. Update list of available packages
sudo apt-get update
4. Install Avocode
sudo apt-get install avocode
5. You're ready to go! 🎉 Launch Avocode and start inspecting.
Ubuntu Update
1. Check for latest updates
sudo apt-get update
2. Install new version of Avocode
sudo apt-get install avocode
Arch Installation
1. Acquire build files from AUR
git clone https://aur.archlinux.org/avocode.git && cd avocode
2. Build the package
makepkg -si
Arch Update
1. Pull the latest version from AUR
git pull origin master
2. Build again
makepkg -si
Easy way to install
Just extract the zip version, open terminal, and run ./avocode
. Make sure to navigate to the directory where you extracted Avocode in the terminal first, otherwise the command will fail.
NOTE: We're planning to have RPM/YUM version in the future.
TIP: Running ./avocode
command by itself will make the Avocode process attached to the open terminal window from where you launched Avocode - if you close the terminal window, Avocode will close as well! To avoid this, run ./avocode &
command instead - this will open the Avocode window as a standalone window.
If you have any other questions or anything is unclear, please contact us via the live chat.