Anytime I try to place something in the www folder in the sd card connected to my yun I get the following message.
"Warning: Problem accessing board folder www/sd"
I am also unable to access the sd card by using the address in the web server tutorial "192.168.x.x/local/sd"
I have placed a www folder inside of my sketch folder, and have also placed a folder called "arduino" with a sub folder "www" on the sd card itself. I have read a couple other posts on this, however I cant seem to find anything to get mine to work. Any ideas? Thanks!
mamu:
I have successfully accessed files placed in the www folder from a sketch and a python script.
I used this path notation: /www/sd/myfile.txt
That doesn't work for me even after manually placing a file on the sd card using my computer. Is there an easy way to check if the sd card is even being recognized by the yun?
Hm, is your file system FAT ? I'm not sure if FAT32 is supported.
Or have you used HFS to format your sd?
To test: make a ssh connection and try to cd to /www/sd
valerin, for the IDE to upload files (as with the TemperatureWebPanel example), your sd car must have a folder named "arduino" with a subfolder "www" (so the folder structure will be SD/arduino/www)
regarding filesystems: yun supports fat32 as well as ext3/4, hfs, ntfs out of the box. support for things like msdos, iso, nfs and others is optional and available as installable packages
yun does NOT support fat64, and I think nothing but the latest windows supports it, so just don't use it.
[quote author=Federico Fissore link=topic=200415.msg1480487#msg1480487 date=1385299742]regarding filesystems: yun supports fat32 as well as ext3/4, hfs, ntfs out of the box. support for things like msdos, iso, nfs and others is optional and available as installable packages
yun does NOT support fat64, and I think nothing but the latest windows supports it, so just don't use it.
[/quote]
Great! Is this already documented elsewhere?
Actually no, the only place is the image configuration file. The packages are the ones whose name starts with "kmod-fs-" in the package repository
Do you mind adding a short paragraph to the playground page?