摘要: 1.官网下载linux版nodejs https://nodejs.org/en/download/ 可以用 wget https://nodejs.org/dist/v12.16.1/node-v12.16.1-linux-x64.tar.xz 下载到指定目录 2.解压并移动到/usr/local 阅读全文
posted @ 2020-03-05 15:55 harmful 阅读(1370) 评论(0) 推荐(0) 编辑
摘要: 1.备份source.list文件 cd /etc/apt #切换到apt源文件 sudo mv sources.list sources.list_bak #备份源文件 2.编辑source.list文件sudo vi /etc/apt/sources.list deb http://mirror 阅读全文
posted @ 2020-03-05 15:28 harmful 阅读(1184) 评论(0) 推荐(0) 编辑
摘要: 1.管理员权限打开powershell 2.配置命令 查看虚拟机基本信息 Get-VM–VMname * 查看虚拟机指定属性 Get-VM–VMname * | Select-Object VMname,AutomaticStartAction 设置虚拟机自动启动 Get-VM–VMname {虚拟 阅读全文
posted @ 2020-03-05 14:31 harmful 阅读(6119) 评论(0) 推荐(0) 编辑
摘要: 1.查看本机网卡信息 ifconfig 或者 ip address 2.修改配置文件/etc/network/interfaces 修改前 auto lo iface lo inet loopback 修改后 #auto lo #face lo inet loopback auto eth0 ifa 阅读全文
posted @ 2020-03-05 14:19 harmful 阅读(2591) 评论(0) 推荐(0) 编辑