在 AlmaLinux OS 9 上安装 Node.js 16(使用 AppStream)
首先
使用Application Stream(AppStream)在AlmaLinux OS 9中安装Node.js 16.
支持
如果采用这种方法引入的话,根据《Red Hat企业级Linux应用程序流生命周期 – Red Hat客户门户》的信息,2024年4月被认为是EOL(技术支持终止)。
在此日期之后,可能不会实施对所报告的漏洞和问题的解决措施。
日志
安装
如果提供的版本增加并模块化,可能会类似于使用 yum module install nodejs:16 的指定方法。
# cat /etc/redhat-release
AlmaLinux release 9.0 (Emerald Puma)
# yum install -y nodejs
... 略
确认的各种方式
# which node
/usr/bin/node
# node -v
v16.14.0
# yum info nodejs
Last metadata expiration check: 0:01:14 ago on Wed Sep 7 14:02:40 2022.
Installed Packages
Name : nodejs
Epoch : 1
Version : 16.14.0
Release : 4.el9_0
Architecture : x86_64
Size : 838 k
Source : nodejs-16.14.0-4.el9_0.src.rpm
Repository : @System
From repo : appstream
Summary : JavaScript runtime
URL : http://nodejs.org/
License : MIT and ASL 2.0 and ISC and BSD
Description : Node.js is a platform built on Chrome's JavaScript runtime
: for easily building fast, scalable network applications.
: Node.js uses an event-driven, non-blocking I/O model that
: makes it lightweight and efficient, perfect for data-intensive
: real-time applications that run across distributed devices.