You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now when you power off and then power on the CLIENT tcpdump should give lots of data (you should also notice the LEDs flashing for longer when it boots).
189
+
Now when you power off and then power on the CLIENT tcpdump should give lots of data and the result should be the green LED flashing (this means it couldn't find the kernel, not surprising since we didn't give it one...)
190
190
191
+
Next, we need to provide the other files (kernel and dt overlays etc) which are currently stored on the SERVER's boot directory, so:
191
192
193
+
```
194
+
cp -r /boot/* /tftpboot
195
+
```
196
+
197
+
This should now allow your Pi to boot through until it tried to load a root filesystem (which it doesn't have)... This is the point where you need to provide a filing system which is beyond this tutorial... Although I'll give you some clues for sharing the SERVERS filesystem with the client...
198
+
199
+
* Reboot SERVER with a normal ethernet connection (you'll probably need to remove the dhcpcd.conf line to re-enable the client)
200
+
*`sudo apt-get install nfs-kernel-server`
201
+
*`sudo vi /etc/exports`
202
+
* Add the line "/ *(rw,sync,no_subtree_check)" to exports
0 commit comments