Needed to install these three extensions in order to get CraftCMS running locally, but they are pretty common extensions so I'm sure others would be able to make use of them if you permanently added them to the virtual box:
cURL
mcrypt
imagick
Here is what I had to do to install each:
cURL
sudo apt-get install libcurl3 php5-curl
sudo php5enmod curl
mcrypt
sudo apt-get install php5-mcrypt
sudo updatedb
locate mcrypt.ini should show it located at /etc/php5/mods-available
locate mcrypt.so
Edit mcrypt.ini and change extension to match the path to mcrypt.so, example: extension=/usr/lib/php5/20121212/mcrypt.so
sudo php5enmod mcrypt (optional since its already enabled during phpmyadmin setup)
Needed to install these three extensions in order to get CraftCMS running locally, but they are pretty common extensions so I'm sure others would be able to make use of them if you permanently added them to the virtual box:
Here is what I had to do to install each:
cURL
sudo apt-get install libcurl3 php5-curl
sudo php5enmod curl
mcrypt
sudo apt-get install php5-mcrypt
sudo updatedb
locate mcrypt.ini
should show it located at /etc/php5/mods-availablelocate mcrypt.so
extension=/usr/lib/php5/20121212/mcrypt.so
sudo php5enmod mcrypt
(optional since its already enabled during phpmyadmin setup)imagick
sudo apt-get install php5-imagick
sudo php5enmod imagick