To change time zone from terminal
sudo dpkg-reconfigure tzdata
Related Posts
failed to create directory via template ‘/var/lock/apache2.XXXXXXXXXX’: No such file
Create the directory with mkdir -p /run/lock The install should now work (you may need…
Find and delete files older than 1 week (example)
find /home/users/backup_MyDB -type f -mtime +7 -exec rm {} + Although generally it is wise…