Questions tagged [progress-information]
The progress-information tag has no summary.
43 questions
0
votes
1
answer
55
views
Display a dynamic progress bar alongside script output
Don’t know the correct name for what I am looking for, and I don’t know if this is possible to make.
I have a script with many echo and program outputs that go to the terminal/screen.
Is there a way ...
-1
votes
1
answer
68
views
Why does fsck.exfat not print any progress info while it runs?
I'm running fsck.exfat -y -v on a large volume on an HDD - several TB's. And - while the disk seems to be spinning, and the process seems to be taking up a bit of CPU - no progress info is printed, ...
1
vote
1
answer
167
views
How to test that my terminal can report progress with OSC 9;4; sequences?
OSC (“Operating System Commands”) 9;4;x;y sequences are codes that inform the terminal of the progress of any task.
Each software has to implement this support to report the progress, and the terminal ...
0
votes
2
answers
225
views
True USB Thumb Drive Write Progress (Beyond Cache Lies) for Immediate Safe Ejection After Completion
In Debian 12, is there a method to see true progress indication when writing large files (e.g., ISOs >4GB) to a slow ventoy USB thumb drive, instead of a lying progress bar (rsync --progress/Nemo) ...
0
votes
0
answers
127
views
How to show make visible a tftp transfer progress in a script
I have a client app that launch in async mode a bash script that send a file to a TFTP server.
The issue is that I don't know how to show user the progress of this transfer, worst of all this ...
4
votes
3
answers
3k
views
Display progress for rsync with `--info=progress2` and `--files-from`
So I've been looking around for a while now and saw that rsync offers the insanely useful option --info=progress2 (from threads like this), which prints the overall update progress quite nicely. --no-...
0
votes
0
answers
43
views
How can I get the _real_ progress of dd, ignoring fast/staging buffers? [duplicate]
I'm using the dd command to write to a USB stick. My command is pretty straightforward:
dd if=myimage.iso of=/dev/sdd bs=1M status=progress
and indeed, I seem to be getting the progress reported:
...
0
votes
1
answer
399
views
How to read a command's output while it is running?
If a command were to output, say, a progress bar that updates live, until it stops, and I wanted to constantly obtain the percentage of said progress bar and display it in a GUI such as zenity, how ...
0
votes
1
answer
125
views
Pipeline progress report
Suppose I'm running a pipeline like this:
cat input.txt | foo | bar | baz | last_step > result.txt
Is there a way to make the shell print each step to stderr as it is executed?
I know that if the ...
0
votes
0
answers
236
views
estimating cp -r time
For a /data type folder that has gigabytes and thousands of files and sub folders, I will often do
tar -cf data.tar data {it was a 102gb tar file}
rsync -P data.tar /some_new_location
cd ...
0
votes
0
answers
61
views
How to wrap a process with an activity indicator?
I have a process which I'm running in a terminal session. The process prints nothing (or perhaps it prints a lot of junk which I redirect somewhere), and takes quite a while, e.g. a couple of minutes.
...
2
votes
1
answer
143
views
Is there any handy way to follow multiple piped commands' status output
Let's say I have serverA with a block device, the contents of which I want to move to serverB's block device via the computer I am working on as a relay. This is very handy with pipes, buffers, dd and ...
0
votes
1
answer
2k
views
How to add progress status of a downloading file in bash script
I want to show (regularly update) my download/upload progress of a file on my telegram bot.
I'm using aria2 for downloading and rclone for uploading. And all I'm using is bash/shell script.
aria2c $...
1
vote
1
answer
4k
views
Progress bar "dialog" to show progress based on command execution from function [duplicate]
How to make "dialog" progress bar increasing the counter, when each echo command is executed from function?
I have this code below as example, but I'm having problem of catching when command ...
1
vote
1
answer
1k
views
Hour glass/Progress while extracting large file from remote host in shell
I have a shell script, which is using unzip to get a very huge file from a remote directory to local directory within the shell. This operations taking pretty long time, roughly from 20-30 min.
#!/bin/...