Author: Ken Favors
How To Integrate Git With An Existing Website
alt: How To Convert An Existing Website Into A Git Repo THIS GUIDE HAS NOT BEEN COMPLETELY TESTED YET Did…
How To Export A MySQL Database Using The Command Prompt
https://stackoverflow.com/questions/3031412/how-to-export-a-mysql-database-using-command-prompt https://stackoverflow.com/questions/17666249/how-to-import-an-sql-file-using-the-command-line-in-mysql 1. Easiest Way For Export: $ mysqldump -u [username] -p [password] [dbname] > filename.sql To Import: $ mysql…
MariaDB/MySQL Will Not Start
https://www.percona.com/forums/questions-discussions/percona-xtradb-cluster/42921-unable-to-start-mysql-service ERROR: When there is a database error where your sites can’t connect to the db. This happened to me…
List All Packages That Have Updates Available In Ubuntu
https://askubuntu.com/questions/99834/how-do-you-see-what-packages-are-available-for-update /usr/lib/update-notifier/apt-check -p or https://askubuntu.com/questions/49958/how-to-find-the-number-of-packages-needing-update-from-the-command-line $ sudo cat /var/lib/update-notifier/updates-available The normal way to upgrade: $ sudo apt-get upgrade The alternative…
Repo Key Expired Error For EasyEngine On Ubuntu 16.04
Alt title: Software updater fails because of error in signature verification. http://community.rtcamp.com/t/repo-key-expired-error-for-easyengine-on-ubuntu-16-04/9227 The expiry date for the key has been…
Ubuntu 16.04 Shutdown & Restart
https://askubuntu.com/questions/187071/how-do-i-shut-down-or-reboot-from-a-terminal For shutdown: $ sudo poweroff For restart: $ sudo reboot