Welcome to Tesla Motors Club
Discuss Tesla's Model S, Model 3, Model X, Model Y, Cybertruck, Roadster and More.
Register

Music on USB drive not playing

This site may earn commission on affiliate links.
I've only had my car for 2 days so I haven't had an opportunity to really try to troubleshoot this.

When I picked up my car I plugged in a USB 3.0 drive that is formatted as ext4 and has a mix of FLAC and MP3s that are playable on my laptop. I am able to browse the drive via the touchscreen, but when it tries to start playing it says unable to play (both FLAC and MP3). I've tried several albums, artists, formats, all ripped at different times.

Any ideas?
 
You might want to try checking the file permissions on the drive. I had similar issues with some content I copied to mine last night, and that turned out to be the cause.

To cover all bases, something like the following should clear it up:
$ find /path/to/drive -type d -exec chmod a+rx {} \;
$ find /path/to/drive -type f -exec chmod a+r {} \;
 
You might want to try checking the file permissions on the drive. I had similar issues with some content I copied to mine last night, and that turned out to be the cause.

To cover all bases, something like the following should clear it up:
$ find /path/to/drive -type d -exec chmod a+rx {} \;
$ find /path/to/drive -type f -exec chmod a+r {} \;

That was it! I forgot I had the umask set to 077. Working perfectly now and sounds great!

Thanks!