cygwin是windows上使用linux的一个软件,非常轻量好使。
在linux中可以apt-get来安装软件,在cygwin中安装软件方式有两种:
1. 重新运行setup安装程序,然后选择安装即可。
2. 使用apt-cyg来安装软件
首先安装cygwin程序,官网上下载即可。过程中安装
wget
tar
gawk
bzip2
安装cyg-apt
网上的教程都是
- wget http://apt-cyg.googlecode.com/svn/trunk/apt-cyg -P /bin
- chmod.exe +x /bin/apt-cyg
- apt-cyg update
// 更新源
apt-cyg install ping -u
//使用参数u不必每次都更新源
Working directory is /setup
Mirror is http://mirrors.163.com/cygwin/
然而会有各种错误。
正确姿势ref:
-# install apt-cyg
lynx -source rawgit.com/transcode-open/apt-cyg/master/apt-cyg > apt-cyg
-#install
install apt-cyg /bin
-#link source
apt-cyg -m http://mirrors.163.com/cygwin/
-#update
apt-cyg update
-#Example use of apt-cyg:
apt-cyg install nano
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-11-07 08:38:26