All Collections
Dolphin Anty
Getting Started
Installing Dolphin {anty} on Linux/Ubuntu
Installing Dolphin {anty} on Linux/Ubuntu
Updated over a week ago

First, you need to download the version from our site.

To install an anti-detect on any Linux like system, you need to use the terminal (Ctrl+alt+t) or select Terminal from the general menu

Prescribe the following commands:

sudo apt update

This command updates the index and lists of packages on a Linux system. It does not update the packages themselves, as some users might have you believe!

What is updated is the package index file, a special database containing the lists of software packages defined in the OS repositories.

sudo apt upgrade

Updates all packages installed on your system for which there are updates to the latest versions found in the repositories you use.

sudo apt install fuse

FUSE (filesystem in userland) is an interface for userland programs to export the filesystem to the Linux kernel.Read more.

cd Downloads/

With this command inside the terminal we go to the folder where our file is located, the path and the folder may be different because of the language or the Linux distribution you have.

ls

The command displays a list of files in the folder we navigated to, where we will see our dolphin-anty-linux file in the list.

chmod +x dolphin-anty-linux-x86_64-latest.AppImage

This command adds execution rights to the file (startup)

After that we can move on to the main

 ./dolphin-anty-linux-x86_64-latest.AppImage

The command ./*filename* launches it, after which the DolphinAnty window will appear.

You can then run it not through the terminal, but simply by clicking on the file.

Since the AppImage format is not an installer but an "application image", it is essentially a portable version of the program.

If you have difficulties with launching it, try this command:

 ./dolphin-anty-linux-x86_64-latest.AppImage --no-sandbox

Notes:

When you enter the file name, you can type only "dolp" or some initial part, then press Tab and the name will be written in full.

You can also rename the file in advance to dolphin.appimage for easy typing

If any of the commands gives you the message that you do not have enough rights, try to repeat the command, but at the beginning of it insert sudo. (it will require an administrator password after entering the command)
You can also look at it visually: https://youtu.be/Mt21A_VPUS0

After executing the commands, the program can be run as a normal file

⚠️Important!!! Ubuntu version should be 22.04 or higher (also other distributions should correspond to the same version)

And "libc" library should be at least version 2.28 or higher.

  • Make sure the commands are entered correctly

  • On some distributions it may not fully install and may give an error in the terminal:
    error while loading shared libraries: libnss3.so: cannot open shared object file: No such file or directory
    You might want to try that sudo apt install -y libnss3
    After that you can safely run through the terminal as per the doc above

  • Make sure you have full access to this file

  • Check what server you are downloading updates and running the source code, if the server RU (set automatically), and your geo for example: Ukraine, then may not load updates and commands do not work, in this case, you need to change the geo in the settings, as shown in the screenshot and redo all the commands

  • If you are working with automation on Linux, you need to grant permissions to run chromedriver on a Linux system. (briefly, more below)

    This is a Permission Error, it occurs when Python tries to perform certain operations (in this case, running chromedriver) for which it does not have the proper permissions.

    String:

    PermissionError: [Errno 13] Permission denied: '/home/np_1961/Downloads/chromedriver119/chromedriver/chromedriver-linux'

    It tells you that your Python does not have permissions to execute the chromedriver-linux file, which is located at the specified path.

    To fix this problem, you need to change the permissions of the chromedriver-linux file so that Python can execute it. This can be done using the chmod command in the terminal. Here's how:

    The fix:

    Open a terminal.

    Navigate to the folder containing the executable file using the command cd /home/np_1961/Downloads/chromedriver119/chromedriver/.

    Run the chmod +x chromedriver-linux command.

    This will make the chromedriver-linux file executable, and your Python script should then be able to run it. If you still run into problems, make sure your user has read and write permissions to that directory.

Did this answer your question?