运维
文章平均质量分 86
caiqimin__
巫山云雨
展开
-
学学写Shell
基本语法1. case条件选择语句case XXX in OPTION1) operation1 operation2 ;; OPTION2) operation1 operation2 ... ;; *) #相当于switch...case...中的default operations... ;;esac一些常见用法1. 把执行结果赋值给变量# 语法:VAR_NAME=$(执行语句)resp=$(curl "www.baidu.com")echo原创 2022-04-23 09:24:52 · 449 阅读 · 0 评论 -
Git---记录一次自建git服务器和客户端的过程
系统Windows 10 64BitCentOS 7(服务器)步骤服务器部分新建用户useradd gitgroupadd git(如果已经存在,就不用理会了)cd /home/gitmkdir .sshtouch authorized_keysyum install -y git安装gityum install -y git建立仓库找个认为合适的位置mkdir /gitrepocd /gitrepogit init --bare test.gitcd /ch原创 2020-09-30 15:33:00 · 191 阅读 · 0 评论 -
Mac Catalina安装brew
问题使用brew的时候提示brew not found安装brew使用离线方式安装1. 建立install脚本cd ~vim install_brew.sh2. 输入如下内容#!/bin/bashset -u# First check if the OS is Linux.if [[ "$(uname)" = "Linux" ]]; then HOMEBREW_ON_LINUX=1fi# On macOS, this script installs to /usr/loc原创 2020-08-22 19:28:55 · 650 阅读 · 0 评论 -
Linux---centos 7安装vmtools,解决宿主机无法共享文件夹问题
环境安装镜像ISO版本:CentOS-7-x86_64-Minimal-1503-01.iso虚拟机OS: CentOS-7宿主机OS: Windows 7虚拟机工具:VMware® Workstation 12 Pro背景之前安装CentOS 7 Minimal版本的安装完虚拟机后,一直无法和宿主机建立共享文件夹,虽然在虚拟机中workstation中设置了共享文件夹,但是在linu...原创 2019-05-30 21:12:14 · 4317 阅读 · 0 评论