Hello,
I have recently installed Linux Lite (LL) v5.2 as a dual boot with Windows 10 Home on two (out of 3) laptops and it is a pleasure using it. The installation was smooth and the available on LL website installation guide was very helpful.
Many thanks to the Linux Lite developers. My initial impression is that LL works faster than Windows 10 on my laptops and requires less RAM.
My third laptop (Acer 3023 with Sempron 3000+ and 1.25GB ram) was too old for LL, and its only OS is Debian 10 i386 with lxqt, chosen after a dozen of experiments.
Following the Linux Lite tutorials and tips from Ubuntu forums, I was able to connect all laptops and OS (Linux Lite, Windows 10 Home, Debian 10) in a small network and its work is satisfying, especially after the installation of Barrier, which allows me to use one keyboard and mouse for all laptops and OS.
I have though one problem that prevents me using LL on my ACER 5745G, 8GB, i5-460M laptop during my home office working hours.
I need to connect the laptop to my employer’s VPN server, which uses SSTP, while been able to keep the access to Internet for other applications.
I was able to connect the laptop with LL to the VPN server, but then I lost the connection to Internet. Chrome and Firefox just say there is some DNS error and refuse to work.
I have been able to establish the connection with the same laptop with Windows 10 and mapped a network drive to the company’s server, without any problems. Thus, I believe that the hardware, internet connection and user login data are tested successfully.
What I have done by now is the following:
Windows 10 Home:
1. Network Settings -> Add a VPN connection
2. Filled the Connection name, Server name, VPN type (sstp), and sign in info.
3. I entered the server IP in File Explorer address bar, selected the shared folder, and used my office network login data.
4. Mapped the shared folder and successfully used it ever after.
Linux Lite v. 5.2, following various advices and tips found on the LL tutorials and Ubuntu forums:
1. Installed CIFS-utils
2. Installed libevent-2.1-7 with Synaptic PM, after an advice on Ubuntu forums that NM sstp plugin would need it.
3. Installed Eivind Naess network-manager sstp plugin:
4. Start Menu->Internet->Network Connection
Clicked on Add connection, chosen VPN, SSTP and clicked the Create button.
5. Filled the Connection name.
6. Typed in Gateway field the Server name, i.e. vpn.XXX.com.
7. Filled the VPN User name and Password
8. Clicked the Advanced button
9. Authentication methods -> clicked only MSCHAP and MSCHAPv2
10. Unclicked everything else on the dialog window and pressed OK
11. Saved the VPN connection settings
12. Network Manager (NM) tray icon -> VPN connections -> ticked the VPN connection
13. Edited the existing WiFi connection to automatically connect the VPN connection
14. A message appeared saying that the VPN connection was successfully established
15. The Ping to the VPN server seemed successful
16. In the Network File Manager address bar, I typed the VPN server's IP address.
17. Clicked on the shared folder and typed my office’s Network login data
18. I mounted the VPN server’s shared folder with:
And I got access to the VPN server through the Devices section of the File Manager
19. I created a credentials file:
and typed in
20. Edited the /etc/fstab file:
adding at the end
And to unmount it with:
The SSTP connection to the VPN server works with one BIG BUT.
When the VPN connection is established, I don’t have any other access to Internet. I mean Firefox, Chrome and Skype don’t have any access to Internet, while the File Manager has access to the VPN server. Once I disable the VPN connection, the Internet access is restored, and I am able to browse Internet again.
While the VPN connection is established, Google Chrome refuses to load any web site with the message:
My WiFi connection settings are as follow:
I would like to have connection to the VPN server and access to Internet at the same time, but I don’t have the knowledge and experience to find out what is the problem.
Any help will be much appreciated!
I have recently installed Linux Lite (LL) v5.2 as a dual boot with Windows 10 Home on two (out of 3) laptops and it is a pleasure using it. The installation was smooth and the available on LL website installation guide was very helpful.
Many thanks to the Linux Lite developers. My initial impression is that LL works faster than Windows 10 on my laptops and requires less RAM.
My third laptop (Acer 3023 with Sempron 3000+ and 1.25GB ram) was too old for LL, and its only OS is Debian 10 i386 with lxqt, chosen after a dozen of experiments.
Following the Linux Lite tutorials and tips from Ubuntu forums, I was able to connect all laptops and OS (Linux Lite, Windows 10 Home, Debian 10) in a small network and its work is satisfying, especially after the installation of Barrier, which allows me to use one keyboard and mouse for all laptops and OS.
I have though one problem that prevents me using LL on my ACER 5745G, 8GB, i5-460M laptop during my home office working hours.
I need to connect the laptop to my employer’s VPN server, which uses SSTP, while been able to keep the access to Internet for other applications.
I was able to connect the laptop with LL to the VPN server, but then I lost the connection to Internet. Chrome and Firefox just say there is some DNS error and refuse to work.
I have been able to establish the connection with the same laptop with Windows 10 and mapped a network drive to the company’s server, without any problems. Thus, I believe that the hardware, internet connection and user login data are tested successfully.
What I have done by now is the following:
Windows 10 Home:
1. Network Settings -> Add a VPN connection
2. Filled the Connection name, Server name, VPN type (sstp), and sign in info.
3. I entered the server IP in File Explorer address bar, selected the shared folder, and used my office network login data.
4. Mapped the shared folder and successfully used it ever after.
Linux Lite v. 5.2, following various advices and tips found on the LL tutorials and Ubuntu forums:
1. Installed CIFS-utils
Code:
sudo apt update
sudo apt install cifs-utils
2. Installed libevent-2.1-7 with Synaptic PM, after an advice on Ubuntu forums that NM sstp plugin would need it.
3. Installed Eivind Naess network-manager sstp plugin:
Code:
sudo add-apt-repository ppa:eivnaes/network-manager-sstp
sudo apt-get update
sudo apt install network-manager-sstp sstp-client
4. Start Menu->Internet->Network Connection
Clicked on Add connection, chosen VPN, SSTP and clicked the Create button.
5. Filled the Connection name.
6. Typed in Gateway field the Server name, i.e. vpn.XXX.com.
7. Filled the VPN User name and Password
8. Clicked the Advanced button
9. Authentication methods -> clicked only MSCHAP and MSCHAPv2
10. Unclicked everything else on the dialog window and pressed OK
11. Saved the VPN connection settings
12. Network Manager (NM) tray icon -> VPN connections -> ticked the VPN connection
13. Edited the existing WiFi connection to automatically connect the VPN connection
14. A message appeared saying that the VPN connection was successfully established
15. The Ping to the VPN server seemed successful
16. In the Network File Manager address bar, I typed the VPN server's IP address.
17. Clicked on the shared folder and typed my office’s Network login data
18. I mounted the VPN server’s shared folder with:
Code:
sudo mount -t cifs -o username=<my office network username>,password=<my office network password> //<Server IP>/<Shared folder> /home/<Folder on my hdd>
And I got access to the VPN server through the Devices section of the File Manager
19. I created a credentials file:
Code:
sudo mousepad /etc/XXXcred
Quote:username=<my office network username>then I saved it.
password=<my office network password>
domain=<VPN server domain name>
20. Edited the /etc/fstab file:
Code:
sudo mousepad /etc/fstab
adding at the end
Quote://<Server IP>/<Shared folder> /home/<Folder on my hdd> cifs credentials=/etc/XXXcred 0 021. At this point I was able to mount the VPN server’s shared folder with:
Code:
Sudo mount /home/<Folder on my hdd>
Code:
Sudo umount –l /home/<Folder on my hdd>
The SSTP connection to the VPN server works with one BIG BUT.
When the VPN connection is established, I don’t have any other access to Internet. I mean Firefox, Chrome and Skype don’t have any access to Internet, while the File Manager has access to the VPN server. Once I disable the VPN connection, the Internet access is restored, and I am able to browse Internet again.
While the VPN connection is established, Google Chrome refuses to load any web site with the message:
Quote:<Web site> server IP address could not be foundAnd after some automatic troubleshooting:
Quote:DNS_PROBE_FINISHED_BAD_CONFIG
My WiFi connection settings are as follow:
Quote:Connection Name: <My WiFi name>Everything else is blank and unchecked.
SSID: <My WiFi name>
Mode: Client
Band: Automatic
Channel: default
Device: wlp3s0
MTU: automatic
IPV4 Settings:
Method: Automatic (DHCP)
I would like to have connection to the VPN server and access to Internet at the same time, but I don’t have the knowledge and experience to find out what is the problem.
Any help will be much appreciated!