I tried running a curl script and realized I don't have the package installeds, I ran the following:
sudo apt-get install php7.0-curl
But I get the following message regarding MariaDB:
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
mariadb-server : Depends: mariadb-server-10.1 (= 10.1.13+maria-1~trusty) but 10.1.11+maria~trusty is to be installed
php7.0 : Depends: php-common (>= 1:35) but 24+coinst+deb.sury.org~trusty+1 is to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
I assume the -f flag is to force it, but what are the consequences of something like that? I am more curious as to why installing something like curl for PHP would be causing problems with MariaDB. I installed MariaDB via PPA from their site: https://downloads.mariadb.org/mariadb/repositories/#mirror=iweb&distro=Ubuntu&distro_release=trusty--ubuntu_trusty&version=10.1
I'm running Ubuntu Server 14.0.4 LTS with PHP 7.0.2. Was planning on updating to 7.0.8 as well but figured I better get this sorted out first. I tried sudo apt-get update as well. This is a development VM so the world isn't over if it gets botched.
Thanks for the help!