Difference between revisions of "Setting up internet access"

From Raspberry Pi Min-Grant project
Jump to: navigation, search
(Created page with "<span style="font-size:medium;">Setting up internet proxy</span> <span style="font-size:medium;"></span>If you need to access the internet via a proxy as is the case in sever...")
 
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
<span style="font-size:medium;">Setting up internet proxy</span>
 
<span style="font-size:medium;">Setting up internet proxy</span>
  
<span style="font-size:medium;"></span>If you need to access the internet via a proxy as is the case in several universities we must follow the following steps&nbsp;
+
If you need to access the internet via a proxy as is the case in several universities we must follow the following steps&nbsp;
  
#
+
#In the directory <span style="font-family:courier new,courier,monospace;">/etc/apt/apt.conf.d/&nbsp;</span>&nbsp;create the file<span style="font-family:courier new,courier,monospace;">10proxy</span>
  
<span style="font-size:medium;"></span>
+
<code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;cd /etc/apt/apt.conf.d/</code>
 +
 
 +
<code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;sudo nano 10proxy</code>
 +
 
 +
&nbsp; 2. In this file add the line&nbsp;
 +
 
 +
<code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Acquire::http::Proxy "[http://username:password@proxy_address:port http://username:password@proxy_address:port]";</code>
 +
 
 +
&nbsp;&nbsp;At DeKUT we type
 +
 
 +
<code>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</code><span style="font-family: monospace;">&nbsp;Acquire::http::Proxy "[http://192.168.96.1:8080 http://192.168.96.1:8080]";</span><code>&nbsp;&nbsp;</code>
 +
 
 +
&nbsp;&nbsp;3. Save the file and exit- Type Ctrl-X and type Y when asked whether to save changes
 +
 
 +
&nbsp; 4. In the terminal type <span style="font-family:courier new,courier,monospace;">sudo apt-get update&nbsp;</span>
 +
 
 +
You should now have access to the internet

Latest revision as of 11:09, 29 April 2015

Setting up internet proxy

If you need to access the internet via a proxy as is the case in several universities we must follow the following steps 

  1. In the directory /etc/apt/apt.conf.d/  create the file10proxy

         cd /etc/apt/apt.conf.d/

         sudo nano 10proxy

  2. In this file add the line 

         Acquire::http::Proxy "http://username:password@proxy_address:port";

  At DeKUT we type

          Acquire::http::Proxy "http://192.168.96.1:8080";  

  3. Save the file and exit- Type Ctrl-X and type Y when asked whether to save changes

  4. In the terminal type sudo apt-get update 

You should now have access to the internet