Add Progress Bar Output to Native Linux Copy and Move Commands

Channel:
Subscribers:
14,400
Published on ● Video Link: https://www.youtube.com/watch?v=Hhrwo2axo5Q



Duration: 0:57
950 views
24


#Linux #Debian #ProgressBars

Full steps can be found at https://i12bretro.github.io/tutorials/0778.html

--------------------------------------------------------------------
What is Advanced Copy?
--------------------------------------------------------------------
Advanced Copy is a mod for the GNU cp and GNU mv tools which adds a progress bar and provides some info on what's going on. It was written by Florian Zwicke and released under the GPL. - https://github.com/jarun/advcpmv/
 
   01. Log into the Linux device
   02. Launch a terminal and run the following commands
         # download coreutils
         wget http://ftp.gnu.org/gnu/coreutils/coreutils-8.32.tar.xz
         # extract the coreutils tar.xz
         tar xvJf coreutils-8.32.tar.xz
         # cd into the extracted coreutils directory
         cd coreutils-8.32
         # download the advance copy/move patch file
         wget https://raw.githubusercontent.com/jarun/advcpmv/master/advcpmv-0.8-8.32.patch
         # apply the patch file
         patch -p1 -i advcpmv-0.8-8.32.patch
         # prepare the current directory for building
         ./configure
         # build the patch cp and make binaries
         make
         # copy the new patch cp and mv commands for use
         sudo cp ./src/cp /usr/local/bin/cp && sudo cp ./src/mv /usr/local/bin/mv
         # cd back to user home
         cd ~
         # test a file copy with progress bar functionality by using -g or --progress-bar
         cp large-test large-test-copy -g
 
--------------------------------------------------------------------
--------------------------------------------------------------------


### Connect with me and others ###
★ Discord: https://discord.com/invite/EzenvmSHW8
★ Reddit: https://reddit.com/r/i12bretro
★ Twitter: https://twitter.com/i12bretro







Tags:
Add Progress Bars To Linux Copy And Move
CP
Copy
Debian
Enhanced Copy And Move
Enhanced GNU CP
Enhanced GNU MV
Enhanced Linux Utilities
GNU
Home Lab
Home Lab Ideas
How To
Linux
MV
Move
Progress Bar
Progress Bar GNU CP
Progress Bar GNU MV
Tutorial
i12bretro