歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> 關於Linux

在Ubuntu用代理使用apt-get命令

在Ubuntu用代理使用apt-get命令   現在許多公司都有自己的代理服務器來控制員工上網。對用我們使用Linux系統,如Ubuntu,更新軟件就會有一定的障礙。    在Ubuntu下,如果你想通過代理來訪問apt-get上的源,可以修改或者添加一個/etc/apt/apt.conf文件    Sh代碼   sudo vi /etc/apt/apt.conf     然後在文件中添加內容如下:    Conf代碼   Acquire::http::proxy "http://127.0.0.1:8000/";   Acquire::ftp::proxy "ftp://127.0.0.1:8000/";   Acquire::https::proxy "https://127.0.0.1:8000/";     這樣就可以使用代理服務器訪問apt-get上的源了。    要想編輯源的列表,可以修改    Sh代碼   vi /etc/apt/sources.list     Config代碼   deb http://cn.archive.ubuntu.com/ubuntu/ raring main restricted   deb-src http://cn.archive.ubuntu.com/ubuntu/ raring main restricted    
Copyright © Linux教程網 All Rights Reserved