cfnet-fs can be run as a system service so that is runs whenever the system its running on boots.
cfnet-fs executable to /usr/local/bin/:sudo cp cfnet-fs /usr/local/bin/ sudo chmod +x /usr/local/bin/cfnet-fs
/etc/systemd/system/cfnet-fs.service file with the following contents: [Unit] Description=Run cfnet-fs filesystem service After=multi-user.target [Service] Type=oneshot RemainAfterExit=true ExecStart=/usr/local/bin/cfnet-fs /tmp/cfnet-fs /dev/i2c-0 /dev/i2c-1 /dev/i2c-3 [Install] WantedBy=multi-user.target
sudo systemctl enable cfnet-fs.service
sudo systemctl start cfnet-fs.service