Try GOLD - Free
A Simple System that Uses Duplicati for Backing Up Data
Open Source For You
|August 2025
The open source based data backup system outlined here can be really useful for a small office home office setup. Learn how to set up Duplicati on Windows, back up data to a Linux server, schedule daily backups, secure them with encryption, restore files when needed, and receive email notifications.
Small office and home office (SOHO) environments often rely on a few computers and basic storage devices to manage essential data like client records, invoices, and project files.
While the setup is simple, the data is valuable and losing it can cause serious disruptions. Data loss can occur due to hardware failures, accidental deletion, or malware attacks. Yet, many SOHO users lack a proper backup system or depend on manual copies that are easy to overlook.
So let’s learn how to build a secure and automated backup system using Duplicati, an open source tool that supports encryption, scheduling, and both local and network storage.
System overview
To demonstrate the backup system, we use a typical SOHO arrangement involving two devices on the same local network:
- A Windows laptop, used for regular office tasks such as document editing, billing, and project handling.
- An Ubuntu virtual machine hosted locally using VirtualBox, which serves as the backup destination.
- Duplicati, installed on the Windows machine to manage the backup process.
The Ubuntu virtual machine is prepared to receive secure file transfers using the SFTP protocol. The following steps were followed to configure the Linux server as a backup target.
Install SSH server:
To allow secure access, the SSH service is installed using the following steps:
$ sudo apt update && sudo apt install openssh-server
Create a backup user:
A dedicated user named 'backupuser' is created to handle incoming backup data:
$ sudo adduser backupuser
A password is set during the process to authenticate incoming connections.
Create backup directory:
A directory is created for storing backup files, and ownership is assigned to the new user:
$ sudo mkdir -p /home/backupuser/duplicati-backups
This story is from the August 2025 edition of Open Source For You.
Subscribe to Magzter GOLD to access thousands of curated premium stories, and 10,000+ magazines and newspapers.
Already a subscriber? Sign In
MORE STORIES FROM Open Source For You
Open Source For You
Why Decentralised Identity is the Security Bedrock for Agentic AI
As AI agents begin to act on behalf of executives (signing contracts, moving funds), how do we verify their identity? In the framework proposed here, open source decentralised identifiers act as the 'passport' for AI agents, ensuring every autonomous action is cryptographically signed and authorised.
6 mins
May 2026
Open Source For You
Why Blockchain Development Rides on Open Source
The blockchain has moved from cryptocurrencies to widespread applications in industries like healthcare and supply chain management. Find out why it owes its evolution to open source.
5 mins
May 2026
Open Source For You
How AI is Transforming Air Travel Operations
From smarter flight planning to personalised airport experience, AI is changing how we fly, often behind the scenes, but with a big impact you can feel.
8 mins
May 2026
Open Source For You
Cloudflare open sources Pipit to democratise large AI models
Cloudflare has open sourced Project Pipit, releasing a lossless compression tool that could fundamentally reshape how large language models are distributed and deployed.
1 min
May 2026
Open Source For You
Cysic's Venus could reduce ZK-rollup costs
Cysic has released Venus as open source code, unveiling a hardwareoptimised proving backend for the open source Zisk zkVM that could significantly reduce zeroknowledge rollup costs and make ZK-based Ethereum layer-2 networks price-competitive with optimistic rollups.
1 min
May 2026
Open Source For You
NVIDIA launches Ising, the world's first quantum AI model family
NVIDIA has unveiled Ising, the world's first family of open source quantum AI models, positioning open source AI as the control layer for fault-tolerant quantum computing infrastructure.
1 min
May 2026
Open Source For You
Chinese researchers cut bamboo drone control latency with open source flight controller
A research team from Northwestern Polytechnical University's School of Civil Aviation in China has released what it describes as the world's first open source flight control system for bamboo-frame drones, making the software freely available to accelerate the development of low-cost, ecofriendly UAVs.
1 min
May 2026
Open Source For You
Managing Blockchain Node Infrastructure with Kubernetes
As blockchains increase exponentially in size, managing them is a challenge. Kubernetes and containerisation are essential components of new age blockchain infrastructure management.
7 mins
May 2026
Open Source For You
FossID's Agentic SCA brings checks into AI coding
FossID has unveiled Agentic SCA, a new software composition analysis layer purpose-built for AI-driven software development, marking a major shift in how open source compliance is enforced within modern coding workflows.
1 min
May 2026
Open Source For You
India hits 27M on GitHub
With more than 27 million developers on GitHub, India is the world's fastest-growing developer hub and is reinforcing its leadership in global open source innovation.
1 min
May 2026
Listen
Translate
Change font size

