background picture of the home page

Hi,Friend

Git使用以及推送代码到Github

Git使用以及推送代码到Github GIT使用 创建Github账户。打开 https://github.com 并注册一个新账户。 安装Git。如果您的系统尚未安装Git,则需要先安装它。可以参考Git官方文档以获取更多详细信息。 配置Git用户名和电子邮件地址。在终端或命令提示符窗口中,运行以

thumbnail of the cover of the post

用户登入工具箱,注册

!/bin/bash 本脚本用于用户登入工具箱,注册 #菜单函数 caidan(){ cat << EOF ===========菜单=========== || 1.登入 || || 2.注册 || || 3.退出 || ========================== EOF #

thumbnail of the cover of the post

MySQL全量备份/增量备份脚本

#!/bin/bash mysql物理备份脚本 每周日进行全量备份,周一到周六进行增量备份,7天为一个周期 备份路径、日志路径 backup_dir="/backup" log_dir="/backup/log" full_backup_dir="/backup/full" inc_backup_d

thumbnail of the cover of the post

if练习

99乘法表 #!/bin/bash for ((i=1;i<10;i++)) do for((m=1;m<=i;m++)) do echo -n " $m * $i = $((i*m)) " done echo"" done 成绩表 read -p

thumbnail of the cover of the post

shell添加用户,计算,vsftp

vim user.sh(添加用户) #!/bin/bash #该脚本为添加用户zhangsan,并给他设置密码 #date:2023-11-14 #author:xubaodong #创建用户 useradd zhangsan #变量 name=zhangsan echo "qianfeng@123

thumbnail of the cover of the post

Centos网卡配置

永久设置网卡 另外也可以在终端上输入nmtui,进入网卡设置界面 1、Centos 7 配置 Centos 7 # vim /etc/sysconfig/network-scripts/ifcfg-ens33 //网卡配置文件的路径 TYPE=Ethernet //网卡类型 BOOTPROT

thumbnail of the cover of the post

docker 创建halo博客

docker博客创建 编辑配置文件 vim /halo/docker-compose.yaml version: "3" services: halo image: halohub/halo:2.11 container_name: halo restart: on-f

thumbnail of the cover of the post