Hi everyone,
I switched to Debian 12 bookworm recently, and I am no longer able to save or download files to usb drives from chrome or browsers, I get the message Need permission to download. This did not use to be the case when I was using Debian 11. What can I do to change this?
What file format is your USB drives? If you formated them to ext4 on your debian 11 system then it may just be a permissions issue.
ls -la </path/usb/drive>
chown <your_username> -R </path/usb/drive>
To let all users access the drive:
chmod -R 777 </path/usb/drive>