nfs-setup-guide
🖧 NFS Setup Guide — MiniPC ↔ Main PC This guide describes how to share directories between two Linux systems (e.g., MiniPC as server and Main PC as client) using NFS. It also includes troubleshooting notes and alternative sharing methods. ⚙️ 1. Install NFS On the MiniPC (server) 1 2 sudo apt update sudo apt install -y nfs-kernel-server On the Main PC (client) 1 2 sudo apt update sudo apt install -y nfs-common 📁 2. Create and prepare shared directory on the MiniPC 1 2 3 sudo mkdir -p /srv/nfs/share sudo chown -R youruser:youruser /srv/nfs/share sudo chmod -R 775 /srv/nfs/share (Replace youruser with your actual username — both systems should have the same UID, usually 1000.) ...