Monthly Archives: June 2016

Installing Composer

https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx Install git: https://git-scm.com/book/en/v2/Getting-Started-Installing-Git sudo apt-get install git-all Tried this to install pd_mysql sudo apt-get install php5-gd php5-mysql To install it for php7 sudo apt-get install php7.0-mysql

Posted in Uncategorized | Leave a comment

Installing PHP on Debian

I think this broke: http://devdocs.magento.com/guides/v2.0/install-gde/prereq/php-ubuntu.html#instgde-prereq-php70-ubuntu I am trying this now: https://www.colinodell.com/blog/2015-12/installing-php-7-0-0

Posted in Uncategorized | Leave a comment

Installing Mysql On Debian

Go here: http://dev.mysql.com/doc/mysql-apt-repo-quick-guide/en/#apt-repo-fresh-install http://dev.mysql.com/downloads/repo/apt/ Download the APT Repo. Run sudo dpkg -i /PATH/version-specific-package-name.deb sudo apt-get update sudo apt-get install mysql-community-server sudo apt-get install mysql-workbench Make a user: http://dev.mysql.com/doc/refman/5.7/en/adding-users.html CREATE USER ‘finley’@’localhost’ IDENTIFIED BY ‘some_pass’;

Posted in Uncategorized | Leave a comment

Installing Netbeans on Debian

Install JDK http://askubuntu.com/questions/300564/netbeans-install-error-the-specified-jdk-folder-does-not-contain-jdk sudo apt-get install openjdk-7-jdk Then download Netbeans https://netbeans.org/community/releases/81/ chmod +x …. then run the sh Clone from bitbucket using this: https://netbeans.org/kb/docs/ide/git.html

Posted in Uncategorized | Leave a comment