摘要: 安装 安装linux服务器,以centos7 为例 开启虚拟化 如果裸机在bios里面开启 如果是虚拟机,在虚拟机里面开启,参考下图 如果是虚拟机的话,需要开启嵌套虚拟化,参考链接https://blog.csdn.net/qq_44839276/article/details/121496045 阅读全文
posted @ 2023-05-12 16:43 lifei888 阅读(73) 评论(0) 推荐(0) 编辑
摘要: curl cip.cc curl ipinfo.io 阅读全文
posted @ 2023-03-06 05:34 lifei888 阅读(115) 评论(0) 推荐(0) 编辑
摘要: https://www.oracle.com/java/technologies/downloads/#java8 https://www.microsoft.com/en-us/download/details.aspx?id=48145 阅读全文
posted @ 2022-03-23 14:22 lifei888 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 描述 Python rsplit() 方法通过指定分隔符对字符串进行分割并返回一个列表,默认分隔符为所有空字符,包括空格、换行(\n)、制表符(\t)等。类似于 split() 方法,只不过是从字符串最后面开始分割。 语法 S.rsplit([sep=None][,count=S.count(sep 阅读全文
posted @ 2022-03-09 11:18 lifei888 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 读文件 file=open('aa.txt') for line in file: line=line.strip() print(line) 写文件 with open('test_w.txt', mode='w', encoding='utf8') as f: lines = [ 'this i 阅读全文
posted @ 2022-02-17 23:29 lifei888 阅读(19) 评论(0) 推荐(0) 编辑
摘要: windows 快捷键 shift+delete 永久删除 explorer 重新打开图形化窗口 windows+R 放大 在当前目录打开命令行窗口的快捷方式 在任意的文件夹下面,按住shift键 鼠标右击点击在此处打开命令行窗口 在资源管理器的地址栏前面输入 cmd 空格 后回车 常用的dos命令 阅读全文
posted @ 2022-01-15 13:27 lifei888 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 阿里云yum镜像 微软系统镜像 linux镜像 http://vault.centos.org/ https://mirrors.aliyun.com/ http://wiki.centos.org/Download 阅读全文
posted @ 2022-01-14 14:08 lifei888 阅读(315) 评论(0) 推荐(0) 编辑