安装 debian && ubuntu
安装过程就不必过多赘述了,网上相关教程已经汗牛充栋了。
不过要注意的是,linux 子系统对于 win10 的版本有限制,一般来说,升级到最新版本是醉吼的。
更换阿里源
1. 查看系统发行版本
debian
debian@root-pc:zx$ lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 9.7 (stretch)
Release: 9.7
Codename: stretch
ubuntu
ubuntu@root-pc:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.04.2 LTS
Release: 18.04
Codename: bionic
2. 备份默认的源
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
3. 找到对应的源替换进去(这里以阿里巴巴镜像源为例)
首先打开页面 https://opsx.alibaba.com/mirror
找到对应的发行版系统,点击操作一列的帮助,会弹出一个面板(这里以 ubuntu 为例):
可以找到跟我用的发行版本一致源配置,将我圈出来的这段配置复制出来,这里即:
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
注意,如果你不是用的 ubuntu 18.04(bionic) 发行版,请不要偷懒直接复制我上面粘贴的示例配置,请自行打开网页找到对应版本的配置。
然后要做的就是将上面一段配置,替换到我们的 /etc/apt/sources.list
文件中即可 。
至于怎么复制进去,我这里还是简单的说明一下吧。
# 1. 用 vim 编辑对应的文件
sudo vim /etc/apt/sources.list
# 2. 执行 dG 命令,清空文件
dG
# 3. 黏贴,这一步视你用的工具不同,而有差别,比如我是直接用 windows 的 commander,所以直接右键就黏贴进去了
# 4. 保存退出
wq
4. 更新软件源列表
sudo apt-get update
安装最新版 nodejs
如果你不是 nodejs 或者前端开发者,那么接下来的内容你也不用看了。
1. 安装 nodejs
如果你是的话,一般情况下,还是用最新稳定版本的 nodejs 比较好些,那么肯定需要装上最新版本的 nodejs,但是如果直接 sudo apt install nodejs
往往安装的是比较老旧的 nodejs,因此可以通过 github 上的一个项目,来安装最新版本的 nodejs。
首先进入 github 仓库: https://github.com/nodesource/distributions
下拉,找到对应的安装命令:
比如,现在我以 ubuntu 为例,我想安装 v12.x 的 nodejs,那么直接在 bash 执行以下指令即可
# Using Ubuntu
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt-get install -y nodejs
2. 清理缓存模块
sudo npm cache clean -f
3. 用 n 模块维护 nodejs 版本
这个 n 模块,是前端界大名鼎鼎的 tj 大神 开发的方便管理 nodeje 版本的 npm 包,可以说,在 Linux 下体验真是贼爽的。
有人说,如果我用 Windows 呢?也可以装这个 n 模块吗?据我所知,貌似是不能的,但是 Windows 版本的 nodejs 官网提供了安装版本和免安装版本,根本不需要过来凑这个热闹啊。
sudo npm install -g n
# 安装最近的一个稳定版
sudo n stable
当然这个模块,还有很多命令,感兴趣的同学可以研究下文档。
后记
这里还是说个题外话吧,上面这个安装方法并不是唯一的。
但是相对而言,是比较方便的一个方式,便于后续的切换nodejs 版本。
至少是不需要自己去 nodejs 官网下载二进制包,解压后创建链接,设置环境变量啥的,更不需要自己下源码下来编译安装。
当然,对于大神而言,我还是推荐自己编译安装的,毕竟这样用起来比较放心。
但是,我想,我写的这篇拙文,也很难有机会被大神看到吧。