Which statement correctly describes the difference between a full backup and an incremental backup in a SCADA system?
Think about how much data each backup type copies each time.
Full backups copy all data regardless of changes. Incremental backups copy only data changed since the last backup, saving time and space.
Given the SCADA system backup command output below, what does it indicate?
Backup started at 02:00
Files copied: 1500
Files skipped: 300
Backup completed successfully in 45 minutes
Skipped files usually mean unchanged files not copied again.
The output shows 1500 files copied and 300 skipped, meaning unchanged files were not copied again. The backup finished successfully in 45 minutes.
You need to configure a SCADA system to perform a full backup every Sunday at 3 AM and incremental backups Monday through Saturday at 3 AM. Which cron schedule correctly implements this?
Remember Sunday is day 0 in cron and scripts must run at 3 AM.
Cron '0 3 * * 0' runs full backup Sundays at 3 AM; '0 3 * * 1-6' runs incremental backups Monday to Saturday at 3 AM.
A SCADA system backup script fails with the error: 'Permission denied: cannot write to /backup/storage'. What is the most likely cause?
Permission denied errors usually relate to access rights.
The error indicates the script cannot write to the directory due to permission issues, so directory permissions need fixing.
Which backup strategy best balances data safety and system performance for a critical SCADA system with 24/7 uptime?
Consider backup frequency, system load, and disaster recovery.
Daily incremental and weekly full backups during low-activity hours reduce load while ensuring data safety. Offsite storage protects against site disasters.