Complete the code to create a full backup of the SCADA system configuration.
backup_tool --mode=[1] --source /scada/config --destination /backup/fullThe full mode backs up all files completely, ensuring a complete copy of the system configuration.
Complete the command to perform an incremental backup of the SCADA logs.
backup_tool --mode=[1] --source /scada/logs --destination /backup/incrementalAn incremental backup saves only the changes since the last backup, saving time and space.
Fix the error in the backup command to restore the SCADA system from a differential backup.
restore_tool --backup-type=[1] --source /backup/diff --target /scadaThe differential backup type restores changes since the last full backup, so it must be specified correctly.
Fill both blanks to schedule a daily full backup and a weekly differential backup.
schedule_backup --daily=[1] --weekly=[2] --source /scada/data --destination /backup
Daily backups are full to ensure complete copies, while weekly backups are differential to save changes since last full backup.
Fill all three blanks to create a backup script that uses snapshot backups, compresses data, and verifies integrity.
backup_tool --mode=[1] --compress=[2] --verify=[3] --source /scada/system --destination /backup/snapshots
Snapshot backups capture system state quickly. Compression saves space (true), and verification ensures backup integrity (true).