|
You are here |
blog.christophersmart.com | ||
| | | | |
blog.nuculabs.de
|
|
| | | | | Hi ??, In this blog post I will show you how to connect an Ethernet only device to Wi-Fi using an extra router and the WDS functionality. I initially wanted to install the TP Link Archer T4U WiFi adapter driver on my Ubuntu 20.04 PC but unfortunately the driver is no longer supported. Since I really needed high internet speed for my PC, I decided to connect it via an Ethernet cable and buy another TP-Link router to use in WDS mode. | |
| | | | |
cyberchris.xyz
|
|
| | | | | This is less of a blog post and more of a note on how I fixed my Anker 7 in 1 (with Ethernet) USB adapter, as the drivers don't work by default on Linux. First, troubleshooting step is lsusb, it should show you the ASIX Ethernet device after plugging it in: ? lsusb Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3. | |
| | | | |
willhaley.com
|
|
| | | | | 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. | |
| | | | |
brandonrozek.com
|
|
| | | Git is designed to be decentralized. However, many people treat it as a centralized solution by depending on services such as GitHub. What we've seen through the youtube-dl debacle is that repositories that we depend on can be taken down. This isn't to say that GitHub is evil and that we should move to Bitbucket, Gitlab, Source Hut, etc. But this is more of a commentary on what happens when we depend on one service to host our code. | ||