Created
August 10, 2019 03:58
-
-
Save sonnyksimon/85154134865fdf32d54582ae668b14b5 to your computer and use it in GitHub Desktop.
Install rEFInd for Ubuntu
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
#!/bin/bash | |
set -e | |
if [[ $EUID -ne 0 ]]; then | |
echo "ERROR: Must be run with root privileges." | |
exit 1 | |
fi | |
apt-add-repository ppa:rodsmith/refind | |
apt-get update | |
apt-get install refind |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment