PHP 8.2.30
Preview: monitor_dd_progress Size: 482 B
/proc/thread-self/root/lib/dracut/modules.d/99kdumpbase/monitor_dd_progress

#!/bin/sh

SRC_FILE_MB=$1

while true
do
    DD_PID=`pidof dd`
    if [ -n "$DD_PID" ]; then
        break
    fi
done

while true
do
    sleep 5
    if [ ! -d /proc/$DD_PID ]; then
        break
    fi

    kill -s USR1 $DD_PID
    CURRENT_SIZE=`tail -n 1 /tmp/dd_progress_file | sed "s/[^0-9].*//g"`
    [ -n "$CURRENT_SIZE" ] && {
        CURRENT_MB=$(($CURRENT_SIZE / 1048576))
        echo -e "Copied $CURRENT_MB MB / $SRC_FILE_MB MB\r"
    }
done

rm -f /tmp/dd_progress_file

Directory Contents

Dirs: 0 × Files: 8

Name Size Perms Modified Actions
945 B lrw-r--r-- 2026-02-10 17:24:35
Edit Download
905 B lrw-r--r-- 2026-02-10 17:24:35
Edit Download
451 B lrw-r--r-- 2026-02-10 17:24:35
Edit Download
934 B lrw-r--r-- 2026-02-10 17:24:35
Edit Download
145 B lrwxr-xr-x 2026-02-10 17:24:35
Edit Download
7.88 KB lrwxr-xr-x 2026-02-10 17:24:35
Edit Download
35.01 KB lrwxr-xr-x 2026-02-10 17:24:35
Edit Download
482 B lrw-r--r-- 2026-02-10 17:24:35
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).