㈠ 如何在linux配置http代理
可以在你的用戶家目錄下的.bashrc的最後加上:
export http_proxy=your_proxy_address:port
export https_proxy=your_proxy_address:port
export ftp_proxy=your_proxy_address:port
直接在terminal窗口輸入這些也可以。
㈡ 如何在Linux下使用代理伺服器
本用xp+ccproxy做代理伺服器總掉線查原所想用linux做代理伺服器沒用linux知道需要用哪些軟體配置哪位高手能指點奉我所積累數QQ能夠線問我笨
㈢ linux伺服器如何使用代理
不同的代理伺服器設置略有 不同,具體分類操作如下:
設置HTTP及HTTPS代理
對於http及https類型的請求,可以通過設置http_proxy或。方法是export http_proxy=http://proxyaddress:port。
可以寫在$HOME/.bash_profile或/etc/profile中。
設置tsocks代理
見:http://renyongjie668.blog.163.com/blog/static/16005312011824112410588/
有了tsocks代理,其實後面其他設置方式都不是很重要了,幾乎都可以用tsocks來做。
設置SSH代理
同樣用tsocks來實現代理。
Ubuntu中apt-get代理設置
新版的Ubuntu已經不支持export http_proxy就能給apt-get設置代理的方式了。這種方法要用到/etc/apt/文件夾下的apt.conf文件。注意: 某些情況下,系統安裝過程中沒有建立apt配置文件。下面的操作將視情況修改現有的配置文件或者新建配置文件。
sudo vi /etc/apt/apt.conf
在您的apt.conf文件中加入下面這行(根據你的實際情況替換yourproxyaddress和proxyport)。
Acquire::http::Proxy "http://proxyaddress:port";
如果需要用戶名密碼登陸:
Acquire::http::Proxy "http://username:password@proxyaddress:port";
保存apt.conf文件。(其他的協議自己可以適當修改)
㈣ linux 終端怎麼用proxy
要設置http代理:設置http_proxy變數名
要設置https代理:設置https_proxy變數名
要設置ftp代理:設置ftp_proxy變數名
不使用莫個代理:設置no_proxy變數名
㈤ linux如何通過代理上網
如果是用firefox,編輯--》首選項--》高級--》網路--》設置,使用代理就可以了
如果要復雜一點,自動使用的話:
1、用tor,網上有教程,找去
2、用無邊界或自由men,沒有linux版的,使用wine執行
以上說的是linux代理上網
--
如果是win作代理,用wingate啊,這比linux直接用代理簡單了,linux只需要設定dns和gatgeway指向win就可以了
----
如果是linux作代理,用squid啊,也不復雜
---------
沒問答你的問題,是因為你的問題需要簡化和更直接一點
㈥ linux 如何設置代理
linux設置代理linux系統設置yum,wget,rpm命令使用代理:1.Using
yum
with
a
proxyserver---------------------------------------To
enable
yum
operations
to
use
aproxy
server
you
should
first
add
the
following
parameter
to
/etc/yum.conf
proxy=http://yourproxy:8080/
where
yourproxy
is
the
name
of
the
proxy
server
you
want
to
access
and
8080
isthe
proxy
port.
If
the
server
requires
authentication
you
can
specify
the
logincredentials
like:proxy=http://username:password@yourproxy:8080/---------------------------------------2.
The
rpm
package
manager
makesuse
of
the
proxy
environment
variable.
This
can
be
set
system
wide
in
/etc/profile
or
user
specific
in
~/.bash_profile:export
http_proxy=http://yourproxy:8080/export
ftp_proxy=http://yourproxy:8080/---------------------------------------3.
To
use
wget
throug
a
proxy
serveradd
the
following
lines
to
/etc/wgetrc
http_proxy
=
http://yourproxy:8080/
ftp_proxy
=
http://yourproxy:8080/
㈦ 如何在Linux上設置全局代理
設置全局代理,方法如下:
修改 /etc/profile 文件,添加下面內容:
http_proxy=http://username:password@yourproxy:8080/
ftp_proxy=http://username:password@yourproxy:8080/
export http_proxy
export ftp_proxy
如果沒有密碼限制,則以上內容可以修改為以下內容:
http_proxy=http://yourproxy:8080/
ftp_proxy=http://yourproxy:8080/
export http_proxy
export ftp_proxy
㈧ linux deepin如何使用代理上網
是不能聯網還是上互聯網?
首先你要能區域網自己聯。代理設置很簡單,firefox的設置跟IE沒區別。也可以在bash_profile設置
http_proxy=aa.aa.aa.aa
但是我覺得你說的代理是指聯網的客戶端
㈨ linux系統在命令行模式下如何設置使用代理上網
你用什麼系統?每個系統設置都不一樣的
比如我用的Archlinux
可以創建 http_proxy 變數
export http_proxy=http://10.229.4.105:8080