sync notes(auto)

This commit is contained in:
Kaz Saita(raspi5) 2024-04-07 16:00:11 +09:00
parent 10aa434cda
commit aed86b894d
3 changed files with 20 additions and 1 deletions

View file

@ -5,7 +5,6 @@ MariaDBはMySQLのforkで、互換性もあり性能も向上しているとの
```
$ sudo apt install mariadb-server
$ sudo mysql_secure_installation
```
```

View file

@ -0,0 +1,6 @@
# 20240407124122 SimpleLogin
#mail #service #alias
[SimpleLogin | Open source anonymous email service](https://simplelogin.io/)
メールのalias作成サービス。
Chromeのプラグイン等もある。

View file

@ -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)