diff --git a/Asahi.md b/Asahi.md index ad86d90..6d6824e 100644 --- a/Asahi.md +++ b/Asahi.md @@ -25,19 +25,53 @@ Server = http://eu.mirror.archlinuxarm.org/$arch/$repo ``` sudo pacman -Syuu ``` -## Installing development software +## Development software ``` sudo pacman -S git unp zip unzip p7zip qemu-desktop virt-manager remmina libreoffice-fresh \ -base-devel gimp inkscape keepassxc lazarus haxe zig godot nodejs-lts-fermium \ -sqlite3 curl wget mlocate +base-devel gimp inkscape keepassxc lazarus haxe zig godot sqlite3 curl wget mlocate ``` base-devel is like build-essential on Debian. +## Node.js + Node.js 14.x version https://wiki.archlinux.org/title/node.js +``` +mkdir repos + +cd repos + +git clone https://github.com/nvm-sh/nvm + +cd nvm + +./install.sh +``` +Close and reopen terminal (like Konsole). +``` +nvm install 14.21.3 + +nvm use 14.21.3 +``` + +## Updating file locations + +For package mlocate: +``` +sudo updatedb +``` +Finding file: +``` +locate filename +``` ## Installing Meteor.js on arm64 -https://github.com/meteor/meteor/pull/12160#issuecomment-1483260406 +Originally from https://github.com/meteor/meteor/pull/12160#issuecomment-1483260406 +``` +git clone https://github.com/meteor/meteor .meteor + +cd meteor +