LTSP configure local devices
- Read more about LTSP configure local devices
- Log in to post comments
# install packages
apt-get install -y ltspfs
# libfuse2 fuse-utils
# all all user to group fuse
for USER in $(ls /home/); do
if [ $USER != "lost+found" ]; then
usermod -a -G fuse $USER
fi
done
# load fuse module on boot
cat /etc/modules | grep fuse || echo fuse >> /etc/modules
# modify ltsp configuration
echo "LOCAL_STORAGE=Y" >> /var/lib/tftpboot/ltsp/*/lts.conf