Try to edit the file: /opt/udoo-web-conf/shscripts/timezone.sh with something like: cp -f /usr/share/zoneinfo/Europe/Madrid /etc/localtime Obviously change the continent/city with your appropriate info (look for the file inside the "/usr/share/zoneinfo" directory which better suits your location) Félix
Yes it worked, I modified the timezone written in that file, and Neo stored it permanently. Inviato dal mio iPhone utilizzando Tapatalk
Worked also for me. But i want to underline that "sudo dpkg-reconfigure tzdata" command is needed anyway.
In the next days a new release of udoo-web-conf will be released. It features a GUI tool to change the timezone.
I just uncomment the Los Angeles line and commneted out the Tokyo line. #!/bin/bash sudo cp -f /usr/share/zoneinfo/America/Los_Angeles /etc/localtime #sudo cp -f /usr/share/zoneinfo/Europe/Rome /etc/localtime #sudo cp -f /usr/share/zoneinfo/Asia/Tokyo /etc/localtime It worked but you need to get around the permission of the file else it wili not be saved. try: sudo nano /opt/udoo-web-conf/shscripts/timezone.sh. Doing this you will save the changes.