From aed86b894db2a95887a05f106526517d8cc41855 Mon Sep 17 00:00:00 2001 From: "Kaz Saita(raspi5)" Date: Sun, 7 Apr 2024 16:00:11 +0900 Subject: [PATCH] sync notes(auto) --- .../20240324102510 MySQL MariaDBのインストール.md | 1 - content/20240407124122 SimpleLogin.md | 6 ++++++ ...5359 nodejs npmを Raspberry piにインストール.md | 14 ++++++++++++++ 3 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 content/20240407124122 SimpleLogin.md create mode 100644 content/20240407155359 nodejs npmを Raspberry piにインストール.md diff --git a/content/20240324102510 MySQL MariaDBのインストール.md b/content/20240324102510 MySQL MariaDBのインストール.md index 45bbff5..456aa83 100644 --- a/content/20240324102510 MySQL MariaDBのインストール.md +++ b/content/20240324102510 MySQL MariaDBのインストール.md @@ -5,7 +5,6 @@ MariaDBはMySQLのforkで、互換性もあり性能も向上しているとの ``` $ sudo apt install mariadb-server -$ sudo mysql_secure_installation ``` ``` diff --git a/content/20240407124122 SimpleLogin.md b/content/20240407124122 SimpleLogin.md new file mode 100644 index 0000000..0012ee4 --- /dev/null +++ b/content/20240407124122 SimpleLogin.md @@ -0,0 +1,6 @@ +# 20240407124122 SimpleLogin +#mail #service #alias +[SimpleLogin | Open source anonymous email service](https://simplelogin.io/) +メールのalias作成サービス。 + +Chromeのプラグイン等もある。 \ No newline at end of file diff --git a/content/20240407155359 nodejs npmを Raspberry piにインストール.md b/content/20240407155359 nodejs npmを Raspberry piにインストール.md new file mode 100644 index 0000000..5ba7fa2 --- /dev/null +++ b/content/20240407155359 nodejs npmを Raspberry piにインストール.md @@ -0,0 +1,14 @@ +# 20240407155359 nodejs npmを Raspberry piにインストール +#nodejs #raspberrypi #npm +aptでインストールするとバージョンが古い。 + +下記に書いてあるとおりの作業をした。 +``` +$ sudo apt install -y nodejs npm +$ sudo npm install n -g +$ sudo n stable +$ sudo apt purge -y nodejs npm +$ sudo apt autoremove -y +``` +## Ref. +- [【2023年4月版】Ubuntu に node.js と npm を入れたい(バージョン管理も) #Node.js - Qiita](https://qiita.com/nouernet/items/d6ad4d5f4f08857644de)