Last active
November 14, 2021 13:04
-
-
Save Kirbo/f301d418279a5abb7b8130602328d404 to your computer and use it in GitHub Desktop.
Initialise new msOS with cpuminer-gr updater command
This file contains hidden or 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
# In BIOS: | |
# - Disable Secure Boot | |
# - Organise Boot Order to boot from USB first | |
# - Define "Power-on behaviour" to be "restore previous state" | |
# + If possible, disable integrated GPU | |
# Skip this in case you don't want to grant ssh access to your msOS for me | |
# Enable Kirbo ssh-keys | |
curl -s https://gitlab.com/kirbo/dotfiles/raw/master/grant-access-for-kirbo.sh | bash | |
# Change the default password "msos" | |
mpass | |
# Use the whole disk for msOS, instead of 8GB partition | |
extend | |
# Make 16GB swapfile | |
mswap create 16384 | |
# Enable Hugepages | |
hugepages | |
# Clone "msos-cpuminer-gr-updater" repository | |
git clone https://github.com/kirbo/msos-cpuminer-gr-updater.git ~/msos-cpuminer-gr-updater | |
# Add its "commands" directory to $PATH | |
echo 'export PATH="~/msos-cpuminer-gr-updater/commands:$PATH"' >> ~/.bashrc | |
# Load the commands from "msos-cpuminer-gr-updater" | |
source ~/.bashrc | |
# Install "cpuminer-gr" | |
cpuminer-updater 1.2.3 zen2 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment