{"id":428,"date":"2018-08-19T11:35:11","date_gmt":"2018-08-19T08:35:11","guid":{"rendered":"http:\/\/kifarunix.com\/?p=428"},"modified":"2024-03-10T16:38:10","modified_gmt":"2024-03-10T13:38:10","slug":"how-to-install-and-configure-backuppc-as-a-backup-server-on-ubuntu-18-04","status":"publish","type":"post","link":"https:\/\/kifarunix.com\/how-to-install-and-configure-backuppc-as-a-backup-server-on-ubuntu-18-04\/","title":{"rendered":"Install and Configure BackupPC as a Backup Server on Ubuntu 18.04"},"content":{"rendered":"\n<p><span class=\"st\">In this guide, we will learn how to install and configure BackupPC as a backup server on Ubuntu 18.04.<\/span><\/p>\n\n\n\n<p><span class=\"st\">BackupPC is a free, high-performance enterprise-grade backup software suite with a web-based frontend that can be used for backing up Linux, Windows and Mac OS PCs and laptops to a server&#8217;s disk. BackupPC is highly configurable, easy to install and maintain. BackupPC requires no client as it is itself a client for several protocols that are handled by other services native to the client OS.<br><\/span><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Install and Configure BackupPC on Ubuntu 18.04<\/h2>\n\n\n\n<p>Update and upgrade your system packages.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>apt update<br>apt upgrade<\/code><\/pre>\n\n\n\n<p>BackupPC can be install from Ubuntu repos using the package manager.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>apt install -y backuppc<\/code><\/pre>\n\n\n\n<p>During installation you will be prompted to choose the type of web server to be configured. In our case, we will select option 1 to have Apache2 installed and configured for use with BackupPC. See the screenshot below.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1589\" height=\"623\" src=\"http:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/apache2setup.png\" alt=\"\" class=\"wp-image-417\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/apache2setup.png?v=1610131982 1589w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/apache2setup-768x301.png?v=1610131982 768w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/apache2setup-1536x602.png?v=1610131982 1536w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/apache2setup-150x59.png?v=1610131982 150w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/apache2setup-300x118.png?v=1610131982 300w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/apache2setup-696x273.png?v=1610131982 696w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/apache2setup-1068x419.png?v=1610131982 1068w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/apache2setup-1071x420.png?v=1610131982 1071w\" sizes=\"(max-width: 1589px) 100vw, 1589px\" \/><\/figure>\n\n\n\n<p>During installation, BackupPC will set up an administrative user, <strong>backuppc. <\/strong>This user is used to administer various tasks such as access the BackupPC web dashboard, carry out backups&#8230;A default password is also generated for this user for logging into web interface. As a security measure, this password has to be changed. Run the following command to change the password:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>htpasswd \/etc\/backuppc\/htpasswd backuppc<\/code><\/pre>\n\n\n\n<p>BackupPC uses different methods to get backup data from clients:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>smb<\/strong> &#8211; used for backing up windows machines<\/li>\n\n\n\n<li><strong>tar<\/strong> &#8211; used for backing up Linux\/Unix\/MacOSX systems<\/li>\n\n\n\n<li><a href=\"#backuplinuxwithbackuppc\"><strong>rsync<\/strong> &#8211; used for backing up Linux\/Unix\/MacOSX systems<\/a><\/li>\n<\/ul>\n\n\n\n<p>In this tutorial we will be using rsync protocol as a backup method. For rsync to work, BackupPC requires passwordless SSH login for <strong>backuppc<\/strong> user to every client it will be getting backup data from. As a result, switch to backuppc user on BackupPC server and generate passwordless ssh keys and copy them to clients.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>su - backuppc<\/code><\/pre>\n\n\n\n<p>This will opens up the sh shell. You can run bash command to launch bash shell.<\/p>\n\n\n\n<p>Generate SSH key pair by running the following command;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code><strong>ssh-keygen<\/strong> \nGenerating public\/private rsa key pair.\nEnter file in which to save the key (\/var\/lib\/backuppc\/.ssh\/id_rsa): <strong>ENTER<\/strong> \nCreated directory '\/var\/lib\/backuppc\/.ssh'.\nEnter passphrase (empty for no passphrase): <strong>ENTER<\/strong>\nEnter same passphrase again: <strong>ENTER<\/strong>\nYour identification has been saved in \/var\/lib\/backuppc\/.ssh\/id_rsa.\nYour public key has been saved in \/var\/lib\/backuppc\/.ssh\/id_rsa.pub.\nThe key fingerprint is:\nSHA256:qZUR\/Aohas\/rqkqp2ME1RHOA7D7vMiBvqXgGxr2RMoc backuppc@storagesrv01.example.com\nThe key's randomart image is:\n+---[RSA 2048]----+\n| . .+.... |\n| o..o. .. |\n| . ... ... |\n| +. . +. |\n|.ooo+ .S. |\n|+E+*o. o. |\n|o**+o.. |\n|=.Ooo |\n|O*o*o |\n+----[SHA256]-----+<\/code><\/pre>\n\n\n\n<p>Copy the SSH public to root user on each client from which the BackupPC will collect backup data. Or more conveniently, create an account on the client dedicated for backup purposes for example, create a backuppc user account on remote client and copy the public key to that user.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>useradd -m backuppc\npasswd backuppc<\/code><\/pre>\n\n\n\n<p>Now logout from client host and copy the SSH public key to backuppc user on the client.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>ssh-copy-id backuppc@192.168.43.214<\/code><\/pre>\n\n\n\n<p>Where 192.168.43.214 is my client IP address. Once you copy the key, you should be able to login without being prompted for a password.<\/p>\n\n\n\n<p><strong>NOTE<\/strong>: By default, BackupPC is using root user for backup. So if you happen to change the backup user, edit BackupPC configuration file,&nbsp;<strong>\/etc\/backuppc\/config.pl<\/strong> and edit the following lines by changing the <strong>root<\/strong> user to a user you are using for backup.<\/p>\n\n\n\n<p>Since we will be using rsync protocol as a backup method, we will make changes under <strong>Rsync\/Rsyncd Configuration.<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>vim \/etc\/backuppc\/config.pl<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>###########################################################################\n# Rsync\/Rsyncd Configuration\n# (can be overwritten in the per-PC log file)\n###########################################################################\n...\n# This setting only matters if $Conf{XferMethod} = 'rsync'.\n#<strong><em> Comment this line and add the same line with root user changed to backuppc<\/em><\/strong>\n<strong>#$Conf{RsyncClientCmd} = '$sshPath -q -x -l root $host $rsyncPath $argList+';<\/strong>\n$Conf{RsyncClientCmd} = '$sshPath -q -x -l<strong> backuppc<\/strong> $host $rsyncPath $argList+';\n...\n<strong># <em>Comment out these line and add the same line with root user changed to backuppc<\/em><\/strong>\n<strong>#$Conf{RsyncClientRestoreCmd} = '$sshPath -q -x -l root $host $rsyncPath $argList+';<\/strong>\n$Conf{RsyncClientRestoreCmd} = '$sshPath -q -x -l <strong>backuppc<\/strong> $host $rsyncPath $argList+';\n&nbsp;...<\/code><\/pre>\n\n\n\n<p>Restart backuppc service to apply the changes.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>systemctl restart backuppc<\/code><\/pre>\n\n\n\n<p>Now, test the login to client with the backup user to ensure user can successfully login to client. You can use root user if you didnt make the changes above.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>ssh -l backuppc client_IP whoami\nbackuppc<\/code><\/pre>\n\n\n\n<p>or<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>ssh -l root client_IP whoami\nroot<\/code><\/pre>\n\n\n\n<p>If you changed you backup user to non-root user, Login to the client host and allow the non-user to run the rsync command without being prompted for password by adding the user to sudoers list. backuppc for our case.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>ssh backuppc@client_IP\nsu -\necho \"backuppc ALL=NOPASSWD: \/usr\/bin\/rsync\" &gt; \/etc\/sudoers.d\/backuppc<\/code><\/pre>\n\n\n\n<p>You can run the command, <strong>which rsync<\/strong> to find the absolute path of rsync.<br>If rsync command is not installed, run the following commands to install it.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>apt install rsync -y\nyum install rsync -y<\/code><\/pre>\n\n\n\n<p>You may also want to disable ssh agent-forwarding, port-forwarding or even the pty for backuppc user logging in to the client from BackupPC. To do this, login to client, edit the ssh authorized key file and add the line, <strong>from=&#8221;backuppc_server_ip&#8221;,no-agent-forwarding,no-port-forwarding,no-pty,<\/strong> before the <strong>ssh-rsa <\/strong>keyword.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>vim \/home\/backuppc\/.ssh\/authorized_keys<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code><strong>from=\"192.168.43.154\",no-agent-forwarding,no-port-forwarding,no-pty<\/strong> ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCeetRD5TDVQV7wZ9K7k2D2LvPWi5+h6rP8TDRxMhYuG1oA3uS4S0GpZYMOcMRjW+gaeMzBVNZ6qK\/g3TyPx7fNsQipXYp0RaJvS\/M\/k9QChYkzvxFad\/WXDkx5Wsqzf1CfT\/eGBMaFICTYePKQTnsPn5Vd2zS\/7t\/XfYLJCXTz8EANn02xz+rrRAHzAwB4ZJ1jOYh\/LnWUfezJrlZssV1XmZ5E\/Gw8+YSdYwvf5gn3asBnwbmTAOxBKmSgff14s61LPcPX\/cRjeBC2QmWTmWKTk5zxsnrUQA3eRJ5KL3yYLZrxxSeTc1dMMTVq1q9ra+nmkiTtINCi\/XXhO3Qu7YAT backuppc@storagesrv01.example.com<\/code><\/pre>\n\n\n\n<p>If all that is okay, login to BackupPC via browser using the link, <strong>http:\/\/backuppc_server_IP\/backuppc<\/strong> and proceed with configuration. To access the dashboard, login the web credentials created above.<\/p>\n\n\n\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-421\" src=\"http:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/backuppc-login.png\" alt=\"\" width=\"1140\" height=\"440\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/backuppc-login.png?v=1610131985 1140w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/backuppc-login-768x296.png?v=1610131985 768w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/backuppc-login-150x58.png?v=1610131985 150w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/backuppc-login-300x116.png?v=1610131985 300w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/backuppc-login-696x269.png?v=1610131985 696w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/backuppc-login-1068x412.png?v=1610131985 1068w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/backuppc-login-1088x420.png?v=1610131985 1088w\" sizes=\"(max-width: 1140px) 100vw, 1140px\" \/><br>When you login, the dashboard below welcomes you.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1376\" height=\"608\" src=\"http:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/dasboard-1.png\" alt=\"\" class=\"wp-image-422\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/dasboard-1.png?v=1610131988 1376w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/dasboard-1-768x339.png?v=1610131988 768w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/dasboard-1-150x66.png?v=1610131988 150w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/dasboard-1-300x133.png?v=1610131988 300w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/dasboard-1-696x308.png?v=1610131988 696w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/dasboard-1-1068x472.png?v=1610131988 1068w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/dasboard-1-951x420.png?v=1610131988 951w\" sizes=\"(max-width: 1376px) 100vw, 1376px\" \/><\/figure>\n\n\n\n<p>Once you are logged in, you can now add the clients to backup. To add a client host, click on <strong>Edit Hosts<\/strong> on the left panel. This opens up a hosts configuration editor. Localhost is already added as the client but since we are only backing up remote clients, delete local hosts by clicking the <strong>delete<\/strong> button and click <strong>add<\/strong> to add you client hosts. For user, enter <strong>backuppc.<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1153\" height=\"458\" src=\"http:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/add-hosts.png\" alt=\"\" class=\"wp-image-424\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/add-hosts.png?v=1610131995 1153w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/add-hosts-768x305.png?v=1610131995 768w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/add-hosts-150x60.png?v=1610131995 150w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/add-hosts-300x119.png?v=1610131995 300w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/add-hosts-696x276.png?v=1610131995 696w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/add-hosts-1068x424.png?v=1610131995 1068w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/add-hosts-1057x420.png?v=1610131995 1057w\" sizes=\"(max-width: 1153px) 100vw, 1153px\" \/><\/figure>\n\n\n\n<p>When done adding hosts, click the save button to apply the changes.<\/p>\n\n\n\n<p>Once the changes are saved, Configure backup data transfer settings, ie the protocol for backup method, In this case, we are using rsync. So still on the configuration editor, Click <strong>Xfer<\/strong> tab. Under <strong>Xfer Settings<\/strong>, click the dropdown and select <strong>rsync<\/strong>.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"954\" height=\"448\" src=\"http:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/xfer.png\" alt=\"\" class=\"wp-image-434\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/xfer.png 954w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/xfer-768x361.png 768w\" sizes=\"(max-width: 954px) 100vw, 954px\" \/><\/figure>\n\n\n\n<p>Click Save to apply the changes.<\/p>\n\n\n\n<p>Next, we need to configure the paths to backup for the clients.<br>On the left pane, under <strong>Hosts<\/strong>, click on the dropdown button and select a client host.<br>Click on <strong>Edit Config<\/strong>. Then on the configuration editor, click <strong>Xfer<\/strong>.<\/p>\n\n\n\n<p>Under <strong>Xfer Settings<\/strong>, check the overide box under <strong>RsyncShareName<\/strong> and add specific path to back up on client. For instance the home directory of a user. To exclude some path from backing up, check the box under under <strong>BackupFilesExclude<\/strong> on <strong>Include\/Exclude<\/strong> settings and add the parent path then paths to exclude. See the screenshot below.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"895\" height=\"828\" src=\"http:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/host1-config.png\" alt=\"\" class=\"wp-image-436\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/host1-config.png 895w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/host1-config-768x711.png 768w\" sizes=\"(max-width: 895px) 100vw, 895px\" \/><\/figure>\n\n\n\n<p>Once done with settings, click save to apply changes.<\/p>\n\n\n\n<p>In our next step, we will be configuring backup schedule, There are two types of backing up data, <strong>Incremental<\/strong> backup and <strong>full<\/strong> backup. Incremental backup is done daily and only 6 most recent backupps are kept while full backup happens every 7 days and only newest copy of data is backed up.<\/p>\n\n\n\n<p>On the left pane, under <strong>Server<\/strong> settings, click <strong>Edit Config<\/strong> and navigate to <strong>Schedule<\/strong> tab.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"845\" height=\"876\" src=\"http:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/schedule.png\" alt=\"\" class=\"wp-image-426\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/schedule.png?v=1610132002 845w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/schedule-768x796.png?v=1610132002 768w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/schedule-150x156.png?v=1610132002 150w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/schedule-300x311.png?v=1610132002 300w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/schedule-696x722.png?v=1610132002 696w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/schedule-405x420.png?v=1610132002 405w\" sizes=\"(max-width: 845px) 100vw, 845px\" \/><\/figure>\n\n\n\n<p>You can make any changes as you see fit.<\/p>\n\n\n\n<p>Now that we have done most configurations, let us run a manual backup on the two clients.<br>Under <strong>Hosts<\/strong> on the top left panel, select the two hosts one by one and under <strong>Backup Summary<\/strong> &gt; <strong>User Actions<\/strong>, click <strong>Start Full Backup<\/strong> and if everything is okay, you should see Reply from server ok.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1145\" height=\"440\" src=\"http:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/fullbackupsuccess.png\" alt=\"\" class=\"wp-image-432\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/fullbackupsuccess.png?v=1610132005 1145w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/fullbackupsuccess-768x295.png?v=1610132005 768w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/fullbackupsuccess-150x58.png?v=1610132005 150w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/fullbackupsuccess-300x115.png?v=1610132005 300w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/fullbackupsuccess-696x267.png?v=1610132005 696w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/fullbackupsuccess-1068x410.png?v=1610132005 1068w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/fullbackupsuccess-1093x420.png?v=1610132005 1093w\" sizes=\"(max-width: 1145px) 100vw, 1145px\" \/><\/figure>\n\n\n\n<p>To check the backup logs, click the <strong>LOG file<\/strong> link on the left panel. You can also check under following path on the server:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>\/var\/lib\/backuppc\/pc\/<span class=\"highlight\">ip_address_of_client<\/span>\/<\/code><\/pre>\n\n\n\n<p>To check the backup summary, click the <strong>Host Summary<\/strong> link on the left pane, under <strong>Server<\/strong>.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1313\" height=\"267\" src=\"http:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/backuppc-summary.png\" alt=\"\" class=\"wp-image-437\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/backuppc-summary.png 1313w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/backuppc-summary-768x156.png 768w\" sizes=\"(max-width: 1313px) 100vw, 1313px\" \/><\/figure>\n\n\n\n<p>To have an overview of what is backedup, click the host IP as shown in the summary above, then click <strong>Browse Backups<\/strong> &gt; Backup number.<br><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-438\" src=\"http:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/browse-backups.png\" alt=\"\" width=\"1517\" height=\"808\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/browse-backups.png 1517w, https:\/\/kifarunix.com\/wp-content\/uploads\/2018\/08\/browse-backups-768x409.png 768w\" sizes=\"(max-width: 1517px) 100vw, 1517px\" \/><\/p>\n\n\n\n<p>There you go. That is basically what it takes to install and configure BackupPC and upto there, you have successfully configure a BackupPC server on Ubuntu 18.04 server.<\/p>\n\n\n\n<p>Learn how to backup windows systems using BackupPC by following the link below;<\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/backup-windows-system-via-smb-using-backuppc\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">Backup Windows System via SMB Using BackupPC<\/a><\/p>\n\n\n\n<p>You can also install BackupPC on Debian 10. Follow the link below;<\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/install-and-configure-backuppc-on-debian-10\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">Install and Configure BackupPC on Debian 10<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this guide, we will learn how to install and configure BackupPC as a backup server on Ubuntu 18.04. BackupPC is a free, high-performance enterprise-grade<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rank_math_lock_modified_date":false,"footnotes":""},"categories":[39,64],"tags":[89,91,90,67],"class_list":["post-428","post","type-post","status-publish","format-standard","hentry","category-storage","category-ubuntu-18-04","tag-backuppc","tag-backupps","tag-storage","tag-ubuntu-18-04","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-50"],"_links":{"self":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/428"}],"collection":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/comments?post=428"}],"version-history":[{"count":10,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/428\/revisions"}],"predecessor-version":[{"id":20948,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/428\/revisions\/20948"}],"wp:attachment":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media?parent=428"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/categories?post=428"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/tags?post=428"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}