Comments on: Advanced Copy Command – Shows Progress Bar While Copying/Moving Files in Linux https://www.tecmint.com/advanced-copy-command-progress-bar/ Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks. Fri, 14 Jul 2023 04:01:10 +0000 hourly 1 By: Pero Perić https://www.tecmint.com/advanced-copy-command-progress-bar/comment-page-1/#comment-1317817 Thu, 20 Feb 2020 11:14:29 +0000 http://www.tecmint.com/?p=4402#comment-1317817 “There are two methods to install Advanced-Copy utility in Linux systems, either you compile from sources or using pre-compiled binaries.”

And for the second method??????????? Nothing?! Zero! Zilch! Nada!

]]>
By: Ravi Saive https://www.tecmint.com/advanced-copy-command-progress-bar/comment-page-1/#comment-1112324 Thu, 14 Mar 2019 05:31:08 +0000 http://www.tecmint.com/?p=4402#comment-1112324 In reply to Janis.

@Janis,

But the -g options worked for me on CentOS 6 version. On which Linux distribution version you’ve tried? let me give a try and see..

]]>
By: Janis https://www.tecmint.com/advanced-copy-command-progress-bar/comment-page-1/#comment-1111840 Wed, 13 Mar 2019 15:33:12 +0000 http://www.tecmint.com/?p=4402#comment-1111840 Hello Ravi,

alias cp='cp -gR'
alias mv='mv -g'

is wrong. As command cp and mv does not have option -g.

Right aliases:

alias cp='cpg -gR'
alias mv='mvg -g'
]]>
By: postal https://www.tecmint.com/advanced-copy-command-progress-bar/comment-page-1/#comment-1083427 Mon, 17 Dec 2018 05:15:13 +0000 http://www.tecmint.com/?p=4402#comment-1083427 While running “make” i got this error, not sure what to do.

CC lib/freadseek.o
lib/freadseek.c: In function ‘freadptrinc’:
lib/freadseek.c:67:3: error: #error “Please port gnulib freadseek.c to your platform! Look at the definition of getc, getc_unlocked on your system, then report this to bug-gnulib.”
#error “Please port gnulib freadseek.c to your platform! Look at the definition of getc, getc_unlocked on your system, then report this to bug-gnulib.”
^~~~~
make[2]: *** [Makefile:6662: lib/freadseek.o] Error 1

]]>
By: Ravi Saive https://www.tecmint.com/advanced-copy-command-progress-bar/comment-page-1/#comment-946930 Mon, 11 Dec 2017 05:54:43 +0000 http://www.tecmint.com/?p=4402#comment-946930 In reply to Roxanne Benn.

@Roxanne,

You don’t have GCC header files, install them and run again same configure command again.

# yum install glibc-devel
]]>