上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页

git

摘要: git gitlab git使用 https://git-scm.com/book/zh/v2 http://www.runoob.com/git/git-tutorial.html 常用命令 gitlab-ctl status gitlab-ctl start gitlab-ctl stop gi 阅读全文
posted @ 2022-07-15 17:48 Colin88 阅读(73) 评论(0) 推荐(0)

linux sort

摘要: sort 用法:sort [选项]... [文件]... 或:sort [选项]... --files0-from=F 串联排序所有指定文件并将结果写到标准输出。 长选项必须使用的参数对于短选项时也是必需使用的。 排序选项: -b, --ignore-leading-blanks 忽略前导的空白区域 阅读全文
posted @ 2022-07-12 09:38 Colin88 阅读(52) 评论(0) 推荐(0)

Linux 查看某一个进程占用内存情况

摘要: Linux下查看某一个进程所占用的内存,首先可以通过ps命令找到进程id,比如 ps -ef | grep kafka 可以看到kafka这个程序的进程id 可以看到是2913,现在可以使用如下命令查看内存: top -p 2913 这样可以动态实时的看到CPU和内存的占用率,然后按q键回到命令行 阅读全文
posted @ 2022-07-12 09:17 Colin88 阅读(9926) 评论(0) 推荐(0)

python-zip()

摘要: 在使用迭代时,可以通过zip()函数对多个序列进行并行迭代 days = ['Monday','Tuesday','Wednesday'] chinese = ['星期一','星期二','星期三',] number = [0,1,2] for a,b,c in zip(days,chinese,nu 阅读全文
posted @ 2022-07-09 09:35 Colin88 阅读(22) 评论(0) 推荐(0)

Navicat15破解使用

摘要: Navicat破解使用 Navicat是一个好用的数据库管理工具 链接:https://pan.baidu.com/s/1RpGQ2n2hE6JM27r7LSZruQ 提取码:uk2n 0、注册机下载(https://files.cnblogs.com/files/ogurayui/Keygen.j 阅读全文
posted @ 2022-07-05 14:50 Colin88 阅读(1275) 评论(0) 推荐(2)

python-其他

摘要: 转: https://hellogitlab.com/backend/python/ 阅读全文
posted @ 2022-07-05 10:00 Colin88 阅读(20) 评论(0) 推荐(0)

cobbler-2.8.5

摘要: 一、关闭防火墙、SELINUX systemctl disable firewalld //禁止防火墙服务启动 systemctl stop firewalld //关闭防火墙服务 vi /etc/sysconfig/selinux //更改为“SELINUX=disabled” # getenfo 阅读全文
posted @ 2022-07-04 18:36 Colin88 阅读(165) 评论(0) 推荐(0)

kickstart文件

摘要: # 安装系统install# 通过PXEurl --url=$tree# 键盘模式keyboard --vckeymap=us --xlayouts='us'#清除主引导记录zerombr# Partition clearing informationclearpart --all --initla 阅读全文
posted @ 2022-07-04 14:04 Colin88 阅读(79) 评论(0) 推荐(0)

python-成员运算符

摘要: 成员运算符 成员运算符 (in 和 not in) 可以用来快速的判断元素是否在指定的可迭代对象里,语法格式 要判断的元素 in 可迭代对象。 in运算符 思考:怎样判断一个字符是否在指定的字符串里? msg = 'hello' char = input('请输入一个字符:') # 使用字符串的 f 阅读全文
posted @ 2022-06-28 23:43 Colin88 阅读(165) 评论(0) 推荐(0)

python-format

摘要: 字符串的format方法 1. 概念: str.format() 方法通过字符串中的大括号{} 来识别替换字段 replacement field,从而完成字符串的格式化。 替换字段 由字段名 field name 和转换字段 conversion field 以及格式说明符 format spec 阅读全文
posted @ 2022-06-28 23:42 Colin88 阅读(211) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页