Article title: Set the http proxy service for apt-get in three ways. Linux is a technology channel of the IT lab in China. Includes basic categories such as desktop applications, Linux system management, kernel research, embedded systems, and open source.
Method 1:
This is a temporary method. if you only need to use apt-get through http proxy temporarily, you can use this method.
Before using apt-get, enter the following command in the terminal (replace yourproxyaddress and proxyport according to your actual situation ).
Export http_proxy = http: // yourproxyaddress: proxyport
Method 2:
This method requires the apt. conf file in the/etc/apt/folder. If you want apt-get (instead of other applications) to always use http proxy, you can use this method.
Note: In some cases, the apt configuration file is not created during system installation. The following operations modify the existing configuration file or create a new configuration file as needed.
Sudo gedit/etc/apt. conf add the following line to your apt. conf file (replace yourproxyaddress and proxyport according to your actual situation ).
Acquire: http: Proxy "http: // yourproxyaddress: proxyport"; save the apt. conf file.
Method 3:
This method will be in your home directory. Add two rows to the bashrc file. If you want apt-get and other applications such as wget to use http proxy, you can use this method.
Gedit ~ /. Bashrc in your. Add the following content at the end of the bashrc file (replace yourproxyaddress and proxyport according to your actual situation ).
Http_proxy = http: // yourproxyaddress: proxyport
Export http_proxy saves the file. Close the current terminal and then open another terminal.
Use apt-get update or any network tool you want to use to test the proxy. I use firestarter to view active network connections.
If you modify the configuration file again to correct the error, close the terminal and open it again.