This toolset is intended for administrating remote Linux devices that are directly connected or behind a proxy server (RaspberryPi in mind, but any remote Linux system will work), by simplifying 7 tasks:
make ssh
to connect the remote shell (either directly or over a link up server).- Responsively edit remote files via local IDE almost independent from the internet connection speed and interruptions ("Responsive remote development").
- Use simple drag and drop style file transfers (by
sshfs
). - Backup the target's entire root filesystem (by
rsync
). - Create fast and efficient differential full backups (by hardlinks or by BTRFS snapshots).
- Create a separate physical bootable system disk from any of your backups.
- Clone the current device with a new identity to create a new device.
- Linux OS
git
(for submodule fetching andmake update
)rsync
sshfs
Follow these steps for every project:
# on your host (eg. your laptop)
mkdir your-project
cd your-project
git clone --recursive https://github.com/aktos-io/dcs-tools
Assuming you are in /path/to/your-project
folder already,
-
Create your configuration file and mandatory folders/flags:
./dcs-tools/setup
-
(Optional): Send your RSA public key to the target in order to prevent asking password on every connection:
./dcs-tools/make-target-settings
either connect to your target by its direct IP address and port:
make conn-direct
or meet with your target on a link up server (see link-with-server)
make conn-over-proxy
See doc/configuration.md for explanations.
make ssh
Makes ssh connection either directly or via the link up server according to your connection type.
Responsive remote development means keeping a local folder in sync with a remote folder.
-
cp ./sync-config-example.sh path/to/your/project/folder/my-sync-config.sh
-
Edit
my-sync-config.sh
accordingly. See./sync-with-sgw.sh --help
for options. -
Send your project folder to your remote system and watch for changes by:
./sync-with-sgw.sh -c path/to/your/project/folder/my-sync-config.sh --dry-run
This will keep path/to/your/project/folder/
and $dest_dir
(within your config file) in sync. Remove the --dry-run
switch for real transfer if the transfer summary is as you expected.
Synchronization will exclude the .git
folder and the other files/folders listed in path/to/your/project/folder/.gitignore
.
run_before_sync
hooks can be used to build, bundle, copy files or perfom any other tasks before the actual synchronization. Synchronization will fail and display a visual error message if any of the hooks fails.
make mount-root
Mounts the root folder to your-project/NODE_ROOT
, which you can use for drag-n-drop style file transfers.
You can later unmount with make umount-root
without using sudo
command.
This feature is only practical with fast (generally on local) connections.
make sync-root
Sync whole root partition of the target with your-project/sync-root
folder. You can use this command consecutively to keep your sync-root
folder up to date as much as possible. Only differentiating data will be transmitted (if any).
This command will only copy the current state of your target to your host machine. You will need to create your backups manually, with make backup-sync-root
command
make backup-sync-root
Create a backup from the sync-root
folder into ./backups
folder either by hardlinks method or by creating a btrfs subvolume, according to your your-project/method-*
flag.
method-*
flags can be set bymake method-btrfs
ormake method-hardlinks
commands.
Taken from https://superuser.com/a/974091/187576
Example connection:
[PLC 192.168.250.9 UDP/9600] <--> [Scada-Gateway (sgw)] <--> [Rendezvous server] <--> [Laptop] <--> [Virtual machine]
-
Assign the same IP of the PLC to your laptop:
sudo ip a add 192.168.250.9/24 dev wlp2s0
-
In terminal 1 on your laptop:
laptop$ cd your/project laptop$ make ssh ARGS="-L 9602:localhost:9602" sgw$ socat -T10 TCP4-LISTEN:9602,fork UDP4:192.168.250.9:9600
-
In terminal 2 on your laptop:
laptop$ sudo socat UDP4-LISTEN:9600,fork TCP4:localhost:9602
-
In your virtual machine's network settings -> Bridged adapter -> wlp2s0
Result: Your virtual machine will not detect any difference and will connect the target PLC as if it is connected directly.
Following tools are for advanced usage, use them with extreme caution.
./dcs-tools/produce-bootable-disk [--help]
Produces a bootable disk that is capable of booting your target hardware.
./dcs-tools/restore-from-backup [--help]
Restores all files from backup folder to the SD card. Useful when you want to update your physical backup disk with your latest sync folder.
Make appropriate changes to give new identity to an installation. Useful for creating a new controller/machine based on current installation.
./dcs-tools/give-new-id [--help]
Backups have following properties:
- portable (you can move your copies around. eg: take first backup locally, remove disk, mound on another computer,
make backup-root
again) - differential (only differences are transmitted)
- dead simple copies of original files (you can simply copy/paste when you need to restore or move your files around) (see BIG WARNING)
- versioned : Take any number of full backups as much as you like. You are responsible for deleting old backups.
- efficient storage usage (if you backup your 10 GB root for 5 times, you end up using 10.2 GB disk space if you have no modified files. But you will see the
snapshots
folder has a size of 50 GB. (Magic? No: Hardlinks or BTRFS subvolumes)
If you are not using btrfs, "dead simple copies" feature has a problem by its design: As backups are just plain folders, this may lead breaking (unintentionally changing) the ownership of the files if you move/copy your files carelessly (eg. if you mv your/snapshot to/another/location
and then interrupt the command in the middle, you will probably end up with moved files having root:root
permissions.) That's why you SHOULD always use rsync
for such movements.
If you are using
--method btrfs
, backups are made as readonly snapshots, so you will not have such problems.
Make sure that you are performing make sync-root
command on a native Linux
filesystem. You will end up having a backup with wrong file ownership and/or
permissions otherwise.