Search for: rsync backup

linux bash rsync how to backup over internet script v1.1
30 Jun 2019

update: safety first! when it comes to important files: safety comes first thus recommend to the user that wants to go pro the following backup system: have two complete backups at two different places: backupA: at the company, USB 3.0 […]

13 Mar 2015

update: safety first! when it comes to important files: safety comes first thus recommend to the user that wants to go pro the following backup system: https://www.ebay.de/itm/Intenso-Memory-Board-4-TB-Externe-Festplatte-8-9-cm-3-5-Zoll-USB-3-2-Gen-1/402584943201 have two complete backups at two different places: backupA: at the company, USB […]

21 Sep 2016

in General: NFS is pretty fast protocol for accessing files. It uses less overhead than SMB/CIFS and therefore acchieves greater performance. method1) rsyncing to a nfs-mounted qnap nas went with 20,7 MBytes/sec. method2) while directly ssh-rsyncing to qnap works only […]

05 Jan 2016

smb/rsync – cannot allocate memory it’s not the linux/osx machine’s fault… it’s the windows! 😀 To sync a set of files from a linux raid to backup-HDD in a windows machine, you need to mount it (depending on your share, […]

26 May 2015

requirements: 1. descend into subdirectories/recursive (-r) 2. show me whats beeing done (-vv –progress) 3. do NOT CREATE /WHERE/STUFF/SHOULD/GO/SUBPATH but rather integrate/merge files and folders (if ../GO/SUBPATH already exists) [cc lang=”bash” escaped=”true” width=”600″] # simple mirroring of two directories # […]

Sun Fire UltraSparc T1000 RISC Server Overview
21 May 2018

want to buy one? check on ebay for “sun” and “sparc” recipe: what you will need: a T1000 alternatively: ear sealing headphones + music. a LAN switch with DHCP-server/router attached LAN cables (atleast 4x (1x DHCP-server, 1x workstation/client, 1x server […]

07 Jul 2017

btrfs is used by SUSE12 for the /root partition – where it is doing daily snapshots of the installed OS. It has more functionality built-in than just storing files. This article wants to take btrfs for a test-drive. Video Tutorials: […]

GNU Linux – messing with XFS – Why XFS?
15 May 2017

“XFS is a high performance journaling filesystem which originated on the SGI IRIX platform.” SGI (Silicon Graphics) is out of business since 2009. “The addition of 3D graphic capabilities to PCs, and the ability of clusters of Linux– and BSD-based […]

30 Aug 2016

0. generate keys on client [cc lang=”bash” escaped=”true” width=”600″] ssh-keygen -t rsa -C “backup user on client that wants to rsync to qnap far away”; [/cc] when asked for passphrase, do not enter anything… 1. one needs to upload one’s […]

30 Jun 2015

… everyone hates updates. But they are necessary to keep systems secure. in Debian you do this either with apt or with aptitude or with both. (in case apt fails to resolve dependencies use aptitude to resolve it) the process […]

GNU Linux -> List all open ports and listening services /etc/services
16 Jun 2015

what service/program is using what port: # list all open ports and listening services/programs lsof -i -P -n; web gui based -> https://dwaves.de/2018/04/04/monitoring-your-network/ watch traffic on terminal -> https://dwaves.de/2017/06/20/linux-bash-terminal-monitor-watch-network-traffic-in-real-time/ resource monitoring -> https://dwaves.de/2017/07/17/debian9-stretch-basic-web-based-ressource-monitoring-with-basic collectd/ nmap returns a nice overview… but […]