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
When accessing the virtual host at http://RASPPI IP/diskplayer/ I try to write a spotify album URL to the floppy and it properly writes the diskplayer.contents file into tmp, but it doesn't properly move the file to the floppy disk.
My floppy drive mounts to /media/pi/Floppy Disk/
not sure if there's a way to change it to /media/floppy/
Here is my copyfiles.sh code:
#!/bin/sh
# /etc/init.d/copyfiles.sh
### BEGIN INIT INFO
# Provides: copyfiles.sh
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Copies file to the floppy
# Description: Copies specific file from tmp folder to the mounted floppy once created
### END INIT INFO
inotifywait -m /home/pi/diskplayer/tmp -e create @__init__.py |
while read path action file; do
if [ "$file" = "diskplayer.contents" ]; then
sudo chown root:root "${path}/${file}"
sudo chmod 777 "${path}/${file}"
sudo mv "${path}/${file}" /media/pi/Floppy Disk/diskplayer.contents
fi
done
The text was updated successfully, but these errors were encountered:
When accessing the virtual host at http://RASPPI IP/diskplayer/ I try to write a spotify album URL to the floppy and it properly writes the diskplayer.contents file into tmp, but it doesn't properly move the file to the floppy disk.
My floppy drive mounts to /media/pi/Floppy Disk/
not sure if there's a way to change it to /media/floppy/
Here is my copyfiles.sh code:
The text was updated successfully, but these errors were encountered: