Loading

摘要: 原文地址:https://www.cnblogs.com/agang-php/p/6210900.html Linux中查看网卡流量工具有iptraf、iftop以及nethogs等,iftop可以用来监控网卡的实时流量(可以指定网段)、反向解析IP、显示端口信息等。 yum install ift 阅读全文
posted @ 2021-02-02 13:53 oaifree 阅读(572) 评论(0) 推荐(0)
摘要: 原文地址:https://blog.csdn.net/kdongyi/article/details/84557708 安装nmcli sudo apt-get install nmcli 查看网络设备 sudo nmcli dev 开启wifi sudo nmcli r wifi on 扫描wif 阅读全文
posted @ 2021-01-21 14:06 oaifree 阅读(389) 评论(0) 推荐(0)
摘要: 花生壳 停掉自动启动 : systemctl disable phddns_mini_httpd.service 设置开机自启 : systemctl enable phddns_mini_httpd.service phddns start(启动)| stop(停止)| status(状态)| r 阅读全文
posted @ 2021-01-21 08:58 oaifree 阅读(635) 评论(0) 推荐(0)
摘要: JVM 一、jvm运行流程 二、jvm结构 1.jvm基本结构 类加载器,执行引擎,运行时数据区,本地接口 Class Files → ClassLoader → 运行时数据区 → 执行引擎,本地库接口 → 本地方法库 其中对于方法区,很多人更愿意称为:“永久代(Permanent Generati 阅读全文
posted @ 2021-01-18 16:40 oaifree 阅读(106) 评论(0) 推荐(0)
摘要: 原文地址:https://www.cnblogs.com/damoblog/p/9124937.html 方便自己查看,所以拷了一份到自己这边,方便查找 Java8List转map分组 Java8List转map分组 此处是根据名称作为key 分组 public Map<String, List<S 阅读全文
posted @ 2021-01-16 11:26 oaifree 阅读(6451) 评论(0) 推荐(0)
摘要: win10 各个版本的镜像地址 → https://msdn.sjjzm.com/win10.html 阅读全文
posted @ 2021-01-09 09:13 oaifree 阅读(994) 评论(0) 推荐(0)
摘要: 原文地址:https://blog.csdn.net/muzihuaner/article/details/107853755 防止作者删掉所以复制了一份自己存着~ OneManager是什么 这是一个利用微软onedrive api将onedrive目录映射成一个云盘的程序,类似的程序有很多,比如 阅读全文
posted @ 2020-12-22 16:28 oaifree 阅读(2019) 评论(0) 推荐(0)
摘要: 批量更新 <update id="updateBatch" parameterType="java.util.List"> <foreach collection="list" item="item" index="index" open="" close="" separator=";"> upd 阅读全文
posted @ 2020-12-22 08:35 oaifree 阅读(261) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-12-21 22:17 oaifree 阅读(150) 评论(0) 推荐(0)
摘要: docker ps 查看当前所有容器 docker images 查看所有镜像 docker rmi imagesid 删除镜像 docker rm containerid 删除容器 docker rm -f containerid 强制删除 删除所有images docker rmi `docke 阅读全文
posted @ 2020-12-21 22:12 oaifree 阅读(134) 评论(0) 推荐(0)