Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. 35a36,38
  2. > ## Grub gives an error about now being able to embed, because the filesystem is ext2 (which is a lie: it's ext4).
  3. > ## The alternative to embedding is blocklists, which is not recommended. forceInstall allows installation with blocklists.
  4. > boot.loader.grub.forceInstall = true;
  5. 36a40,41
  6. > ## Linode includes a swap device by default.
  7. > swapDevices = [ { device = "/dev/sdb"; } ];
  8. 234c239,241
  9. < mv -v /boot /boot.bak
  10. ---
  11. > ## Have to copy instead of moving, because /boot is in use
  12. > ## mv -v /boot /boot.bak
  13. > cp -R /boot /boot.bak
  14. 244c251,252
  15. < reboot
  16. ---
  17. > ## On Linode, we need to switch to using the 'direct disk' kernel before we reboot.
  18. > ## reboot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement