1

I installed PHPmyAdmin through this code

sudo apt-get install phpmyadmin apache2-utils

I want to know how to upgrade through terminal

HMS8
  • 129
  • 2
  • 3
  • 13

1 Answers1

1

To upgrade phpmyadmin only use

sudo apt-get update
sudo apt-get install phpmyadmin

This install with an already installed package will upgrade it to the latest version.

To upgrade all packages — phpmyadmin and all others — use

sudo apt-get update
sudo apt-get upgrade
  • 9
    latest version which the distribution supports, not necessarily the latest version of phpMyAdmin. – Raptor Feb 13 '17 at 06:51