<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>linux :: Docs</title><link>https://docs.thismightnot.work/linux/index.html</link><description/><generator>Hugo</generator><language>en-nz</language><lastBuildDate>Tue, 14 May 2024 21:50:46 +1200</lastBuildDate><atom:link href="https://docs.thismightnot.work/linux/index.xml" rel="self" type="application/rss+xml"/><item><title>Kubernetes</title><link>https://docs.thismightnot.work/linux/kubernetes/index.html</link><pubDate>Tue, 14 May 2024 21:28:43 +1200</pubDate><guid>https://docs.thismightnot.work/linux/kubernetes/index.html</guid><description/></item><item><title>Setup NFS Server</title><link>https://docs.thismightnot.work/linux/setup-nfs-server/index.html</link><pubDate>Tue, 14 May 2024 21:50:46 +1200</pubDate><guid>https://docs.thismightnot.work/linux/setup-nfs-server/index.html</guid><description>Minimum requirements Linux, this page will cover Alpine, Debian and RHEL based configurations 1-2 CPU cores 1GB memory 10gb storage (All depends on what your applications will require) Install the required packages OS: Alpine Debian/Ubuntu RHEL/Centos sudo apk update # Update apk cache sudo apk add nfs-utils # Install NFS utils/server sudo rc-update add nfs # Start NFS server on boot sudo apt update # Update apt cache sudo apt install -y nfs-kernel-server rpcbind # Install NFS server sudo systemctl enable --now nfs-server rpcbind # Start and enable nfs-server on boot sudo yum -y update # Update yum cache sudo yum -y install nfs-utils # Install NFS server sudo systemctl enable --now nfs-server rpcbind # Start and enable nfs-server on boot Configure shares This guide will use /share/nfs as an example, this guide wil also be allowing access to the share from 10.</description></item></channel></rss>