Skip to content

Instantly share code, notes, and snippets.

@ardasener
Last active August 14, 2021 20:05
Show Gist options
  • Save ardasener/d1466590c7b7332b9a5b3b01ddafe86b to your computer and use it in GitHub Desktop.
Save ardasener/d1466590c7b7332b9a5b3b01ddafe86b to your computer and use it in GitHub Desktop.
Linux Mint New Install Things To Do

Newer Nodejs

By default the nodejs version is very old. You can instead use NVM.

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
source .bashrc
nvm install node

Then simply run nvm use node whenever you want to use it. (You can also have multiple versions installed this way)

IOMMU

If iommu related messages don't show up on boot and USB3.0 is working you can skip this.

  • Install grub-customizer: sudo apt install grub-customizer
  • Launch it and under general settings add iommu=soft to kernel parameters. (Parameters are seperated by spaces)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment