cygwin作为windows下模拟Linux环境的的工具,使得我们能在windows下非常方便的使用Linux的命令和工具,下面讲讲怎样在cygwin添加不支持的命令。
一、安装cygwin工具的安装工具apt-cyg,此工具类似于Ubuntu下的apt-get工具,所有的工具都是通过他安装,用过Ubuntu的人应该都知道
#wget http://apt-cyg.googlecode.com/svn/trunk/apt-cyg
wget http://w.gdu.me/wiki/files/shell/apt-cyg
chmod +x apt-cyg
mv apt-cyg /usr/local/bin/
apt-cyg --help
cygcheck --help
# 修改软件源
apt-cyg --mirror http://mirrors.163.com/cygwin
#下面是可选的源
# ftp://mirror.mcs.anl.gov/pub/cygwin
# http://mirrors.163.com/cygwin
# ftp://ftp.ges.redhat.com/private/releng/cygwin-1.8
二、完成以上步骤之后,就可以随便安装相应的软件了
# apt-cyg install man cygwin-doc
apt-cyg install vim screenwget subversion openssh pwgen gzip bzip2 curl rsyncbash-completion lftp nc tree p7zip connect-proxy util-linux bind-utils inetutils
三、添加常用Linux命令
给Cygwin添加more/col/whereis等命令:安装util-linux包:apt-cyg install util-linux
给Cygwin添加telnet/ftp工具:apt-cyg install inetutils
给Cygwin安装dig命令
安装bind-utils包:apt-cyg install bind-utils
检查系统中已设置好DNS: ipconfig /all
得到Windows格式的路径名?
cygpath
-d -m "`pwd`"
使用cygwin工具将linux环境中运行的hostapd移植到windows中:http://www.linuxdiyf.com/linux/15820.html
cygwin的安装使用:http://www.linuxdiyf.com/linux/14321.html
cygwin下模拟linux的nautilus命令:http://www.linuxdiyf.com/linux/13966.html
在cygwin的环境下使用linux命令:http://www.linuxdiyf.com/linux/13577.html
如何在Windows中通过Cygwin来使用Linux命令行:http://www.linuxdiyf.com/linux/8311.html