Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1436731
  • 博文数量: 350
  • 博客积分: 12557
  • 博客等级: 上将
  • 技术积分: 3621
  • 用 户 组: 普通用户
  • 注册时间: 2007-03-22 07:33
文章分类

全部博文(350)

文章存档

2014年(2)

2013年(1)

2012年(15)

2011年(46)

2010年(61)

2009年(80)

2008年(80)

2007年(65)

分类: LINUX

2008-01-14 21:50:09

   我们知道*nix上都可以用rcp/scp来在不同机器间拷间文件,很方便快捷.从w2k开始,windows 也有了rcp命令,输入rcp -help,我们可以得到如下信息:
 Option e is not valid
Copies files to and from computer running the RCP service.
RCP [-a | -b] [-h] [-r] [host][.user:]source [host][.user:] path\
  -a                 Specifies ASCII transfer mode. This mode con
                     the EOL characters to a carriage return for
                     and a carriage
                     return/line feed for personal computers. Thi
                     the default transfer mode.
  -b                 Specifies binary image transfer mode.
  -h                 Transfers hidden files.
  -r                 Copies the contents of all subdirectories;
                     destination must be a directory.
  host               Specifies the local or remote host. If host
                     specified as an IP address OR if host name c
                     dots, you must specify the user.
  .user:             Specifies a user name to use, rather than th
                     current user name.
  source             Specifes the files to copy.
  path\destination   Specifies the path relative to the logon dir
                     on the remote host. Use the escape character
                     (\ , ", or ') in remote paths to use wildcar
                     characters on the remote host.
我们可不可以用它从windwos上往linux上拷贝文件呢?答案是肯定的.不过需要一些小小的配置.下面简单讲一下需要配置的地方,及解决问题的方法.
  在linux间互相rcp的配置很简单,在/etc/xinetd.d/rsh,rlogin等文件中把disable=yes,改成no,重启xinetd即可,如果想在传输中不需要输入密码,配置~user/.rhost文件或者/etc/hosts.equiv文件就可以了,但我们在从windows往linux上拷贝文件时却出现这样的错误:192.168.x.y: Permission denied.怎么回事儿呢?怎么办?
  不要着急,在linux主机上,tail -f /var/log/messages,我们会发现如下信息:
Jan 14 21:43:10 Sim32_01 pam_rhosts_auth[28313]: denied to as useroflinux: access not allowed
Jan 14 21:43:10 Sim32_01 in.rshd[28313]: rsh denied to as useroflinux: Permission denied.
哦,原来是pam.d的事儿啊...vi /etc/pam.d/rsh,里面内容如下:
#%PAM-1.0
# For root login to succeed here with pam_securetty, "rsh" must be
# listed in /etc/securetty.
auth       required     /lib/security/pam_nologin.so
auth       required     /lib/security/pam_securetty.so
auth       required     /lib/security/pam_env.so
auth       required     /lib/security/pam_rhosts_auth.so
account    required     /lib/security/pam_stack.so service=system-auth
session    required     /lib/security/pam_stack.so service=system-auth
把auth       required     /lib/security/pam_rhosts_auth.so这一行注释掉,再试,OK,搞定!
 
附:从windows上rcp文件到linux机器的命令示例:
 rcp -b filename linuxserver.test:/tmp
阅读(2450) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~