Explore >> Select a destination


You are here

blog.gnoack.org
| | niemczuk.tech
9.0 parsecs away

Travel
| | In this quick tutorial I show you how to create a wireguard VPN on a remote linux server and connect a linux client in 5 minutes.
| | blog.oxplot.com
9.8 parsecs away

Travel
| |
| | d.sb
14.2 parsecs away

Travel
| | WireGuard is an exciting, new, extremely simple VPN system that uses state-of-the-art cryptography. Its Linux implementation runs in the kernel, which provides a significant performance boost compared to traditional userspace VPN implementations The WireGuard kernel module is great, but sometimes you might not be able to install...
| | willhaley.com
45.6 parsecs away

Travel
| These steps are for configuring an NFS Linux server on Ubuntu. Install the nfs-kernel-server package. sudo apt-get install nfs-kernel-server Check to see if NFS is running. sudo systemctl status nfs-kernel-server Create a directory to serve via NFS. sudo mkdir -p /srv/nfs Create an /etc/exports file. In my case, I am serving my /srv/nfs directory to any machine on my network. You may read about the other options online. # /etc/exports /srv/nfs 192.168.0.0/24(sync,no_subtree_check,insecure) Reload the NFS export configuration now that our export is defined.