Skip to content

Instantly share code, notes, and snippets.

View AkashMartin1's full-sized avatar
💻

Akash Martin AkashMartin1

💻
  • Freelancer
  • INDIA
  • 21:46 (UTC +05:30)
View GitHub Profile

############### INSTALLING MySQL 5.6 ON UBUNTU 20.04 LTS

start by updating the release sudo apt-get update && sudo apt-get dist-upgrade

###### Uninstall any existing version of MySQL

check if you have any mysql installed

mysql -version

or

@AkashMartin1
AkashMartin1 / MySql-5.6-installation guide.md
Created May 18, 2022 14:20 — forked from vinodpandey/MySql-5.6-installation guide.md
Install MySQL 5.6.xx on Ubuntu 18.04 & Ubuntu 20.04

MySQL Download URL

https://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.46-linux-glibc2.12-x86_64.tar.gz

Open the terminal and follow along:

  • Uninstall any existing version of MySQL
sudo rm /var/lib/mysql/ -R
@AkashMartin1
AkashMartin1 / readme.md
Last active November 14, 2017 10:14 — forked from techgaun/readme.md
OpenSSH 7.4 on Ubuntu 14.04

Installing OpenSSH 7.4 on Ubuntu 14.04

sudo apt install -y build-essential libssl-dev zlib1g-dev
wget "https://fastly.cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-7.4p1.tar.gz"
tar xfz openssh-7.4p1.tar.gz
cd openssh-7.4p1
./configure
make
sudo make install && sudo service ssh restart && ssh -V