由买买提看人间百态

topics

全部话题 - 话题: scp
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
s****l
发帖数: 10462
1
有两台机器,两者之间建立scp or ssh的时间明细比和其他机器建立scp/ssh的时间要
长。给个代号,好说明一点:
A scp/ssh to B takes 20 seconds
B scp/ssh to A takes 10 seconds
以上是不正常的现象;下面的速度我觉得正常
A scp/ssh to C or D takes 2 seconds
B scp/ssh to C or D takes 2 seconds
C or D scp/ssh to A takes 2 seconds
C or D scp/ssh to B takes 2 seconds
但是所有的机器之间一旦建立连线之后的传输速度都不慢,至少没有明显不同。
请问为什么?谢谢
不知道这个有没有关系
A, openSuse
B, Ubuntu
C, Ubuntu
D, Ubuntu
补充
http://www.walkernews.net/2009/04/06/how-to-fix-scp-and-ssh-log
prompt-is-very-slow-in-linux/
在以上网页找到了解决方法,虽然... 阅读全帖
d*2
发帖数: 2053
2
来自主题: EmergingNetworking版 - scp over 10Gbit network performance
RHEL 5.8 x64
Nexus 5548, (10Gbit switch and 10Gbit card from Intel), dedicated switch
scp from one node to another node, only get about 60MB/s~70MB/s
tftp get 600MB/s~700MB/s
scp will do some encryption/decryption, but the overhead seems to be too
much?
c*a
发帖数: 806
3
来自主题: EmergingNetworking版 - scp over 10Gbit network performance
This is odd, scp should also compress the data, and should be faster than
that. When transferring with scp, what about CPU utilization?
c******n
发帖数: 4965
4
来自主题: EmergingNetworking版 - scp over 10Gbit network performance
we had this problem
its due to the buffer in scp
try look up scp from Pittsburgh supercomputer center
they have a version with larger bufeer
also u need to bump up tcp windows
s*******n
发帖数: 730
5
a. 先把不要的mv出去,然后scp,再mv回来
b. find or grep + scp

.
s****l
发帖数: 10462
6
Nice!
Here is what I got, it looks all good until "cannot....", which I marked
with ~~~~~~~~~ signs.
Executing: program /usr/bin/ssh host 10.33.60.69, user tony.xu, command scp
-v -t ~
OpenSSH_5.3p1 Debian-3ubuntu7, OpenSSL 0.9.8k 25 Mar 2009
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to 10.33.60.69 [10.33.60.69] port 22.
debug1: Connection established.
debug1: identity file /home/txu/.ssh/identity type -1
debug1: identity file /home/... 阅读全帖
p******e
发帖数: 8
7
来自主题: Unix版 - how to use scp with password
能不能直接把password作为一个参数放到scp的命令行中?
或者有什么办法在写script的时候,让其输入password,而不要在command line里输了。
或者有类似与scp的命令,直接把password作为参数带着的。
多谢多谢!!!
d****0
发帖数: 100
8
寻求女室友去 SCP 会议in Phoenix, AZ (Feb 25-28, 2015)。

r****y
发帖数: 26819
9
想共享一些冬冬,有没有人在win2k下做过ssh和scp的server的?
谢谢!
z**r
发帖数: 17771
10
来自主题: EmergingNetworking版 - scp over 10Gbit network performance
I think this is normal, scp uses a lot of CPU cycles.
n**********l
发帖数: 271
11
来自主题: EmergingNetworking版 - scp over 10Gbit network performance
Have you checked sshd settings(e.g. encryption? try a shorter key maybe? )?
since you are using 10G NIC I assume cpu & RAM hopefully won't be the
bottleneck. What about cpu utilization on each core?
What kind of testing are u performing? I am totally shocked by 700MB/s over
one tftp connection...
Do you have a comparison using ftp vs sftp? IMO scp is not efficient enough
for large file transfers
a****a
发帖数: 98
12
来自主题: EmergingNetworking版 - scp over 10Gbit network performance

Maybe you can try using the blowfish cipher with scp
Enabling compression might help too
a***n
发帖数: 262
13
来自主题: EmergingNetworking版 - scp over 10Gbit network performance
Try
High Performance SSH/SCP - HPN-SSH
http://www.psc.edu/index.php/hpn-ssh
?
d*2
发帖数: 2053
14
来自主题: EmergingNetworking版 - scp over 10Gbit network performance
during scp, out of the 16 cores, only one core is used and usage is up to 94
%, most of the time 70%~85%
n*********a
发帖数: 1956
15
来自主题: EmergingNetworking版 - scp over 10Gbit network performance
but your ssh/scp application itself may not support parallel encryption.
all other cores are wasted.
d*2
发帖数: 2053
16
来自主题: EmergingNetworking版 - scp over 10Gbit network performance
it is just scp command and yes, obviously it only uses one core.
but the overhead is still kind of too high...
Also tested on two different (but with similar configurations) clusters,
got the same result.
d*2
发帖数: 2053
17
来自主题: EmergingNetworking版 - scp over 10Gbit network performance
sorry, have been busy (well-known excuse...) with other things, but will try
the high performance scp
r*********s
发帖数: 2157
18
我要多次copy 一个文件到一个linux machine 目录下, 使用
scp abcd.dsp r**[email protected]:~/data/.
每次都要输入password, 能不能把password 放到 command里, 我就不用每次都输入
了?
s****l
发帖数: 10462
19
我有一个很大很复杂的文件夹,里面有很多层子目录等,有多种扩展名,假设有.aa, .
bb, .cc, ..., .xx, .yy, .zz吧
我现在要选择性的使用scp转移非 (.xx && .yy)的文件以及目录结构,该怎么操作?
另外,文件都是很大,不能先转移了然后在删除,也不能先 tar 所需要的文件。
谢谢
s****l
发帖数: 10462
20
不要的mv出去,怎么保留目录结构呢?以后还要移回到原处的。
现在的问题好像是 find 的结果怎么保留目录结构,然后让 scp -r 转移所找到的文件
以及目录结构。
谢谢阿
c****f
发帖数: 1102
21
条件没给全啊
要是一个目录下有.yy 和.aa的 你转不转这个目录?
还是保留目录的同时 只转.aa的文件和这个目录结构?
不过所有这些..用rsync就可以做了..
scp也做得到 但是要写一个小脚本
p******g
发帖数: 347
22
use tar with --exclude-from to generate a tar ball excluding the files/dirs
you don't want. then scp the tar ball.

.
y*******t
发帖数: 69
23
为什么不用Perl,即使复杂逻辑选择, 不出20行。
@arr= `find xxx condition`;
foreach $v(@arr){
copy to /tmp if($v=~/condition/);
}
system("tar xxxx");
system("scp xxxx");
s****l
发帖数: 10462
24
http://www.walkernews.net/2009/04/06/how-to-fix-scp-and-ssh-log
在以上网页找到了解决方法,虽然不是很懂这个GSSAPI Authentication具体是什么。
。。。
F****3
发帖数: 1504
25
我现在是用下面这个命令下载数据库。
scp -r u******[email protected]:/path/to/data/ .
下载完成以后然后在本地服务器上打nohup gzip -vr data &
有什么办法把两部分成一部吗?或者干脆就在远程服务器对要下载的数据打包然后再传
输到本地服务器就不用自己再压缩了。
这个能实现吗?
F****3
发帖数: 1504
26
用scp的时候会出现很多下载的状态更新,这种情况还能用script吗?
f******e
发帖数: 164
27
来自主题: Programming版 - rsync和scp有什么区别? (转载)
【 以下文字转载自 Linux 讨论区 】
发信人: francise (小飞猫), 信区: Linux
标 题: rsync和scp有什么区别?
发信站: BBS 未名空间站 (Wed Apr 2 21:14:01 2008)
他们是一个级别上的概念么?谢谢
b**********9
发帖数: 58
28
我开发的一个小软件,本来用ftp下载的。现在局域网禁用了ftp,因此文件不可以用原
先编写的ftp command下载了。可现在发现scp在windows里面不被支持。。。
到底应该怎么办呢?谢谢大家,给点意见吧。
明天一早就要due了,呜呜呜~
p*****a
发帖数: 1152
s****e
发帖数: 68
30
【 以下文字转载自 Software 讨论区 】
【 原文由 seaice 所发表 】
the server only support SSH, any suggestion for
a windows-side ftp client with functions like scp
or sftp?
thanks!
ps. i use SecureCRT for SSH, seems it doesn't works for ftp?
tried zmodem in secureCRT, doesn't works.
p******f
发帖数: 162
31
来自主题: Unix版 - how to use scp with password

because OP wants to use scp in non-interative mode
b********4
发帖数: 63
32
来自主题: Business版 - 有人二月份去Las vegas开SCP?
有人二月份去Las vegas开SCP吗?
求酒店室友
s*****t
发帖数: 1994
33
【 以下文字转载自 Physics 讨论区 】
发信人: happytiger (快乐龙龙), 信区: Physics
标 题: 超新星与暗能量的发现--今年诺贝尔物理奖工作的介绍[zz]
发信站: BBS 未名空间站 (Wed Oct 5 12:12:03 2011, 美东)
这个科普太好看了。
http://bbs.sciencenet.cn/home.php?mod=space&uid=3061&do=blog&id
今年的诺贝尔物理奖授予了三位在发现宇宙加速膨胀的研究中做出杰出贡献的学者:Pe
rlmutter, Schmidt和Riess. 应该说,由于这项工作无可争辩的巨大重要性,几年来他
们一直是获奖的热门人选。但是,导致宇宙加速膨胀的暗能量是什么仍是一个未解决的
问题,而相关的许多理论和观测还处在研究的前沿,存在许多疑问和争论,诺贝尔奖评
委会素有稳重、保守的传统,所以我原以为他们还要再过若干年才会获奖。因此,作为
一名宇宙学研究者,我为他们今年获得这项殊荣感到非常高兴。
Perlmutter, Schmidt 和 Riess 是因为对超新星的研究而获奖的。超新星的... 阅读全帖
s*****t
发帖数: 1994
34
【 以下文字转载自 Physics 讨论区 】
发信人: happytiger (快乐龙龙), 信区: Physics
标 题: 超新星与暗能量的发现--今年诺贝尔物理奖工作的介绍[zz]
发信站: BBS 未名空间站 (Wed Oct 5 12:12:03 2011, 美东)
这个科普太好看了。
http://bbs.sciencenet.cn/home.php?mod=space&uid=3061&do=blog&id
今年的诺贝尔物理奖授予了三位在发现宇宙加速膨胀的研究中做出杰出贡献的学者:Pe
rlmutter, Schmidt和Riess. 应该说,由于这项工作无可争辩的巨大重要性,几年来他
们一直是获奖的热门人选。但是,导致宇宙加速膨胀的暗能量是什么仍是一个未解决的
问题,而相关的许多理论和观测还处在研究的前沿,存在许多疑问和争论,诺贝尔奖评
委会素有稳重、保守的传统,所以我原以为他们还要再过若干年才会获奖。因此,作为
一名宇宙学研究者,我为他们今年获得这项殊荣感到非常高兴。
Perlmutter, Schmidt 和 Riess 是因为对超新星的研究而获奖的。超新星的... 阅读全帖
h********r
发帖数: 519
35
这个科普太好看了。
http://bbs.sciencenet.cn/home.php?mod=space&uid=3061&do=blog&id
今年的诺贝尔物理奖授予了三位在发现宇宙加速膨胀的研究中做出杰出贡献的学者:Pe
rlmutter, Schmidt和Riess. 应该说,由于这项工作无可争辩的巨大重要性,几年来他
们一直是获奖的热门人选。但是,导致宇宙加速膨胀的暗能量是什么仍是一个未解决的
问题,而相关的许多理论和观测还处在研究的前沿,存在许多疑问和争论,诺贝尔奖评
委会素有稳重、保守的传统,所以我原以为他们还要再过若干年才会获奖。因此,作为
一名宇宙学研究者,我为他们今年获得这项殊荣感到非常高兴。
Perlmutter, Schmidt 和 Riess 是因为对超新星的研究而获奖的。超新星的概念是193
4年由茨维基和巴德提出的。他们猜测当一些恒星寿命结束时将会塌缩,然后发生爆炸,
其亮度可达到十亿甚至百亿个太阳的亮度,巴德和茨维基也观测到了一些超新星。后来
发现,其实有两种不同的超新星, 一种是茨维基最早提出的核塌缩超新星,另一种其爆
炸机理不同,现在一般认为是白矮星... 阅读全帖
h********r
发帖数: 519
36
这个科普太好看了。
http://bbs.sciencenet.cn/home.php?mod=space&uid=3061&do=blog&id
今年的诺贝尔物理奖授予了三位在发现宇宙加速膨胀的研究中做出杰出贡献的学者:Pe
rlmutter, Schmidt和Riess. 应该说,由于这项工作无可争辩的巨大重要性,几年来他
们一直是获奖的热门人选。但是,导致宇宙加速膨胀的暗能量是什么仍是一个未解决的
问题,而相关的许多理论和观测还处在研究的前沿,存在许多疑问和争论,诺贝尔奖评
委会素有稳重、保守的传统,所以我原以为他们还要再过若干年才会获奖。因此,作为
一名宇宙学研究者,我为他们今年获得这项殊荣感到非常高兴。
Perlmutter, Schmidt 和 Riess 是因为对超新星的研究而获奖的。超新星的概念是193
4年由茨维基和巴德提出的。他们猜测当一些恒星寿命结束时将会塌缩,然后发生爆炸,
其亮度可达到十亿甚至百亿个太阳的亮度,巴德和茨维基也观测到了一些超新星。后来
发现,其实有两种不同的超新星, 一种是茨维基最早提出的核塌缩超新星,另一种其爆
炸机理不同,现在一般认为是白矮星... 阅读全帖
a****y
发帖数: 1035
37
【 以下文字转载自 Physics 讨论区 】
发信人: happytiger (快乐龙龙), 信区: Physics
标 题: 超新星与暗能量的发现--今年诺贝尔物理奖工作的介绍[zz]
发信站: BBS 未名空间站 (Wed Oct 5 12:12:03 2011, 美东)
这个科普太好看了。
http://bbs.sciencenet.cn/home.php?mod=space&uid=3061&do=blog&id
今年的诺贝尔物理奖授予了三位在发现宇宙加速膨胀的研究中做出杰出贡献的学者:Pe
rlmutter, Schmidt和Riess. 应该说,由于这项工作无可争辩的巨大重要性,几年来他
们一直是获奖的热门人选。但是,导致宇宙加速膨胀的暗能量是什么仍是一个未解决的
问题,而相关的许多理论和观测还处在研究的前沿,存在许多疑问和争论,诺贝尔奖评
委会素有稳重、保守的传统,所以我原以为他们还要再过若干年才会获奖。因此,作为
一名宇宙学研究者,我为他们今年获得这项殊荣感到非常高兴。
Perlmutter, Schmidt 和 Riess 是因为对超新星的研究而获奖的。超新星的... 阅读全帖
h*o
发帖数: 1035
38
(资料取自《华文基督教归正网》- 作者:Gilbert)
2004年再版序
自从2002年二月本文发表以来,除了成为华文基督教归正网(http://ccn.fhl.net)点阅率最高的文章之一,也收到不少来函批评指教。当然,除了掌声,也承受了部分聚会所弟兄们的不谅解。这次再版是针对部分内容作修正以符合目前的状况,同时也尝试探讨为什麽聚会所会是今天的聚会所,以及李常受个人在教会治理上对聚会所造成的影响。这部分也是会所之所以是今日风貌的主要原因,也让这篇文章更为切题。两年前我并未能好好处理,也希望藉此次改版加以补强。
2002年引言
这篇文章原本只想单纯地从聚会所的出版品,来探讨聚会所关於「教会立场」的主张。
然而在参考若干资料以后,我认为单单讨论以上局限的主题并无法提供全貌帮助读者了
解今日的聚会所及其独特的主张。由於李常受对 于来台后的聚会所影响极大,数十年
来甚至影响了这个教会系统的基本教义与实践。所以我将本文的范畴扩大为对聚会所的
浅探,先以信条比较学(Comparative Symbolics)的方法论,描述聚会所来台後李常
受带领下近六十年(1949-1997)的发展与转变,并... 阅读全帖
l******9
发帖数: 579
39
I need to transfer a tar.gz file (2.6 GB) from a Linux server to my laptop (
win 7).
I have installed cygwin on my desktop.
On the linux server, I used scp:
scp myUserName@linux-server:/mypath/myFile.tar.gz myUserName@my-desktop/
mypath
But, the command did not have and response.The same problem happened if I
used scp to copy to my laptop.
When I used scp on my win7 laptop with cygwin openssh:
scp myUserName@linux-server:/mypath/myFile.tar.gz myUserName@my-laptop/
mypath
I got:
ssh: connect to h... 阅读全帖
c**i
发帖数: 6973
40
(1) BBC reported this in late October also, speculating the father must be
李家杰. But that time and this time, neither report has mentioned he is gay.
And I just googled and there is a widely circulated Chinese-language report
that says, "该人士强调李家杰百分之一百不是同性恋者."
(2) Latest news first.
(a) Room for Debate: The Baby Market. New York Times, Dec. 29, 2009.
http://roomfordebate.blogs.nytimes.com/2009/12/29/the-baby-market/?scp=3&sq=surrogacy&st=cse
My comment: I donot think this discussion was published ... 阅读全帖
r*********s
发帖数: 1027
41
以下是各种联系信息,包括警察局,学校和学区
http://www.facebook.com/topic.php?uid=155474847813260&topic=236
We Support James Jones If you want to call or e-mail the Seminole County
District Attorney and ask for the charges to be dropped against James Jones,
and also ask they expunge his new arrrest and charging records. There are
different public records for charges, convictions and arrests. The contact
info is below.
The current pending charges against James W. Jones are:
False Imprisonment
Disorderly Conduct Assaul... 阅读全帖
l******9
发帖数: 579
42
【 以下文字转载自 JobHunting 讨论区 】
发信人: light009 (light009), 信区: JobHunting
标 题: transfer a tar.gz file from Linux server to win7 desktop
发信站: BBS 未名空间站 (Fri Nov 14 22:42:50 2014, 美东)
I need to transfer a tar.gz file (2.6 GB) from a Linux server to my laptop (
win 7).
I have installed cygwin on my desktop.
On the linux server, I used scp:
scp myUserName@linux-server:/mypath/myFile.tar.gz myUserName@my-desktop/
mypath
But, the command did not have and response.The same problem happened if I
used scp to ... 阅读全帖
l******9
发帖数: 579
43
【 以下文字转载自 JobHunting 讨论区 】
发信人: light009 (light009), 信区: JobHunting
标 题: transfer a tar.gz file from Linux server to win7 desktop
发信站: BBS 未名空间站 (Fri Nov 14 22:42:50 2014, 美东)
I need to transfer a tar.gz file (2.6 GB) from a Linux server to my laptop (
win 7).
I have installed cygwin on my desktop.
On the linux server, I used scp:
scp myUserName@linux-server:/mypath/myFile.tar.gz myUserName@my-desktop/
mypath
But, the command did not have and response.The same problem happened if I
used scp to ... 阅读全帖
l******9
发帖数: 579
44
【 以下文字转载自 JobHunting 讨论区 】
发信人: light009 (light009), 信区: JobHunting
标 题: transfer a tar.gz file from Linux server to win7 desktop
发信站: BBS 未名空间站 (Fri Nov 14 22:42:50 2014, 美东)
I need to transfer a tar.gz file (2.6 GB) from a Linux server to my laptop (
win 7).
I have installed cygwin on my desktop.
On the linux server, I used scp:
scp myUserName@linux-server:/mypath/myFile.tar.gz myUserName@my-desktop/
mypath
But, the command did not have and response.The same problem happened if I
used scp to ... 阅读全帖
c**i
发帖数: 6973
45
(1) Guy Trebay, The Cat in the Hat Comes Back. New York Times, Feb 3, 2011.
http://www.nytimes.com/2011/02/03/fashion
/03HATS.html?scp=1&sq=cat%20hat&st=cse
("THERE was a time when only beggars went bareheaded. This was some while
ago, a century or so. But up until World War II and the period just after, a
gentleman was not considered properly dressed without a hat")
My comment:
(a) No wonder photos of Pres. Lincoln's era invariably showed a sea of top
hats.
(b) Read only the first four paragrap... 阅读全帖
c**i
发帖数: 6973
46
来自主题: ChinaNews版 - Economics News Today
(1) Liam Pleven, Carolyn Cui and Scott Kilman, Commodity Prices Surge; Gold,
Cotton Touch New Highs as Fed Stimulus, Chinese Growth Drive Demand. Wall
Street Journal, Nov. 10, 2010.
http://online.wsj.com/article/SB10001424052748704635704575604443663385672.html
My comment: Only glance at the graphic.
(2) David E Sanger, China Challenges Role of US on Eve of Economic Meeting.
New York Times, Nov. 10, 2010 (title in the pritn).
http://www.nytimes.com/2010/11/10/business/global/10global.html?scp=1&s... 阅读全帖
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)