內網環境下使用yum·npm·gem及安裝一些依賴包

下面介紹幾種內網方式下快速安裝一些依賴包的方法css

 

1  若是筆記本能夠連外網,能夠使用代理的方式,實現服務器使用yum,npm等一些安裝工具git

筆記本安裝  CCPROXYweb

開啓代理    sql

cmd開啓        set  http_proxy=http://IP:端口typescript

 

 

ssh鏈接到服務器後shell

在/etc/yum.conf後面添加如下內容:
若是代理不須要用戶名密碼認證:
proxy=http://代理服務器IP地址:端口號npm

 

這樣服務器就能夠是用yum命令了vim

 

一樣能夠代理使用 gem  git    npm  等方式segmentfault

npm

設置全局使用指定的鏡像:windows

$ npm config set registry < registry url > 

或者在安裝時才指定:

$ npm install --registry < registry url > 

固然, 每次都要輸入那麼長串的 registry url 的話, 實在太麻煩, 能夠使用 nrm 這個模塊來切換鏡像:

// 全局安裝 $ npm install -g nrm // 查看有哪些鏡像 $ nrm ls // 對比各個鏡像的訪問速度 $ nrm test // 使用淘寶的鏡像 $ nrm use taobao 

gem

$ gem source -r <registry url> 

gem 除了使用鏡像之外, 還能夠直接到官網下載須要的包, 而後在本地安裝,
好比咱們要安裝 sass, 先到這裏 把 sass 下載到本地, 而後在本地安裝:

// 注意這裏的 sass.gem 是下載到本地的包名
$ gem install --local sass.gem 

使用代理

鏡像不能用, 那就使用代理吧.

假定公司提供的代理爲 http://proxy.mysite.com:8080

給命令行統一設置代理

  • windows

    $ set http_proxy=http://proxy.mysite.com:8080

    // 若是有要求用戶名密碼則輸入:
    $ set http_proxy_user=< username >
    $ set http_proxy_pass=< password >

若不想每次都手動設置, 則能夠設置到系統的環境變量中

右擊計算機–>屬性–>高級–>環境變量–>系統變量,設置系統變量

git

設置:

$ git config --global http.proxy http://proxy.mysite.com:8080 

取消:

$ git config --global --unset http.proxy 

npm

設置:

$ npm config set proxy=http://proxy.mysite.com:8080 

取消:

$ npm config delete proxy 

bower

設置:

修改 .bowerrc 文件(如無則新增):

    {
      "proxy": "http://proxy.mysite.com:8080", "https-proxy": "http://proxy.mysite.com:8080" } 

取消:

刪除 .bowerrc 裏對應的配置便可 

gem

好比咱們要安裝 sass

設置:

安裝時加上 --http-proxy 參數

$ gem install --http-proxy http://proxy.mysite.com:8080 sass

取消:

安裝時不加上 --http-proxy 參數

 
$ gem install sass

 

2  經過能夠使用互聯網的服務器,下載rpm安裝包

編輯配置文件      /etc/yum.conf  

vi /etc/yum.conf    

keepcache=0改成keepcache=1

cachedir=/var/cache/yum/    rpm緩存目錄

 

 

例如:yum install tk tcl enca zip unzip vsftpd lftp ntp wget dos2unix vim-enhanced net-tools -y

安裝完畢後,把/var/cache/yum目錄下全部rpm包拷貝到某個目錄下,好比拷貝到/home/test目錄下

find /var/cache/yum/ -name *.rpm -type f -exec cp {} /home/test/ \;

 
 

安裝createrepo(建立yum源索引)

#yum install createrepo -y

#cd /home 

#createrepo -v  test

配置本地yum文件

#cd /etc/yum.repos.d

#vi test.repo

 
 

#yum clean all

#yum makecache




3  yum下載rpm包

 

包被安裝過的話,文件將不會被下載。除非用這條命令:

#yum reinstall -y 包名 --downloadonly --downloaddir=路徑

 

 

參考

http://www.javashuo.com/article/p-wnbspdgb-ee.html

https://blog.51cto.com/13578154/2083538

相關文章
相關標籤/搜索