Has school destroyed your creativity and self-confidence? I'm working on a book called Recovering From School, to help you heal the damage caused. Join the Patreon or Newsletter to be notified about updates. Paid Patreon members will get early draft previews, as well as a free digital copy when it's done.
How To Unblock LinkedIn At School On Linux
Part of the Mega Guide: How To Unblock Anything At School
Unblocking LinkedIn on Linux using a VPN
The tool that can aid you in this situation is called a VPN, which stands for VPN stands for Virtual Private Network. Think of a VPN as a secret tunnel through the internet. It scrambles your online activity and makes it appear like you're accessing the web from a different location. This way, it can bypass the restrictions set by your school and grant you access to sites like YouTube that you might otherwise be restricted from.One VPN I'd like to suggest is ProtonVPN. They provide a free version that might be just what you need. It's a effective tool because it protects your privacy - no logs of your activity, no speed limits, and it can circumvent censorship without a hitch. Plus, it operates under Swiss privacy laws, which are among the most robust globally. The sense of security this provides, knowing your data isn't being tracked, can be a minor yet reassuring relief amidst the drudgery of school life.
Now, there's one caveat: you'll need to have the capability to install software on your device. If you're using a school-issued computer or tablet, this might be a hurdle. In such cases, check if you have the necessary permissions or if there's a way to get them. If you're using a personal device, the process is much smoother.
To install ProtonVPN, simply go to the app store on your device and search for ProtonVPN. Download the app - it's free. Once it's installed, open the app, and follow the setup instructions. You'll be able to connect to their servers and start browsing as if you're anywhere other than the confines of your school's network.
The free version of ProtonVPN is quite generous, but if you find you need more features - such as faster speeds or access to more servers - you can consider upgrading to the paid version. If you choose to use our affiliate link, we'll earn a small commission, but more importantly, you'll get a tool that might just make those long school days a little more bearable.
Other ways to unblock LinkedIn on Linux
Unblocking LinkedIn On Linux using Free DNS Servers
What Are DNS Servers?
Think of you need to locate a friend's house, but you only know their name, not their location. You’d probably consult someone who is aware of where they live, right?
In the internet world, DNS servers (Domain Name System servers) are like those helpful friends. When you type a website's address (like www.example.com) into your browser, DNS servers convert that name into an IP address (a numeric address) that your computer can understand and use to access the website.
How Changing DNS Servers Can Help Bypass Censorship
Sometimes, certain websites might be blocked by your internet service provider or your school. They do this by making your DNS queries (requests to access a website) pass through servers that either send them.
Here's how changing your DNS servers can assist:
Different DNS Servers: By switching to a different DNS server (like Google's public DNS or Cloudflare's DNS), you might avoid these blocks. These other servers might not have the same exact restrictions or might not block LinkedIn on Linux.
Accessing Restricted Sites: If a particular DNS server is known for allowing access to certain websites, using that server can help you circumvent the restrictions put in place by your school.
There exist a lot of free DNS providers. This guide demonstrate how to set up OpenDNS, however you can swap the IP addresses for other providers if you prefer.
There is a big list of DNS servers here: https://public-dns.info/
Here are some of the popular ones:
Google: 8.8.8.8 and/or 8.8.4.4
Cloudflare: 1.1.1.1
How to Change DNS Servers on Linux
Changing DNS servers on Linux can be done via the command line by editing configuration files or using network management tools. Here’s a step-by-step guide for several methods:
Method 1: Using resolv.conf
File
Open Terminal: Open your terminal.
Edit the resolv.conf File:
- Use a text editor to open the
/etc/resolv.conf
file. For example:sudo nano /etc/resolv.conf
- Add or change the
nameserver
lines to your desired DNS servers. For instance:
These addresses are Google's public DNS servers. You can replace them with the IP addresses of your preferred DNS servers.nameserver 8.8.8.8 nameserver 8.8.4.4
- Use a text editor to open the
Save and Exit:
- If you’re using
nano
, pressCtrl+X
, thenY
to confirm changes, andEnter
to save.
- If you’re using
Check the Changes:
- You can verify the changes by using:
cat /etc/resolv.conf
- You can verify the changes by using:
Method 2: Using NetworkManager
If you’re using a system with NetworkManager (common in many desktop distributions), you can change DNS settings via the nmcli
command:
List Connections:
nmcli connection show
Modify the Connection:
- Replace
<connection-name>
with the name of your connection. For example, if your connection is calledWired connection 1
, the command might look like:sudo nmcli connection modify "Wired connection 1" ipv4.dns "8.8.8.8,8.8.4.4"
- You can also specify DNS servers for IPv6 if needed:
sudo nmcli connection modify "Wired connection 1" ipv6.dns "2001:4860:4860::8888,2001:4860:4860::8844"
- Replace
Restart NetworkManager:
sudo systemctl restart NetworkManager
Method 3: Using systemd-resolved
(if applicable)
Some distributions use systemd-resolved
for DNS resolution.
Check the Status:
systemctl status systemd-resolved
Edit the Resolved Configuration:
- Open the
/etc/systemd/resolved.conf
file:sudo nano /etc/systemd/resolved.conf
- Under the
[Resolve]
section, add or modify theDNS
line. For example:[Resolve] DNS=8.8.8.8 8.8.4.4
- Optionally, you can also set
FallbackDNS
for fallback servers.
- Open the
Restart
systemd-resolved
:sudo systemctl restart systemd-resolved
Ensure
/etc/resolv.conf
Points tosystemd-resolved
:sudo ln -sf /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf
Notes
- NetworkManager and systemd-resolved might override manual changes to
/etc/resolv.conf
, so adjusting settings through these tools is often preferable. - Permissions: Most of these commands require
sudo
or root permissions. - Restarting Services: After making changes, restarting network services or the computer might be necessary for the changes to take effect.
Choose the method that matches your system’s configuration and network management tools.
If you like what we're doing here, you can become a Patron and sign up for our newsletter!