To change time zone from terminal
sudo dpkg-reconfigure tzdata
Related Posts
PHP code is not being executed, instead code shows on the page
For php7.4 sudo a2enmod proxy_fcgi setenvif sudo a2enconf php7.4-fpm sudo service apache2 restart
How to backup mysql database (command line)
To backup: mysqldump -u username -p database_to_backup > backup_name.sql To restore: mysql -u username -p…