上一页 1 2 3 4 5 6 7 8 9 10 ··· 17 下一页
摘要: # 采用默认端口(8000)建立HTTP服务 $ python -m http.server # 采用自定端口(8765)建立HTTP服务 $ python -m http.server 8765 运行效果如下: 默认会把python运行的当前目录作为 http 服务器的根目录;通过此方式可以共享一 阅读全文
posted @ 2022-01-05 15:19 远洪 阅读(331) 评论(0) 推荐(0) 编辑
摘要: 接着上一篇内容继续:https://www.cnblogs.com/liyuanhong/p/15617141.html 官方文档:https://docs.python.org/zh-cn/3.7/library/asyncio-task.html # coding: utf-8 import a 阅读全文
posted @ 2021-12-12 22:07 远洪 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 这是由于使用root文件转移文件后,文件的所有者和所在组变为了root。而apache 或nginx 只有对应进程用户的权限。 如: apache对应进程的用户为:daemon 解决方法:将目录所有者和所属组递归的设置为:daemon即可 root@ubuntu1:/opt/lampp/htdocs 阅读全文
posted @ 2021-12-08 20:28 远洪 阅读(423) 评论(0) 推荐(0) 编辑
摘要: 使用vmbox安装了ubuntu server的虚拟机,分配了50G的磁盘空间,但是使用df命令查看,发现总的磁盘空间不足50G root@ubuntu1:/home/lyh# df -h Filesystem Size Used Avail Use% Mounted on udev 1.9G 0 阅读全文
posted @ 2021-12-08 10:16 远洪 阅读(1544) 评论(0) 推荐(1) 编辑
摘要: 1.看/usr/share/applications下是否有xxx.desktop 2.可以到~/.local/share/applications下看是否有xxx.desktop 阅读全文
posted @ 2021-12-06 22:33 远洪 阅读(644) 评论(0) 推荐(0) 编辑
摘要: 接着上一篇文章继续:https://www.cnblogs.com/liyuanhong/p/15600908.html 可参见官方文档:https://docs.python.org/zh-cn/3.7/library/asyncio-task.html await关键字 await后面可作用于以 阅读全文
posted @ 2021-11-28 23:06 远洪 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 可参见python官方文档:https://docs.python.org/zh-cn/3.7/library/asyncio-eventloop.html 一、事件循环 事件循环:是python异步编程中重要的一个环节;可以理解未就是一个死循环,这个死循环会去检测并执行某些代码。 例如: # 伪代 阅读全文
posted @ 2021-11-24 23:45 远洪 阅读(1208) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/liyuanhong/articles/15511068.html 一、vim的几种模式 正常模式:可以使用快捷键命令,或按:输入命令行。 插入模式:可以输入文本,在正常模式下,按i、a、o等都可以进入插入模式。 可视模式:正常模式下按v可以进入 阅读全文
posted @ 2021-11-04 23:07 远洪 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 一、进入网址:https://about.gitlab.com/install/#ubuntu 二、向下翻,找到: 三、点击进入,找到: 四、点击进入:https://about.gitlab.com/install/?version=ce#ubuntu 即可找到gitlab社区版安装教程 阅读全文
posted @ 2021-09-25 17:29 远洪 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 参考地址:https://www.cnblogs.com/grandlulu/p/9525417.html 一、mitemproxy是什么 顾名思义,mitmproxy 就是用于 MITM 的 proxy,MITM 即中间人攻击(Man-in-the-middle attack)。 二、mitemp 阅读全文
posted @ 2021-07-17 17:49 远洪 阅读(209) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 17 下一页