摘要: Debian or Ubuntu sudo apt-get update sudo apt-get install git Fedora sudo dnf install git CentOS sudo yum install git Arch Linux sudo pacman -Sy git G 阅读全文
posted @ 2024-08-13 16:44 二月雪 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 克隆项目指定分支: # <branchname> 分支名,<remote-repo-url> 远程仓库url git clone --branch <branchname> <remote-repo-url> 或 git clone -b <branchname> <remote-repo-url> 阅读全文
posted @ 2024-08-13 16:41 二月雪 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 前言: 本文先讲述配置yum, 再讲述安装yum,因为一般系统会已经安装有yum了的,除非你的系统yum环境已经无效了的话,可以重新安装;可以直接输入指令yum-回车确认(如下述 安装-第6点)。 一、配置yum 1、查看看是否存在yum [root@localhost ~]# rpm -qa|gr 阅读全文
posted @ 2024-08-13 16:20 二月雪 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 1、语法 kill [options] <PID> [options] -l:列出所有可用的信号。 -< signal>:发送特定的信号给目标进程,如 -9 表示发送 KILL 信号,即强制终止进程。 是要终止进程的进程 ID。 2、列出所有可用信号 [root@localhost ~]# kill 阅读全文
posted @ 2024-08-13 14:42 二月雪 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 1、查看ip地址 [root@localhost network-scripts]# ip addr 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/lo 阅读全文
posted @ 2024-08-13 13:52 二月雪 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 前提:完成VMware的安装 (尚未配图,后续补上) 1、镜像源下载地址: CentOS 官方下载地址:https://www.centos.org/download/ 国内镜像源: 清华大学: https://mirrors.tuna.tsinghua.edu.cn/centos/ 阿里云: ht 阅读全文
posted @ 2024-08-13 11:01 二月雪 阅读(8) 评论(0) 推荐(0) 编辑