1、安装openssh
1) 、下载openssh。 可以在此下载。http://sshwindows.sourceforge.net/download/
2) 、安装。 安装很简单,就像其它windows下的软件一样,双击即可。安装到大半,会有提示框弹出,说“必须要设置../etc/passwd文件才可以正常运作 openssh,详情可以参阅readme.txt或quickstart.txt文件。”不用管它,按确定继续完成安装。安装完后可以看到 quickstart.txt文件的内容。
3) 、配置。
第一、打开一个ms-dos终端,进入openssh/bin目录。(安装完openssh后,发现多了几个在linux中常用的命令,如:ls、mkdir、rm、chmod、chown等,很有亲切感! )
第二、将计算机上的组导入group文件中。这里分两种情况,第一种是本地,第二种是在域中。分别运行-l和-d参数。如果想将两种组都导入,可以先运行-l的参数再运行-d参数的命令。 下面是原文: Use mkgroup to create a group permissions file. For local groups, use the "-l" switch. For domain groups, use the "-d" switch. For both domain and local, it is best to run the command twice (remember to use >>, not >). If you use both, make sure to edit the file to remove any duplicate entires.
mkgroup -l >> ..\etc\group 这是加入本地组的命令。 mkgroup -d >> ..\etc\group 这是加入域组的命令。
第三、 将计算机的用户与其密码导入passwd文件中。与上面的组一样,也是分本地和域两种情况。如果没有该文件或没有导入用户的信息。作为server的话,将不能被登陆,因为没有用户嘛! 下面是原文: Use mkpasswd to add authorized users into the passwd file. For local users, use the "-l" switch. For domain users, use the "-d" switch. For both domain and local, it is best to run the command twice (remember to use >>, not >). If you use both, make sure to edit the file to remove any duplicate entires.
mkpasswd -l [-u ] >> ..\etc\passwd 这是加入本地用户的命令。 mkpasswd -d [-u ] >> ..\etc\passwd 这是加入域用户的命令。
NOTE: To add users from a domain that is not the primary domain of the machine, add the domain name after the user name. NOTE: Ommitting the username switch adds ALL users from the machine or domain, including service accounts and the Guest account.
由于不在域里,所以我只要运行两条命令就可以了。(注意我是在openssh/bin目录下运行的。) mkgroup -l >> ..\etc\group mkpasswd -l [-u ] >> ..\etc\passwd
4) .启动openssh server。
net start opensshd
很明显,停止opensshd服务的命令就是:
net stop opensshd
5) 、使用。
ssh -p 端口 用户名@对方主机IP sftp -p 端口 用户名@对方主机IP scp -p 端口 用户名@对方主机IP:文件路径 . 注意:端口默认是22,所以一般不用加-p参数。要更改端口可以在etc/sshd_config中更改
2、安装配置vss
前面的文章有介绍 用vss和PrimalScript 快速搭建ASP项目的代码版本控制环境 的文章
3、安装配置ant 1) 、Ant下载:http://ant.apache.org
2) 、Ant安装:解压zip包,并将解压后的目录拷贝到一个特定的目录,我的环境是“C:\Ant”。并确保…\bin和…\lib两目录位于C:\Ant下;
3) 、Ant配置:编辑Windows系统变量,我们团队环境是PC/Windows(以我的配置为例)
建立ANT_HOME:“ANT_HOME”:“C:\Ant”; 建立JAVA_HOME:“JAVA_HOME”:“D:\Jbuilder9\jdk1.4”; 在Path中添加:“C:\Ant\bin”
请参考如下附的文章:
4) 、生成Ant的Build.xml文件 其实所有使用Ant进行编译的技巧都应该集中在Build.xml的编写上,很多关于Ant的技巧也就是编写Build.xml的技巧。(慢慢看、慢慢学 :) 但即使你编写Build.xml的技巧为零,你也可以利用IDE来偷懒。我们团队使用的IDE是JBuilder,利用“Export to Ant”可以很轻松的生成一个简单的Build.xml
|