RROrg/rr: Redpill Recovery (arpl-i18n)

Introduction Thanks to RROrg for providing the RR: Redpill鈥檚 Preinstallation and Recovery Environment, which offers a straightforward way to install Synology DSM OS on any x86/x64 architecture machine. One-Click to Deploy a DSM VM and Disk Mapping This script consolidates all functionalities and makes it interactive.馃殌 Creating the virtual machine in PVE Handling dynamic disk imports Adding options such as local-lvm bash -c "$(wget -qLO - https://kingtam.eu.org/scripts/rr-dsm.sh)" Customization (OPTION) Configures the VM to use UEFI firmware and sets the machine type to Q35, which provides better PCIe support....

March 23, 2025 路 6 min 路 1068 words 路 King Tam

Update CPU information on non-official Synology DSM system with ease

Update CPU information on non-official Synology DSM system with ease

July 13, 2023 路 1 min 路 150 words 路 King Tam

Automating DSM VM Creation on Proxmox VE with a Bash Script

Automating DSM VM Creation on Proxmox VE with a Bash Script

July 13, 2023 路 5 min 路 871 words 路 King Tam

Synology DSM Customization: Unlocking the Potential of NAS

Synology DSM Customization: Unlocking the Potential of NAS

June 21, 2023 路 4 min 路 740 words 路 King Tam

RSYNC USAGE

Introduction Rsync is an open-source application that provides fast incremental or mirror backup by leveraging built-in data deduplication algorithms. It is included in almost all Linux distributions. Features Can update whole directory trees and filesystems Optionally preserves symbolic links, hard links, file ownership, permissions, devices and times Requires no special privileges to install Internal pipelining reduces latency for multiple files Can use rsh, ssh or direct sockets as the transport Supports anonymous rsync which is ideal for mirroring Basic Use rsync -option source/ destination/ Option Description -v Verbose mode, outputs detailed information -r Recurse into directories -a Archive mode (-rlptgoD, no -A, -X, -U, -N, -H) -h Output numbers in a human-readable format -z Use compression to transfer data -e Specify the remote shell to use -P Same as 鈥損artial 鈥損rogress -W Copy files whole (without delta-xfer algorithm) 鈥損rogress Show progress during transfer 鈥揹elete Delete extraneous files from destination directories 鈥搑emove-source-files Sender removes synchronized files (non-dir) 鈥揺xclude=PATTERN Exclude files matching PATTERN 鈥搃nclude=PATTERN Don鈥檛 exclude files matching PATTERN 鈥揷opy-as=USER[:GROUP] Specify user and optional group for the copy 鈥揷hmod=CHMOD Affect file and/or directory permissions Samples rsync -avh /home/user/data/ /mnt/backup Copy /home/user/data/ (as source directory) to /mnt/backup (as destination directory), using the options -avh....

June 8, 2023 路 5 min 路 1049 words 路 King Tam