当前正在尝试实现网络引导的RPi3b +网络,并且为我已经打印的这些pi提供了一块辅助板。辅助板具有经典的DS18B20等功能,可以监控rpi和aux板所在的盒子的温度。
问题是,当我使用网络引导的pi时,访问/ sys / bus / w1 / devices时无法显示任何设备(包括w1_bus_master1)。参见下文
library(h2o)
h2o.init()
train <- as.h2o(train)
test <- as.h2o(test)
aml <- h2o.automl(x = x, y = y,
training_frame = train,
leaderboard_frame = test)
我知道我的电路是正确的,因为当我从具有与netbooted映像相同的raspbian映像的SD卡启动RPi时,它是有效的。在网络引导的rpi上,我看到针对w1-therm和w1-gpio运行的1-wire进程。
pi@raspberrypi:/etc $ cd /sys/bus/w1/devices/
pi@raspberrypi:/sys/bus/w1/devices $ ls -l
total 0
我的网络启动过程大致遵循本教程, https://blockdev.io/network-booting-a-raspberry-pi-3/
我有一个NFS挂载,其中包含config.txt文件,其中包含 dtoverlay = w1-gpio,gpiopin = 4
在这里我要花点时间,真的很想维持netbooting功能,因为这种实现方式更可取,并且持续30多个pi,不希望在sd卡上生气。 >
欢呼