Yum安装nodejs + npm之CetnOS 6.5

安装步骤

CentOS 6.5

安装epel软件仓库

wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm    wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
rpm -ivh epel-release-6-8.noarch.rpm
rpm -ivh remi-release-6.rpm

完成后检查是否安装成功

ls -1 /etc/yum.repos.d/epel* /etc/yum.repos.d/remi.repo

成功则返回如下列表:

/etc/yum.repos.d/epel.repo    
/etc/yum.repos.d/epel-testing.repo
/etc/yum.repos.d/remi.repo

开启 remi 软件仓库

vi /etc/yum.repos.d/remi.repo

编辑[remi]下的enabled选项从0设为1

 [remi]    
 ...
 enabled=1
 ...

OK,现在可以使用了。

如果运行yum 时,出现如下报错:

Error: Cannot retrieve metalink for repository: epel. Please verify its path and try again

解决办法:

vi /etc/yum.repos.d/epel.repo

编辑[epel]下的baseurl前的#号去掉,mirrorlist前添加#号。正确配置如下:

[epel]    
name=Extra Packages for Enterprise Linux 6 – $basearch
baseurl=http://download.fedoraproject.org/pub/epel/6/$basearch
#mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-6&arch=$basearch
...

再运行

yum makecache

再次检查epel是否已经安装

yum repolist

返回软件仓库列表如下:

repo id     repo name                                                     status
10gen       10gen Repository                                                 274
base        CentOS-6 - Base                                                6,575
epel        Extra Packages for Enterprise Linux 6 - x86_64                11,836
extras      CentOS-6 - Extras                                                 48
remi        Remi‘s RPM repository for Enterprise Linux 6 - x86_64          3,097
remi-safe   Safe Remi‘s RPM repository for Enterprise Linux 6 - x86_64       534
rpmforge    RHEL 6 - RPMforge.net - dag                                    4,718
updates     CentOS-6 - Updates                                               958
repolist: 28,040

如果返回列表中包含 epel ,则说明你已成功安装。

最后,进行nodejs 和 npm 的安装:

yum install nodejs npm --enablerepo=epel

至此,所有安装完成。

时间: 2024-12-15 12:28:47

Yum安装nodejs + npm之CetnOS 6.5的相关文章

CentOS 下使用yum安装nodejs

在xenserver虚拟机器上安装nodejs 尝试失败方法, 1.比如解压编译好的文件,使用ln设置全局变量,因为解压出来没有bin目录无法使用 ln -s /home/kun/mysofltware/node-v0.10.28-linux-x64/bin/node /usr/local/bin/node ln -s /home/kun/mysofltware/node-v0.10.28-linux-x64/bin/npm /usr/local/bin/npm 这里/home/kun/myso

centos上yum安装nodeJS

更新node.js各版本yum源 Node.js v8.x安装命令 curl --silent --location https://rpm.nodesource.com/setup_8.x | bash - Node.js v7.x安装命令 curl --silent --location https://rpm.nodesource.com/setup_7.x | bash - Node.js v6.x安装命令 curl --silent --location https://rpm.nod

ubatu 安装nodejs npm liveserver

更新ubuntu软件源 sudo apt-get update sudo apt-get install -y python-software-properties software-properties-common sudo add-apt-repository ppa:chris-lea/node.js sudo apt-get update 安装nodejs sudo apt-get install nodejs sudo apt install nodejs-legacy sudo a

CentOS7.6安装Nodejs(Npm)

官网下载地址:https://nodejs.org/en/download/ 第一步:软件下载安装 进行安装目录:cd /opt/software (如果目录不存在,请先创建目录) 下载二进制包:wget https://nodejs.org/dist/v10.15.1/node-v10.15.1-linux-x64.tar.xz (下载地址去官网查询最新的,wget命令如果不存在,请先安装wget:yum install -y wget) 解压:tar xvJf node-v10.15.1-l

在 Ubuntu 上安装 Nodejs npm

安装环境 Ubuntu 12.04.1 LTS Nodejs 0.10.33 安装curl: sudo apt-get install curl setup: curl -sL https://deb.nodesource.com/setup | sudo bash - install: sudo apt-get install -y nodejs 查看是否安装成功: node -v 安装npm: curl http://npmjs.org/install.sh | sudo sh 查看是否安装

阿里云centos 安装 nodejs npm express

yum check-update vi /etc/vsftpd/vsftpd.conf anonymous_enable=NO service vsftpd startuseradd -s /sbin/nologin -d /var/www/ aatii(为默认ftp路径)设置密码chown -R aatii /usr/local/lib yum install gcc gcc-c++ 编译wget http://...tar xvf node-vXXXX.tar.gzcd node-v*./c

Centos7下yum安装nodejs

参考文档https://github.com/nodesource/distributions curl -sL https://rpm.nodesource.com/setup_12.x | bash - yum install -y nodejs   原文地址:https://www.cnblogs.com/houkaihua/p/11779118.html

entos上安装nodejs

Enterprise Linux (RHEL, CentOS, Fedora, etc.) Node.js and npm are available from the Extra Packages for Enterprise Linux (EPEL) repository. To check if you have EPEL registered, run:  检查是否安装了epel yum repolist If you don't see EPEL, install it via yum

centos6.5 64位下安装私有npm

搭建自己的私有npm库 1.安装Couchdb [[email protected]_private ~]# yum install wget [[email protected]_private ~]# wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm [[email protected]_private ~]# rpm -ivh --test epel-release-6-