上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: ·读 1 2 3 4 file = open("sample.txt") for line in file: pass # do something file.close() 去除换行符 1 2 3 for line in file.readlines(): line=line.strip('\n' 阅读全文
posted @ 2019-11-23 17:37 流年的夏天 阅读(4845) 评论(0) 推荐(1)
摘要: 激活码一: 激活码二: 阅读全文
posted @ 2019-10-19 11:43 流年的夏天 阅读(11479) 评论(0) 推荐(2)
摘要: 【问题描述】 项目执行npm install的时候特别慢,到最后直接返回错误: error exited with error code: 128 verbose exit [ 1, true ] error exited with error code: 128 verbose exit [ 1, 阅读全文
posted @ 2019-10-15 15:20 流年的夏天 阅读(9241) 评论(0) 推荐(0)
摘要: 【问题描述】 执行完npm install后,对前台页面进行gulp操作时,报如下错误: const { Math, Object } = primordials; 【错误日志】 ***@**** MINGW64 /d/workspace/***/***/***/src/main/webapp/vi 阅读全文
posted @ 2019-10-15 14:27 流年的夏天 阅读(11081) 评论(0) 推荐(0)
摘要: l本文介绍linux下创建指定大小文件的几种方法。 【truncate】 truncate -s 25M test.file truncate -s 25M test.file 【fallocate】 fallocate -l 25000000 test.file fallocate -l 2500 阅读全文
posted @ 2019-09-25 17:47 流年的夏天 阅读(13337) 评论(0) 推荐(1)
摘要: 【watch】 watch指令可以间歇性的执行程序,将输出结果以全屏的方式显示,默认是2s执行一次。 watch指令下发后,将会一直被执行,直到被中断。 【语法】 watch \ [-d h v t] [-n <seconds>] [--differences[=cumulative]] [--he 阅读全文
posted @ 2019-09-25 16:17 流年的夏天 阅读(907) 评论(0) 推荐(0)
摘要: 【修改登陆端口】 修改/etc/ssh/sshd.config里面的Port字段 【修改ssh主动登陆默认端口】 修改/etc/ssh/ssh_config里面的Port字段 【修改ssh监听IP】 修改/etc/ssh/ssh_config里面的ListenAddress字段 ListenAddr 阅读全文
posted @ 2019-09-05 15:24 流年的夏天 阅读(296) 评论(0) 推荐(0)
摘要: 【问题描述】 创建boot_from_volume的虚机时,磁盘后端为NFS,创建失败。 【错误日志】 nova-compute模块 Could not open '/var/lib/nova/mnt/b4a8885bf81bd517182c73c35df4496d/volume-598ddf2f- 阅读全文
posted @ 2019-08-27 11:24 流年的夏天 阅读(1466) 评论(0) 推荐(0)
摘要: 【问题描述】 RPCVersionCapError: Requested message version, 4.17 is incompatible. It needs to be equal in major version and less than or equal in minor vers 阅读全文
posted @ 2019-08-19 15:50 流年的夏天 阅读(507) 评论(0) 推荐(0)
摘要: 【通过官方安装包安装】 在 http://www.jetbrains.com/ 官网下载对应版本。 ultimate 旗舰版 community 社区版 ultimate 旗舰版 community 社区版 然后解压到本地对应目录,打开idea目录下的bin目录,执行./idea.sh命令即可打开。 阅读全文
posted @ 2019-08-19 13:53 流年的夏天 阅读(5889) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页