Boris Mann

Open Source. Community. Decentralized Web. Building dev tools at Fission. Cooks & eats.

Home

Multipass

  • Last Edit:

UbuntuUbuntu
Add a user to sudo group
usermod -aG sudo <username>
Count files recursively in a directory
find <directory> -type f | wc -l
Also suppress permission denied errors:
find <directory> -type f 2> /dev/null | wc -l
Reference Articles
Installing node / yarn on Ubuntu 18
https://linuxize.com/post/how-to-install-yarn-on-ubuntu-18-04/

For nodejs, sudo apt-get install nodejs gets you node8 (which is old)
So, need curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
whi...
VMs on your desktop

website: https://multipass.run/

Canonical has developed multipass to easily run one or more Ubuntu Linux VMs on your Mac, Windows, or Linux desktop. Sort of like “local” cloud instances.