08-07-2022, 01:29 PM
It looks like there are some orphaned USB mounts, the one's with a trailing underscore. I've seen this on occasion but it's rare and I can't recall the scenario that causes it.
To fix this do the following:
1. Unplug all USB drives from the Pi
2. Delete any mount directories still remaining in /media
3. Plug the USB drives back into the Pi
4. Verify the mount directories are correctly named (should be same as the USB disk label)
5. Update library (from the menu)
Code:
pi@moode:~ $ ls -l /media
total 141
drwx------ 2 root root 4096 Jul 20 09:57 EFI
drwxr-xr-x 4 root root 512 Jan 1 1970 EFI_
drwx------ 2 root root 4096 Apr 24 17:20 Massimo
drwx------ 2 root root 4096 Jul 24 09:35 Musica
drwxr-xr-x 390 root root 131072 Aug 7 14:26 Musica_
To fix this do the following:
1. Unplug all USB drives from the Pi
2. Delete any mount directories still remaining in /media
Code:
# First make sure they are empty
ls -l /media/EFI_
ls -l /media/Musica_
# Delete the directories
sudo rm -rf /media/EFI_
sudo rm -rf /media/Musica_
3. Plug the USB drives back into the Pi
4. Verify the mount directories are correctly named (should be same as the USB disk label)
Code:
ls -l /media