Correct Answer: To change the root password on a Linux system when you do not know the current root password and need to perform tasks like Network monitoring, Backup, and Restore, you will need to boot the system in single-user mode or via other methods such as the rescue shell. Here are the steps to do that, specifically tailored for systems like RHEL7 or similar distributions using GRUB2. The steps are as follows: 1. Restart the system. 2. At the GRUB boot menu, highlight the default boot entry and press 'e' to edit the boot parameters. 3. Locate the line that starts with 'linux' or 'linux16' and append 'rd.break' to the end of this line. 4. Press Ctrl+X or F10 to boot with these parameters. 5. The system will boot into a minimal rescue shell. At this shell, enter the following commands to mount the root filesystem and change the root password: a) mount -o remount,rw /sysroot b) chroot /sysroot c) passwd (and enter the new password 'redhat') d) touch /.autorelabel (this is necessary if SELinux is enabled to ensure proper labeling) e) exit (to exit the chroot environment) f) exit (to continue normal boot). 6. The system will reboot, and you can log in with the user 'root' using the new password 'redhat'. This method ensures that the root password is changed securely and the system is returned to its default runlevel.