This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Part 0 - Updating system | |
sudo pacman -Syyu | |
# Part 1 - Installing software dependencies | |
sudo pacman -S git gnome-keyring | |
# Part 2 - Compile and Install MySQL Server | |
# (This might take like ~4 hours since it's compiling the source) | |
git clone https://aur.archlinux.org/mysql.git | |
cd mysql |