thumbnail
在 Kubernetes 中配置 Container Capabilities
from--https://www.qikqiak.com/post/capabilities-on-k8s/   发表于 November 18, 2019 https://unsplash.com/photos/6T0rb_X_3Bs 标签: kubernetes   Capabilities   docker Linux Capabilities 什么是 Capabilities 如何使用 Capabilities Docker Container Capabilities Kubernetes 配置 Capabilities 参考文档 我们在使用 Kubernetes 过程中,偶尔会遇到如下所示的一段配置: securityContext: capabilities: drop: - ALL add: - NET_BIND…
thumbnail
Android super.img 镜像解包
from--https://www.jianshu.com/p/aa567960156c 简介 在 Android 10 及更高版本上支持了"动态分区",所以 ROM 包中看不到了传统的 system.img 等镜像。支持的动态分区包括: System Vendor Product System Ext ODM 所以在 super.img 都可能包括以上分区的镜像文件。 具体信息可以查看官方文档 动态分区 具体解包步骤 super.img 的解包必须两个工具 simg2img 和 lpunpack。其中 simg2img 可以在线安装,执行命令后可以按照提示自行安装即可。lpunpack 需要自己下载源码进行编译。lpunpack 生成后是通用的,所以下载别人编译好的 lpunpack 也是可以的,但是需要添加依赖的相关 so 库。注意工具…
在Cygwin64上编译cgo lib:“ ld:找不到-lmingw32”
from--https://www.codingdict.com/questions/64206   我正在尝试在Windows上使用cgo库 github.com/mattn/go-sqlite3 我使用Cygwin64,并安装了所有“开发”软件包,因此可以使用gcc。 但是运行会go get github.com/mattn/go-sqlite3导致: /usr/lib/gcc/x86_64-pc-cygwin/5.3.0/../../../../x86_64-pc-cygwin/bin/ld: cannot find -lmingwex /usr/lib/gcc/x86_64-pc-cygwin/5.3.0/../../../../x86_64-pc-cygwin/bin/ld: cannot find -lmingw32 …
在Windows 上 Build LuaJit32 和 LuaJit64
from--https://blog.csdn.net/u013700908/article/details/86366443 1、Build环境 Windows 10 Visual Studio 2017 2、Build需求 1、首先我们需要Luajit的源代码 [前往下载](http://luajit.org/download.html) 2、Window只需要下载.Zip后缀的压缩包即可,红框表示稳定版,绿框为开发测试版自行取舍,笔者选的beta3的 1 2 3、Build工具 如上图 x64 Native Tools Command Prompt for VS 2017 用于构建 64位的Luajit.exe x86 Native Tools Command Prompt for VS 2017 用于构建 32位的Luajit.ex…
thumbnail
透明代理实现APP抓包的方法
from--http://www.itawp.com/185.html   01-07 Linux 4.59k 平时电脑浏览器抓包主要使用Fiddler设置代理进行抓包,使用非常方便。但是在app抓包中这种方法却时常不好使。使用Wireshark这类工具可以看到APP的流量,说明APP使用的主要应用协议依然是HTTP(https),但是在Fiddler中却抓不到任何流量,下面来说下如何处理这种情况。 问题分析: 为整明白这类代理抓包软件为什么在APP抓包过程中不好使了,就需要简单了解下代理抓包的原理。这里只是简单的白话描述,专业解释请自行查阅相关知识。 首先,Fiddler 或 Charles 这类使用的代理的抓包软件与Wireshark是完全不同的Wireshark 使用的网卡数据复制,只要是经过指定网卡都会被抓取。代理类的抓包…
thumbnail
Advanced DHCP Options: Pushing static routes to clients
from--https://ercpe.de/blog/advanced-dhcp-options-pushing-static-routes-to-clients   24.07.2011, Johann Schmitz The DHCP protocol contains several more or less options to configure the clients (e.g. PAC-Files, NTP-Servers, etc.). One of these cool options is the ability to push static routes to clients. This can be done in two different ways: Single route (DHCP Option…
thumbnail
capture a pages xmlhttp requests with a userscript
from--https://stackoverflow.com/questions/8251955/capture-a-pages-xmlhttp-requests-with-a-userscript Ask Question Asked 11 years, 9 months ago Modified 11 years, 9 months ago Viewed 8k times 8 I have a user script (for chrome and FF) that adds significant functionality to a page, but has recently been broken because the developers added some AJAX to the page. I would like …