Skip to main content

Installation

How to to install datoeenos a.k.a da2eenos?

The datoeenos (da2eenos) tool is fully developed using Python. You can install it on any Linux-compatible server with Python3  installed.  Your server needs Python3 version 3.6 or higher to use it.

To install datoeenos run the following command from the shell:

pip  --no-cache-dir install --extra-index-url https://pip.eenos.com/ datoeenos

You can also use the pip3 command too :

pip3  --no-cache-dir install --extra-index-url https://pip.eenos.com/ datoeenos

This will install all required packages for datoeenos. After installing the tools you may use the command datoeeenos or da2eenos to start converting.

datoeenos / da2eenos command options :

The following command options are available with this tool.

Command(s):
  -f, --full            Convert all Directadmin accounts and hosting packages
  -u user, --user user  Convert a single Directadmin user/reseller account 
  -b backup_file, --backupfile backup_file
                        Convert a Directadmin backup file(.tar.zst, .tar, .tar.gz)
  -p, --packages        Convert all Directadmin hosting packages

Backup convert option(s):
  --skipmysql           Exclude MySQL database(s)
  --skiphomedir         Exclude Homedir
  --skipemail           Exclude Email accounts 
  --skipresellerconfig  Exclude reseller privileges

Upload Option(s):
  -s path_to_store, --saveto path_to_store
                        A folder location to save the converted backups 

Option(s):
  -h, --help            show this help message and exit
  -d, --demon           Run convert process as daemon service
  -w workdir, --workdir workdir
                        A folder to generate temporary backup files,
                         Working directory : Default /root
  -pu path_to_script, --postupload path_to_script
                        A script path name to run after conversion.
                        You can use a bash script to upload the
                        converted backups to remote server.
Installing from source

You can install datoeenos from the source.  You may download the installation source from the da2Eenos Download Server

The sample command is as follows,

wget -c https://download.eenos.com/tools/datoeenos/datoeenos-1.0.0.tar.gz

Now  Build the  source as follows,

tar -xvzf datoeenos-1.0.0.tar.gz
cd datoeenos/
./autobuild.sh

Now install the Python packages as follows,

pip3 install dist/datoeenos-1.0.0-py3-none-any.whl

This will install the datoeenos tools.