sudo apt-get install php5-mysqlnd
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
dbconfig-common php5 php5-fpm php5-pgsql wwwconfig-common
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
php5-pgsql
The following packages will be REMOVED:
php5-mysql postfixadmin
The following NEW packages will be installed:
php5-mysqlnd php5-pgsql
0 upgraded, 2 newly installed, 2 to remove and 5 not upgraded.
Need to get 186 kB of archives.
After this operation, 1,858 kB disk space will be freed.
Do you want to continue? [Y/n] n
I don't want postfixadmin removed. How do I install mysqlnd (to get PHP and MariaDB to get along) without apt-get removing postfixadmin?
Thanks!
sudo apt-mark manual postfixadmin
and then check.. – heemayl Nov 29 '15 at 04:42After that, apt-get behaves the same way.
– Daniel Wilson Nov 29 '15 at 05:43postfixadmin
depends onphp5-pgsql
which is about to be removed. Make sure you keep that too; then things should work. – tripleee Nov 30 '15 at 07:12