Needed to add the nomodeset
option to grub to correctly boot
After boot edit /etc/default/grub
and add the nomodeset
to the line with
GRUB_CMDLINE_LINUX_DEFAULT
.
Run this to make it persistent:
In this guide I will go through all the steps to create a VPS, secure it and deploy a Django application. This is a summarized document from this digital ocean doc
Any commands with "$" at the beginning run on your local machine and any "#" run when logged into the server
Use this link and get $10 free. Just select the $5 plan unless this a production app.
git branch -m old_branch new_branch # Rename branch locally | |
git push origin :old_branch # Delete the old branch | |
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |