GitLab官方搭建教程地址: https://about.gitlab.com/install/#ubuntu 1. 依赖包安装 sudo apt-get update sudo apt-get install -y curl openssh-server ca-certificates ...
分类:
其他好文 时间:
2021-03-05 13:25:21
阅读次数:
0
问题:当自己遇到这个问题的时候,查阅很多资料,发现很多需要安装一大推东西,又是安装,又是重启,最后还是没有搞定。最后还是通过这三行命令搞定了。sudo apt-get autoremove open-vm-toolssudo apt-get install open-vm-toolssudo apt ...
1:使用命令安装openssh-server sudo apt-get install openssh-server openssh-client 2:这是因为没有更新apt-get,更新命令 sudo apt-get update 3:更新完之后执行 sudo apt-get install op ...
分类:
系统相关 时间:
2021-03-01 12:57:39
阅读次数:
0
protoc 编译工具 windows 平台下载对应平台的 protobuf,并配置环境变量 protobuf linux 环境先安装依赖 sudo apt-get install autoconf automake libtool curl make g++ unzip git clone htt ...
分类:
其他好文 时间:
2021-02-27 13:31:02
阅读次数:
0
Debian9 安装iftop工具 apt-get install iftop -y 常用的参数 -h(display this message),显示参数使用信息 默认是监控第一块网卡的流量 iftop -i 指定监控的网卡eth1 iftop -i eth1 -B 以bytes为单位显示流量(默 ...
分类:
其他好文 时间:
2021-02-27 13:20:12
阅读次数:
0
ubuntu 系统默认已安装ufw. 1.安装 sudo apt-get install ufw 2.启用 sudo ufw enable sudo ufw default deny 运行以上两条命令后,开启了防火墙,并在系统启动时自动开启。关闭所有外部对本机的访问,但本机访问外部正常。 3.开启/ ...
分类:
系统相关 时间:
2021-02-23 14:33:33
阅读次数:
0
1,sudo apt update 2,sudo apt install ffmpeg 3,安装成功后查看【版本】【编码器】【解码器】 ffmpeg -v ffmpeg -encoders ffmpeg -decoders 4,安装需要用的各种组件 sudo apt-get install liba ...
分类:
系统相关 时间:
2021-02-23 13:58:57
阅读次数:
0
减少Docker镜像层的数量Dokcerfile中的RUN、COPY和ADD命令才会创建镜像层,因此减少Docker镜像层的数量就是要减少这几个命令的次数,特别是RUN命令的次数。 在安装工具时可以在一句命令中安装多个工具: 正例: apt-get install -y git curl 反例: a ...
分类:
其他好文 时间:
2021-02-22 11:51:26
阅读次数:
0
试了好多种方法这个最牛逼 sudo apt-get install open-vm* https://blog.csdn.net/yp090416/article/details/109330001 ...
分类:
系统相关 时间:
2021-02-18 13:42:03
阅读次数:
0
1.fork函数 作用:创建一个子进程 函数原型:pid_t fork(); 返回值: 两个返回值,一个是父进程的返回值,其值为子进程的进程id;一个是子进程的返回值,为0代表创建成功,-1代表创建失败。 循环创建n个进程: 1 #include <stdio.h> 2 #include <unis ...
分类:
系统相关 时间:
2021-02-17 14:48:51
阅读次数:
0