wget https://nodejs.org/dist/v8.9.1/node-v8.9.1-linux-x64.tar.xz 创建一个文件夹node mkdir node 解压: tar xvf node-v8.9.1-linux-x64.tar.xz --strip-components=1 ...
分类:
Web程序 时间:
2021-01-13 10:47:17
阅读次数:
0
yum install -y yum-utils device-mapper-persistent-data lvm2 yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo --RH ...
分类:
其他好文 时间:
2021-01-12 11:22:07
阅读次数:
0
1. Bad magic number in super-block 当尝试打开 /dev/sda3 时 找不到有效的文件系统超级块. https://blog.csdn.net/dn98201/article/details/78670278 ___________________________ ...
分类:
系统相关 时间:
2021-01-12 11:18:24
阅读次数:
0
备份原镜像 sudo mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup sudo mv /etc/yum.repos.d/epel.repo /etc/yum.repos.d/epel.repo ...
分类:
其他好文 时间:
2021-01-12 10:29:17
阅读次数:
0
Linux用户组和权限管理 1、linux安全模型 1、用户 Linux中每个用户是通过UID(User Id)来标识的 ? 管理员: root, 0 ? 普通用户: 1-60000自动分配 ? 系统用户:1-499 (centos 6以前),1-999(centos 7以后) ? 对守护进程获取资 ...
分类:
系统相关 时间:
2021-01-11 11:14:53
阅读次数:
0
OpenLooKeng是华为开源的高性能数据虚拟化引擎,github:https://github.com/openlookeng/hetu-core OpenLooKeng 基于 PrestoSql(现改名:Trino)开发的, Presto编译环境不支持windows,windows上运行需要进 ...
一、镜像操作 1)构建镜像 docker build -t REPOSITORY:TAG . 注意最后一个点[.]不能缺少,生成完:runoob/centos为REPOSITORY,6.7为TAG 2)获取镜像 sudo docker pull REPOSITORY[:TAG] 3)为镜像打个标签 ...
分类:
其他好文 时间:
2021-01-11 11:04:35
阅读次数:
0
一、制作JAVA环境镜像 [root@image ]# cat Dockerfile FROM centos:7 MAINTAINER lzfn@qq.com ENV JAVA_HOME=/usr/local/jdk1.8.0_144 ENV JAVA_BIN=/usr/local/jdk1.8.0 ...
分类:
其他好文 时间:
2021-01-08 11:47:54
阅读次数:
0
1、更新dnf 源 1 dnf update 2、安装 Asp.Net Core 运行时 1 dnf install aspnetcore-runtime-3.1 2.1、验证是否安装成功 1 dotnet --info 出现如上图所示就说明安装成功 3、安装Nginx dnf -y install ...
分类:
Web程序 时间:
2021-01-08 10:36:50
阅读次数:
0
centos7 安装git 1、简单直接: yum install git 命令安装 (卸载Git:yum remove git) 存在问题:版本太旧(因此不建议这样) 2、wget git源码地址 (在线下载,推荐!!!) 方法: 2.1先访问:git官网:https://github.com/g ...
分类:
其他好文 时间:
2021-01-07 12:40:50
阅读次数:
0