Linux

Instructions on how to set up proxy on Linux.

How to set up proxy on Linux

Linux offers a variety of distributions for people interested in alternative OS. Unfortunately, it would be impossible to cover the set up on all of them. This guide will provide a good understanding of a system-wide proxy setup.

  1. First, open Terminal.
586

Linux – Open Terminal

  1. Then, sign in as a root user.
361

Linux – Sign in

  1. Next, open /etc/environment file with nano.
505

Linux – Open a file

  1. You should now be presented with a text editor window. Configure your proxy:
http_proxy="http://gate.smartproxy.com:7000"
https_proxy="http://gate.smartproxy.com:7000"
no_proxy="localhost"

You can select any other endpoint from the available list. If needed, username:password authentication is also available via http://username:[email protected]:7000.

647

Linux – Configure your proxy

  1. To finish editing the selected file, hit CTRL + X, then enter Y to save changes, and confirm the file location by pressing ENTER.
583

Linux – Finish editing the file

  1. Finally, lock the file and reboot your machine. Please note that proxy changes may disappear if you skip this step.

To lock the file, enter chattr +i /etc/environment. To unlock it later, you can use the -i flag.

576

Linux – Lock the file