環境
Linux Mint 19.2 Tina84_x64
インストールする
$curl -sL https://deb.nodesource.com/setup_10.x | sudo bash -
## Installing the NodeSource Node.js 10.x repo...
## Populating apt-get cache...
+ apt-get update
Hit:1 http://archive.canonical.com/ubuntu bionic InRelease
Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease
Hit:3 http://security.ubuntu.com/ubuntu bionic-security InRelease
Ign:4 http://packages.linuxmint.com tina InRelease
Hit:5 http://archive.ubuntu.com/ubuntu bionic-updates InRelease
Hit:6 http://archive.ubuntu.com/ubuntu bionic-backports InRelease
Hit:7 http://packages.linuxmint.com tina Release
Reading package lists... Done
## Confirming "tina" is supported...
+ curl -sLf -o /dev/null 'https://deb.nodesource.com/node_10.x/dists/tina/Release'
## Your distribution, identified as "tina", is not currently supported, please contact NodeSource at https://github.com/nodesource/distributions/issues if you think this is incorrect or would like your distribution to be considered for support
Nodejsのインストール
$ sudo apt-get install nodejs
$ nodejs --version
v8.10.0
LTSバージョン10xがインストールされていませんか?
ベストアンサー1
ダウンロードしたインストールスクリプトを理解できるように調整する必要があります。ティナバイオニック発売です。
まずスクリプトをダウンロードします。
wget https://deb.nodesource.com/setup_10.x
次に、目的のエディタでファイルを開きます。で始まるセクションが見つかるまで下にスクロールしますcheck_alt
。次の行を探してください。
check_alt "Linux Mint" "tessa" "Ubuntu" "bionic"
すぐ下に次の行を追加します。
check_alt "Linux Mint" "tina" "Ubuntu" "bionic"
保存して実行しますchmod +x setup_10.x
。これで、このスクリプトを正常に実行できます。