TunnelBear
TunnelBear is a VPN provider that utilizes OpenVPN protocol.
In order to use this tutorial, one must have Giant or Grizzly subscription.
Walkthrough
Download TunnelBear OpenVPN config files (also you can install tunnelbearAUR package from AUR).
Unzip the folder, and copy all the files to
$ /etc/openvpn/client/
Do not forget to change the permission
$ sudo chmod 600 /etc/openvpn/client/*
Pick the corresponding .ovpn that will be used (TunnelBear Japan is used as an example)
Rename the extension & remove the space
$ mv /etc/openvpn/client/TunnelBear\ Japan.ovpn /etc/openvpn/client/TunnelBearJapan.conf
Edit the .conf file
/etc/openvpn/client/TunnelBearJapan.conf
. . keepalive 10 30 auth-user-pass login.key . .
Create login.key
/etc/openvpn/client/login.key
yourtunnelbearusername yourtunnelbearpassword
Start & add it to systemd boot process
$ sudo systemctl start openvpn-client@TunnelBearJapan.service $ sudo systemctl enable openvpn-client@TunnelBearJapan.service