BhallaLab / MouseBehaviour

Arduino and PointGrey camera based behaviour setup.
https://mousebehaviour.readthedocs.io/en/latest/
GNU General Public License v3.0
2 stars 5 forks source link

Session files written using docker need permission for edits #58

Closed hrishi16 closed 5 years ago

hrishi16 commented 5 years ago

The folders conatining data are read ony and cannot be edited. The permission needs to be changed at the docker level I think.

dilawar commented 5 years ago

you can change ownership of these files using chown

$ sudo chown -c -R hrishikesh:root ~/DATA

Assuming ~/DATA is where you have recorded tiff files.

See the manual page of chown for more details. In terminal, type man chown.

dilawar commented 5 years ago

Here is a good tutorial: https://www.tldp.org/LDP/GNU-Linux-Tools-Summary/html/x9543.htm

hrishi16 commented 5 years ago

This works. Thanks.