Category: Ubuntu

16/03/2019

Install phpMyAdmin on Ubuntu

After installing MySql/MariaDB Database Server, You can easily install phpMyAdmin on Ubuntu Machine.Follow the steps below:1. Update the package index and upgrade the system packages to the latest versions:     > sudo apt update     > sudo apt upgrade  (optional)2. Install the phpMyAdmin package     > sudo apt install phpmyadmin3. Choose apache2 by pressing Space Key and then Enter on Keyboard, when a popup screen appears.4. Next, you will be asked […]

16/03/2019

Reset Password in MySQL | How to fix Access denied for user ‘root’@’localhost’

Set/Reset Password in MySQL use mysql; SET PASSWORD FOR ‘root’@’localhost’ = PASSWORD(‘newpassword’); OR ALTER USER ‘root’@’localhost’ IDENTIFIED BY ‘newpassword’; OR UPDATE mysql.user SET authentication_string = PASSWORD(‘newpassword’), password_expired = ‘N’ WHERE User = ‘koha_library’ AND Host = ‘localhost’; flush privileges; Mysql(Ubuntu): How to fix Access denied for user ‘root’@’localhost’ sudo mysql -u root use mysql; update user set plugin=’mysql_native_password’ where User=’root’; flush privileges; Koha auto_increment bug […]

28/11/2018

How to Install TeamViewer on Ubuntu 18.04/20.04 LTS

TeamViewer is very popular software for Remote Access. You can Install TeamViewer on Ubuntu by following the process below. Open up the Terminal and enter following command: $ sudo apt install gdebi-core Next, download the latest TeamViewer package: $ wget https://download.teamviewer.com/download/linux/teamviewer_amd64.deb Lastly, install the previously downloaded package using below command: $ sudo gdebi teamviewer_amd64.deb Answer y when prompted. The TeamViewer is now installed. Use your start menu to […]

16/09/2018

Dspace Installation & Configuration on Ubuntu

Install DSpace 6.x on Ubuntu 16.04 LTS by Vimal Kumar Install DSpace 5.6 on Ubuntu 16.04 LTS by Vimal Kumar Installing DSpace 5.5 on Lubuntu/Ubuntu 14.04 LTS by DKTripathi Install DSpace 5.x on Ubuntu 14.04 LTS by Vimal Kumar Total Views: 1908