How to install phpMyAdmin Ubuntu

July 13, 2021 . 1 MIN READ

Today I need to install and configured lamp server for our ubuntu server and we faced problem when we configured phpMyAdmin, we found

sudo apt-get install phpmyadmin

not working. The problem was “sudo apt-get update”  did not work properly. So solve this problem, we implement following solution:

Remove any files you have in /var/lib/apt/lists/partial by following command:

sudo rm /var/lib/apt/lists/partial/*

then write :

sudo apt-get update

it should work now.

Leave a Reply

Your email address will not be published. Required fields are marked *