Backup Synology DMS7.x on Mega.io
This article will show you how to backup your Synology NAS with DSM7 on Mega.io
This article will show you how to backup your Synology NAS with DSM7 on Mega.io
Secure the system First make sure to secure the backup of the system you will investigate and isolate the system from the network to prevent further compromise or tampering. You can trust no one anymore As the system we are investigating might have been compromised, we cannot trust any of
Master the "find" Command, essential Tips & Tricks for navigating your Linux System. Syntax: find [path...] [expression] Find all files ending with xml find / -type f -name "*.xml" Find a file with the exact name. (case insensitive) find /home -type f -iname "settings.cfg"
Checks : if a file is present This task will fail your Ansible playbook if the file doesn't exist and execute the actions under rescue (Here we send an email to admin@domain.com) tasks: - name: Check if we got the generate_report file in /etc/cron.d/
You've just created a beautiful application and now you want to deploy it. You may want to create your .DEB package Create the folder structure First, create the following structure (adapt the path /opt/sample-app to match your need) sample-app ├── DEBIAN │ ├── control │ └── postinst └── opt └── sample-app mkdir sample-app/DEBIAN