-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
USB drive isn't mounted automatically #3
Comments
2nd Note Added Note Added Original Below So the above code did not work for me and I got this error When using the image file it worked fine. I had a similar problem BUT with version 3.0 of the software you can change the looperconfig.txt file with USB=0 to USB=1 and it will use the USB instead of the memory chip. |
BOOM goes the dynamite. Now I guess we need to get this line into the install script to add to fstab somehow. |
This is something I think needs to be put into the installation script is adding |
I think the script needs
sudo mkdir /media/USB
sudo mount -t vfat -o rw /dev/sda1 /media/USB
plus we need it to automatically add a line to the file system table:
sudo nano /etc/fstab
add the line:
/dev/sda1 /media/USB vfat uid=pi,gid=pi 0 0
I'd amend the scripts myself, but (sorry) my scripting skills are very limited. I'd love it if your RPiVideoLooper would be widely used instead of expensive and buggy 'media players'.
The text was updated successfully, but these errors were encountered: