nietgiftig wrote: > Installing squeezeboxserver on RaspberryPi 4 > > Not having much knowledge in the linux permissions circus, the question > is: > What permissions must exist for LMS to acces the USB HDD > The USB HDD is accessible with the RPI file manager > The USB HDD is automounted with the Raspberry Pi automounter and has the > HDD label as mount name. > > I have tried some different permissions, but no luck > The strange thing is, I have installed LMS a couple of weeks ago in the > same fashion and worked out of the box. > Something has changed, but what?
I prefer to do this through fstab, but setting the permissions should be similar if you are using the automount, I think. First, you need to find where the disk is mounted: sudo cat /proc/mounts For me, this looks like: /dev/sda1 /mnt/hd1 ext4 rw,noatime 0 0 Then change permissions: sudo chmod -R 777 /mnt/ I created the /mnt/ directory, so automount probably uses a different mount point and you will need to change /mnt/ to whatever you see with the cat command. If you're not comfortable using 777 for the permissions, you'll have to decide for yourself the permissions you prefer. ------------------------------------------------------------------------ AngloCuencano's Profile: http://forums.slimdevices.com/member.php?userid=64040 View this thread: http://forums.slimdevices.com/showthread.php?t=111940 _______________________________________________ Squeezecenter mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/squeezecenter
