* Re: [gentoo-user] PATH error?
[not found] <200611192041.42498.michaelkintzios@gmail.com>
@ 2006-11-19 23:22 ` Benno Schulenberg
2006-11-20 12:46 ` Dirk Heinrichs
[not found] ` <200611191516.00772.bss03@volumehost.net>
1 sibling, 1 reply; 24+ messages in thread
From: Benno Schulenberg @ 2006-11-19 23:22 UTC (permalink / raw
To: gentoo-user
Mick wrote:
> # cp --help
> cp: invalid option -- g
> Try `cp --help' for more information.
You apparently have "cp" aliased to "cp -g ...". Type 'alias' to
find out. Then remove this alias setting from your .bashrc file,
or whereever it is set, and relogin.
Benno
--
Cetere mi opinias ke ne ĉio tradukenda estas.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] PATH error?
2006-11-19 23:22 ` [gentoo-user] PATH error? Benno Schulenberg
@ 2006-11-20 12:46 ` Dirk Heinrichs
2006-11-20 14:30 ` Mick
0 siblings, 1 reply; 24+ messages in thread
From: Dirk Heinrichs @ 2006-11-20 12:46 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 749 bytes --]
Am Montag, 20. November 2006 00:22 schrieb ext Benno Schulenberg:
> Mick wrote:
> > # cp --help
> > cp: invalid option -- g
> > Try `cp --help' for more information.
>
> You apparently have "cp" aliased to "cp -g ...". Type 'alias' to
> find out. Then remove this alias setting from your .bashrc file,
> or whereever it is set, and relogin.
... or just unalias (instead of relogin).
Bye...
Dirk
--
Dirk Heinrichs | Tel: +49 (0)162 234 3408
Configuration Manager | Fax: +49 (0)211 47068 111
Capgemini Deutschland | Mail: dirk.heinrichs@capgemini.com
Hambornerstraße 55 | Web: http://www.capgemini.com
D-40472 Düsseldorf | ICQ#: 110037733
GPG Public Key C2E467BB | Keyserver: www.keyserver.net
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] PATH error?
2006-11-20 12:46 ` Dirk Heinrichs
@ 2006-11-20 14:30 ` Mick
0 siblings, 0 replies; 24+ messages in thread
From: Mick @ 2006-11-20 14:30 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 986 bytes --]
On Monday 20 November 2006 12:46, Dirk Heinrichs wrote:
> Am Montag, 20. November 2006 00:22 schrieb ext Benno Schulenberg:
> > Mick wrote:
> > > # cp --help
> > > cp: invalid option -- g
> > > Try `cp --help' for more information.
> >
> > You apparently have "cp" aliased to "cp -g ...". Type 'alias' to
> > find out. Then remove this alias setting from your .bashrc file,
> > or whereever it is set, and relogin.
>
> ... or just unalias (instead of relogin).
Thank you both, indeed I had the -g option in my aliases, have the options
changed recently for cp & mv commands?
==============================================
$ alias
alias cp='cp -ivg'
alias d='ls --color'
alias diff='colordiff'
alias grep='grep --color=auto'
alias less='less -r'
alias ll='ls --color -l'
alias ls='ls --color=auto'
alias mv='mv -ivg'
alias rm='rm -iv'
==============================================
I can't even remember what -g used to do . . .
--
Regards,
Mick
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 24+ messages in thread
* [OT] Progress bar for cp? (was:[gentoo-user] PATH error?)
[not found] ` <200611191516.00772.bss03@volumehost.net>
@ 2006-11-20 19:30 ` Ryan Tandy
2006-11-20 19:42 ` Mark
` (2 more replies)
2006-11-20 21:49 ` [gentoo-user] cp -g gone (was: " Alexander Skwar
1 sibling, 3 replies; 24+ messages in thread
From: Ryan Tandy @ 2006-11-20 19:30 UTC (permalink / raw
To: gentoo-user
Boyd Stephen Smith Jr. wrote:
> Remove your alias for cp, "graphical" mode (-g) is no longer available.
Which reminds me: now that -g is gone, is there any switch to cp to make
it display a progress bar? Any other (simple) way of getting a progress
bar for large files?
Thanks,
Ryan
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [OT] Progress bar for cp? (was:[gentoo-user] PATH error?)
2006-11-20 19:30 ` [OT] Progress bar for cp? (was:[gentoo-user] PATH error?) Ryan Tandy
@ 2006-11-20 19:42 ` Mark
2006-11-21 0:51 ` [gentoo-user] Re: [OT] Progress bar for cp? Ryan Tandy
2006-11-20 19:48 ` [OT] Progress bar for cp? (was:[gentoo-user] PATH error?) Richard Fish
2006-11-20 19:53 ` [OT] Progress bar for cp? (was:[gentoo-user] PATH error?) Mick
2 siblings, 1 reply; 24+ messages in thread
From: Mark @ 2006-11-20 19:42 UTC (permalink / raw
To: gentoo-user
On 20/11/06, Ryan Tandy <tarpman@tarpman.homelinux.com> wrote:
> Which reminds me: now that -g is gone, is there any switch to cp to make
> it display a progress bar? Any other (simple) way of getting a progress
> bar for large files?
Hi,
How about a rather neat ascii bar, http://www.theiling.de/projects/bar.html
[quote]
Copy a file
Standard: cp infile outfile
With Progress Bar: bar -o outfile infile
Copy several files to another directory (showing a common progress bar)
Standard: cp file1 file2 file2 outdir/
With Progress Bar: bar -c 'cat > outdir/${bar_file}' file1 file2 file3
[/quote]
Not exactly perfect but does work.
Thanks
Mark
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [OT] Progress bar for cp? (was:[gentoo-user] PATH error?)
2006-11-20 19:30 ` [OT] Progress bar for cp? (was:[gentoo-user] PATH error?) Ryan Tandy
2006-11-20 19:42 ` Mark
@ 2006-11-20 19:48 ` Richard Fish
2006-11-21 0:50 ` [gentoo-user] Re: [OT] Progress bar for cp? Ryan Tandy
2006-11-23 18:26 ` [OT] Progress bar for cp? (was:[gentoo-user] PATH error?) Daniel Vrcic
2006-11-20 19:53 ` [OT] Progress bar for cp? (was:[gentoo-user] PATH error?) Mick
2 siblings, 2 replies; 24+ messages in thread
From: Richard Fish @ 2006-11-20 19:48 UTC (permalink / raw
To: gentoo-user
On 11/20/06, Ryan Tandy <tarpman@tarpman.homelinux.com> wrote:
> Which reminds me: now that -g is gone, is there any switch to cp to make
> it display a progress bar?
Nope.
> Any other (simple) way of getting a progress bar for large files?
Use another program, like the filemanager in your desktop, or scp
(yes, scp works for local copying as well!).
-Richard
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [OT] Progress bar for cp? (was:[gentoo-user] PATH error?)
2006-11-20 19:30 ` [OT] Progress bar for cp? (was:[gentoo-user] PATH error?) Ryan Tandy
2006-11-20 19:42 ` Mark
2006-11-20 19:48 ` [OT] Progress bar for cp? (was:[gentoo-user] PATH error?) Richard Fish
@ 2006-11-20 19:53 ` Mick
2006-11-20 20:10 ` Richard Fish
2 siblings, 1 reply; 24+ messages in thread
From: Mick @ 2006-11-20 19:53 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 551 bytes --]
On Monday 20 November 2006 19:30, Ryan Tandy wrote:
> Boyd Stephen Smith Jr. wrote:
> > Remove your alias for cp, "graphical" mode (-g) is no longer available.
>
> Which reminds me: now that -g is gone, is there any switch to cp to make
> it display a progress bar? Any other (simple) way of getting a progress
> bar for large files?
I was trying to remember what -g stood for and just confirmed my suspicion why
a progress bar is no longer being displayed. What's the current equivalent
(why was -g taken out)?
--
Regards,
Mick
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [OT] Progress bar for cp? (was:[gentoo-user] PATH error?)
2006-11-20 19:53 ` [OT] Progress bar for cp? (was:[gentoo-user] PATH error?) Mick
@ 2006-11-20 20:10 ` Richard Fish
2006-11-20 21:35 ` Michael Sullivan
2006-11-21 14:48 ` Mrugesh Karnik
0 siblings, 2 replies; 24+ messages in thread
From: Richard Fish @ 2006-11-20 20:10 UTC (permalink / raw
To: gentoo-user
On 11/20/06, Mick <michaelkintzios@gmail.com> wrote:
> I was trying to remember what -g stood for and just confirmed my suspicion why
> a progress bar is no longer being displayed. What's the current equivalent
> (why was -g taken out)?
There is no equivalent...the progress bar was a gentoo-specific patch
that was rejected by upstream, so it got dropped.
http://bugs.gentoo.org/show_bug.cgi?id=146964
-Richard
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [OT] Progress bar for cp? (was:[gentoo-user] PATH error?)
2006-11-20 20:10 ` Richard Fish
@ 2006-11-20 21:35 ` Michael Sullivan
2006-11-20 21:51 ` Richard Fish
2006-11-21 14:48 ` Mrugesh Karnik
1 sibling, 1 reply; 24+ messages in thread
From: Michael Sullivan @ 2006-11-20 21:35 UTC (permalink / raw
To: gentoo-user
On Mon, 2006-11-20 at 13:10 -0700, Richard Fish wrote:
> On 11/20/06, Mick <michaelkintzios@gmail.com> wrote:
> > I was trying to remember what -g stood for and just confirmed my suspicion why
> > a progress bar is no longer being displayed. What's the current equivalent
> > (why was -g taken out)?
>
> There is no equivalent...the progress bar was a gentoo-specific patch
> that was rejected by upstream, so it got dropped.
>
> http://bugs.gentoo.org/show_bug.cgi?id=146964
>
> -Richard
Where can we get this patch? I looked at the bug report, but I couldn't
find a link for the patch...
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* [gentoo-user] cp -g gone (was: PATH error?)
[not found] ` <200611191516.00772.bss03@volumehost.net>
2006-11-20 19:30 ` [OT] Progress bar for cp? (was:[gentoo-user] PATH error?) Ryan Tandy
@ 2006-11-20 21:49 ` Alexander Skwar
2006-11-20 21:52 ` Richard Fish
1 sibling, 1 reply; 24+ messages in thread
From: Alexander Skwar @ 2006-11-20 21:49 UTC (permalink / raw
To: gentoo-user
· Boyd Stephen Smith Jr. <bss03@volumehost.net>:
> Remove your alias for cp, "graphical" mode (-g) is no longer available.
Does anyone know, why it is gone? I remember, that it was
there and then a short time later, it was gone again.
Alexander Skwar
--
love, n.:
When it's growing, you don't mind watering it with a few tears.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [OT] Progress bar for cp? (was:[gentoo-user] PATH error?)
2006-11-20 21:35 ` Michael Sullivan
@ 2006-11-20 21:51 ` Richard Fish
0 siblings, 0 replies; 24+ messages in thread
From: Richard Fish @ 2006-11-20 21:51 UTC (permalink / raw
To: gentoo-user
On 11/20/06, Michael Sullivan <michael@espersunited.com> wrote:
> Where can we get this patch? I looked at the bug report, but I couldn't
> find a link for the patch...
It's patch/generic/001_all_coreutils-gen-progress-bar.patch in the
coreutils-$version-patches.tar.bz2 distfile. Versions after 5.97
dropped the patch, so you may need to get the distfile again from your
favorite mirror. Fex:
ftp://mirror.datapipe.net/gentoo/distfiles/coreutils-5.97-patches-1.0.tar.bz2
-Richard
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] cp -g gone (was: PATH error?)
2006-11-20 21:49 ` [gentoo-user] cp -g gone (was: " Alexander Skwar
@ 2006-11-20 21:52 ` Richard Fish
0 siblings, 0 replies; 24+ messages in thread
From: Richard Fish @ 2006-11-20 21:52 UTC (permalink / raw
To: gentoo-user
On 11/20/06, Alexander Skwar <listen@alexander.skwar.name> wrote:
> · Boyd Stephen Smith Jr. <bss03@volumehost.net>:
>
> > Remove your alias for cp, "graphical" mode (-g) is no longer available.
>
> Does anyone know, why it is gone? I remember, that it was
> there and then a short time later, it was gone again.
>From the header of the patch:
----
Upstream has been contacted about this a few times ...
they dont want progress bars in mv/cp:
http://lists.gnu.org/archive/html/bug-coreutils/2003-08/msg00114.html
http://lists.gnu.org/archive/html/bug-coreutils/2003-09/msg00083.html
http://lists.gnu.org/archive/html/bug-coreutils/2003-09/msg00084.html
but they don't seem to mind a general util ... add this to future patchset:
http://lists.gnu.org/archive/html/bug-coreutils/2003-09/msg00101.html
http://lists.gnu.org/archive/html/bug-coreutils/2004-02/msg00071.html
----
-Richard
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* [gentoo-user] Re: [OT] Progress bar for cp?
2006-11-20 19:48 ` [OT] Progress bar for cp? (was:[gentoo-user] PATH error?) Richard Fish
@ 2006-11-21 0:50 ` Ryan Tandy
2006-11-23 18:26 ` [OT] Progress bar for cp? (was:[gentoo-user] PATH error?) Daniel Vrcic
1 sibling, 0 replies; 24+ messages in thread
From: Ryan Tandy @ 2006-11-21 0:50 UTC (permalink / raw
To: gentoo-user
Richard Fish wrote:
> Use another program, like the filemanager in your desktop
I guess that means I'll have to get around to choosing and installing a
file manager eventually. :P
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* [gentoo-user] Re: [OT] Progress bar for cp?
2006-11-20 19:42 ` Mark
@ 2006-11-21 0:51 ` Ryan Tandy
0 siblings, 0 replies; 24+ messages in thread
From: Ryan Tandy @ 2006-11-21 0:51 UTC (permalink / raw
To: gentoo-user
Mark wrote:
> How about a rather neat ascii bar, http://www.theiling.de/projects/bar.html
That looks worth it. I'll give it a try. Thanks for the tip.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [OT] Progress bar for cp? (was:[gentoo-user] PATH error?)
2006-11-20 20:10 ` Richard Fish
2006-11-20 21:35 ` Michael Sullivan
@ 2006-11-21 14:48 ` Mrugesh Karnik
1 sibling, 0 replies; 24+ messages in thread
From: Mrugesh Karnik @ 2006-11-21 14:48 UTC (permalink / raw
To: gentoo-user
On Tuesday 21 November 2006 01:40, Richard Fish wrote:
> On 11/20/06, Mick <michaelkintzios@gmail.com> wrote:
> > I was trying to remember what -g stood for and just confirmed my
> > suspicion why a progress bar is no longer being displayed. What's the
> > current equivalent (why was -g taken out)?
>
> There is no equivalent...the progress bar was a gentoo-specific patch
> that was rejected by upstream, so it got dropped.
I liked that thing! Wouldn't it be possible to make a USE flag to apply that
patch? Does it really HAVE to be accepted upstream for us Gentoo users to use
it?
--
----------------------------------------
Mrugesh Karnik
GPG Key 0xBA6F1DA8
Public key on http://wwwkeys.pgp.net
----------------------------------------
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [OT] Progress bar for cp? (was:[gentoo-user] PATH error?)
2006-11-20 19:48 ` [OT] Progress bar for cp? (was:[gentoo-user] PATH error?) Richard Fish
2006-11-21 0:50 ` [gentoo-user] Re: [OT] Progress bar for cp? Ryan Tandy
@ 2006-11-23 18:26 ` Daniel Vrcic
2006-11-23 18:39 ` [gentoo-user] Re: [OT] Progress bar for cp? Ryan Tandy
1 sibling, 1 reply; 24+ messages in thread
From: Daniel Vrcic @ 2006-11-23 18:26 UTC (permalink / raw
To: gentoo-user
* Richard Fish <bigfish@asmallpond.org> [06-11-21 13:37]:
> On 11/20/06, Ryan Tandy <tarpman@tarpman.homelinux.com> wrote:
[...]
> > Any other (simple) way of getting a progress bar for large files?
> Use another program, like the filemanager in your desktop, or scp
> (yes, scp works for local copying as well!).
> -Richard
How do you get progress bar with scp?
--
Daniel Vrcic
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* [gentoo-user] Re: [OT] Progress bar for cp?
2006-11-23 18:26 ` [OT] Progress bar for cp? (was:[gentoo-user] PATH error?) Daniel Vrcic
@ 2006-11-23 18:39 ` Ryan Tandy
2006-11-23 19:06 ` Daniel Vrcic
0 siblings, 1 reply; 24+ messages in thread
From: Ryan Tandy @ 2006-11-23 18:39 UTC (permalink / raw
To: gentoo-user
Daniel Vrcic wrote:
> * Richard Fish <bigfish@asmallpond.org> [06-11-21 13:37]:
>> On 11/20/06, Ryan Tandy <tarpman@tarpman.homelinux.com> wrote:
> [...]
>>> Any other (simple) way of getting a progress bar for large files?
>> Use another program, like the filemanager in your desktop, or scp
>> (yes, scp works for local copying as well!).
>> -Richard
>
> How do you get progress bar with scp?
>
does it automatically iirc
either that or scp -v
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: [OT] Progress bar for cp?
2006-11-23 18:39 ` [gentoo-user] Re: [OT] Progress bar for cp? Ryan Tandy
@ 2006-11-23 19:06 ` Daniel Vrcic
2006-11-23 19:49 ` Etaoin Shrdlu
0 siblings, 1 reply; 24+ messages in thread
From: Daniel Vrcic @ 2006-11-23 19:06 UTC (permalink / raw
To: gentoo-user
* Ryan Tandy <tarpman@tarpman.homelinux.com> [06-11-23 19:46]:
> Daniel Vrcic wrote:
> > * Richard Fish <bigfish@asmallpond.org> [06-11-21 13:37]:
> > > On 11/20/06, Ryan Tandy <tarpman@tarpman.homelinux.com> wrote:
> > [...]
> > > > Any other (simple) way of getting a progress bar for large files?
> > > Use another program, like the filemanager in your desktop, or scp
> > > (yes, scp works for local copying as well!).
> > > -Richard
> > How do you get progress bar with scp?
> does it automatically iirc
> either that or scp -v
Yeah, I thought that too, but I don't get it, not even with -v. I've
tried to copy some really big files and directories recursively and
there's no progress bar showed. Quick look at a manpage mentions only
how to disable it (-q) but that's useless to me, isn't it? :) Any clue
what could be wrong?
--
Daniel Vrcic
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: [OT] Progress bar for cp?
2006-11-23 19:06 ` Daniel Vrcic
@ 2006-11-23 19:49 ` Etaoin Shrdlu
2006-11-23 20:05 ` Daniel Vrcic
0 siblings, 1 reply; 24+ messages in thread
From: Etaoin Shrdlu @ 2006-11-23 19:49 UTC (permalink / raw
To: gentoo-user
On Thursday 23 November 2006 20:06, Daniel Vrcic wrote:
> Yeah, I thought that too, but I don't get it, not even with -v. I've
> tried to copy some really big files and directories recursively and
> there's no progress bar showed. Quick look at a manpage mentions only
> how to disable it (-q) but that's useless to me, isn't it? :) Any clue
> what could be wrong?
Well, scp does not have a real "progress bar" (ie, like wget), but only
shows what the man page calls "progress meter" (percentage, size, speed
and ETA indicators). Are you getting at least these indicators? or
nothing at all?
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: [OT] Progress bar for cp?
2006-11-23 19:49 ` Etaoin Shrdlu
@ 2006-11-23 20:05 ` Daniel Vrcic
2006-11-24 4:18 ` Richard Fish
0 siblings, 1 reply; 24+ messages in thread
From: Daniel Vrcic @ 2006-11-23 20:05 UTC (permalink / raw
To: gentoo-user
* Etaoin Shrdlu <shrdlu@unlimitedmail.org> [06-11-23 20:39]:
> On Thursday 23 November 2006 20:06, Daniel Vrcic wrote:
> > Yeah, I thought that too, but I don't get it, not even with -v. I've
> > tried to copy some really big files and directories recursively and
> > there's no progress bar showed. Quick look at a manpage mentions only
> > how to disable it (-q) but that's useless to me, isn't it? :) Any clue
> > what could be wrong?
> Well, scp does not have a real "progress bar" (ie, like wget), but only
> shows what the man page calls "progress meter" (percentage, size, speed
> and ETA indicators). Are you getting at least these indicators? or
> nothing at all?
Yeah, meter is a better term, but I still don't get it.
% du -h temp_dvds
1.9G temp_dvds
1.9G total
% scp -v -r temp_dvds temp_dvd_DUP
Executing: cp -r temp_dvds temp_dvd_DUP
%
--
Daniel Vrcic
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: [OT] Progress bar for cp?
2006-11-23 20:05 ` Daniel Vrcic
@ 2006-11-24 4:18 ` Richard Fish
2006-11-24 10:15 ` Daniel Vrcic
0 siblings, 1 reply; 24+ messages in thread
From: Richard Fish @ 2006-11-24 4:18 UTC (permalink / raw
To: gentoo-user
On 11/23/06, Daniel Vrcic <daniel.vrcic@si.htnet.hr> wrote:
> Yeah, meter is a better term, but I still don't get it.
>
> % du -h temp_dvds
> 1.9G temp_dvds
> 1.9G total
> % scp -v -r temp_dvds temp_dvd_DUP
> Executing: cp -r temp_dvds temp_dvd_DUP
Hmm, damn. I'd swear that used to work.
Guess we will have to make do with rsync --progress...
-Richard
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: [OT] Progress bar for cp?
2006-11-24 4:18 ` Richard Fish
@ 2006-11-24 10:15 ` Daniel Vrcic
2006-11-24 10:39 ` Alan McKinnon
0 siblings, 1 reply; 24+ messages in thread
From: Daniel Vrcic @ 2006-11-24 10:15 UTC (permalink / raw
To: gentoo-user
* Richard Fish <bigfish@asmallpond.org> [06-11-24 10:57]:
> Hmm, damn. I'd swear that used to work.
> Guess we will have to make do with rsync --progress...
> -Richard
Heh, it works now. I replaced net-misc/openssh with net-misc/ssh. It
seems that scp from the openssh doesn't have this progress meter
feature, although there's mention of it in a manpages.
--
Daniel Vrcic
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: [OT] Progress bar for cp?
2006-11-24 10:15 ` Daniel Vrcic
@ 2006-11-24 10:39 ` Alan McKinnon
2006-11-24 11:43 ` Daniel Vrcic
0 siblings, 1 reply; 24+ messages in thread
From: Alan McKinnon @ 2006-11-24 10:39 UTC (permalink / raw
To: gentoo-user
On Friday 24 November 2006 12:15, Daniel Vrcic wrote:
> * Richard Fish <bigfish@asmallpond.org> [06-11-24 10:57]:
> > Hmm, damn. I'd swear that used to work.
> > Guess we will have to make do with rsync --progress...
> > -Richard
>
> Heh, it works now. I replaced net-misc/openssh with net-misc/ssh. It
> seems that scp from the openssh doesn't have this progress meter
> feature, although there's mention of it in a manpages.
The progress meter seems to work only on actual network connections, and
not local copies:
nazgul ~ # scp alanm@dot:~/downloads/wv-* /usr/portage/distfiles
alanm@dot's password:
wv-1.2.3.tar.gz 100% 615KB 614.8KB/s 00:00
nazgul ~ # scp /usr/portage/distfiles/wv-1.2.3.tar.gz ~
-rw-r--r-- 1 root root 629506 Nov 24 12:35 wv-1.2.3.tar.gz
nazgul ~ #
alan
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
* Re: [gentoo-user] Re: [OT] Progress bar for cp?
2006-11-24 10:39 ` Alan McKinnon
@ 2006-11-24 11:43 ` Daniel Vrcic
0 siblings, 0 replies; 24+ messages in thread
From: Daniel Vrcic @ 2006-11-24 11:43 UTC (permalink / raw
To: gentoo-user
* Alan McKinnon <alan@linuxholdings.co.za> [06-11-24 12:37]:
> The progress meter seems to work only on actual network connections, and
> not local copies:
[...]
Aha, thanks for clearing that up.
Cheers!
--
Daniel Vrcic
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 24+ messages in thread
end of thread, other threads:[~2006-11-24 11:47 UTC | newest]
Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <200611192041.42498.michaelkintzios@gmail.com>
2006-11-19 23:22 ` [gentoo-user] PATH error? Benno Schulenberg
2006-11-20 12:46 ` Dirk Heinrichs
2006-11-20 14:30 ` Mick
[not found] ` <200611191516.00772.bss03@volumehost.net>
2006-11-20 19:30 ` [OT] Progress bar for cp? (was:[gentoo-user] PATH error?) Ryan Tandy
2006-11-20 19:42 ` Mark
2006-11-21 0:51 ` [gentoo-user] Re: [OT] Progress bar for cp? Ryan Tandy
2006-11-20 19:48 ` [OT] Progress bar for cp? (was:[gentoo-user] PATH error?) Richard Fish
2006-11-21 0:50 ` [gentoo-user] Re: [OT] Progress bar for cp? Ryan Tandy
2006-11-23 18:26 ` [OT] Progress bar for cp? (was:[gentoo-user] PATH error?) Daniel Vrcic
2006-11-23 18:39 ` [gentoo-user] Re: [OT] Progress bar for cp? Ryan Tandy
2006-11-23 19:06 ` Daniel Vrcic
2006-11-23 19:49 ` Etaoin Shrdlu
2006-11-23 20:05 ` Daniel Vrcic
2006-11-24 4:18 ` Richard Fish
2006-11-24 10:15 ` Daniel Vrcic
2006-11-24 10:39 ` Alan McKinnon
2006-11-24 11:43 ` Daniel Vrcic
2006-11-20 19:53 ` [OT] Progress bar for cp? (was:[gentoo-user] PATH error?) Mick
2006-11-20 20:10 ` Richard Fish
2006-11-20 21:35 ` Michael Sullivan
2006-11-20 21:51 ` Richard Fish
2006-11-21 14:48 ` Mrugesh Karnik
2006-11-20 21:49 ` [gentoo-user] cp -g gone (was: " Alexander Skwar
2006-11-20 21:52 ` Richard Fish
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox