Urbackup

Материал из wiki
Версия от 08:03, 15 августа 2023; Srv (обсуждение | вклад) (Новая страница: «Способы установки urbackup client 1 способ : On this page you will find step by step instructions to build, install and setup UrBackup on a Debian/Ubuntu GNU Linux system. 1. Install the dependencies UrBackup needs: WxWidgets >= 2.9.0 On Debian/Ubuntu you can do that with apt or your favourite package manager: apt install build-essential "g++" libwxgtk3.0-dev "libcrypto++-dev" libz-dev 2. Download the UrBackup client source files...»)
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

Способы установки urbackup client

1 способ :

On this page you will find step by step instructions to build, install and setup UrBackup on a Debian/Ubuntu GNU Linux system. 1.

Install the dependencies UrBackup needs: WxWidgets >= 2.9.0 On Debian/Ubuntu you can do that with apt or your favourite package manager:

apt install build-essential "g++" libwxgtk3.0-dev "libcrypto++-dev" libz-dev

2.

Download the UrBackup client source files and extract them via e.g.

wget https://hndl.urbackup.org/Client/2.5.24/urbackup-client-2.5.24.tar.gz tar xzf urbackup-client-2.5.24.tar.gz

3.

Build the UrBackup client and install it:

cd urbackup-client-2.5.24 ./configure make -j4 sudo make install

4.

Make sure that the UrBackup client backend runs correctly:

sudo urbackupclientbackend -v info

5.

Start the UrBackup client backend on startup by adding it e.g. to rc.local:

sudo chmod +x /etc/rc.local editor /etc/rc.local

Now add /usr/local/sbin/urbackupclientbackend -d before the exit 0. 6.

Start the UrBackup client frontend and setup your paths by executing

urbackupclientgui

and clicking on the tray icon and add paths. You can also do that on the server.


2 способ : TF=$(mktemp) && wget "https://hndl.urbackup.org/Client/2.4.11/UrBackup%20Client%20Linux%202.4.11.sh" -O $TF && sudo sh $TF; rm -f $TF