大约有 11,000 项符合查询结果(耗时:0.0133秒) [XML]

https://www.tsingfun.com/it/os... 

OpenSuSE 安装bpftrace - 操作系统(内核) - 泛网移动版 - 专注C++内核技术

OpenSuSE 安装bpftraceOpenSuSE-bpftrace-install1、可以选择源码安装,依赖顺序是:bpftrace <-- bcc <-- llvm clang不过过程难免曲折,可以继续探究或选择二进制包安装。2、先安装bcc及依赖(参考:INSTALL md):zypper s 1、可以选择源码安装,...
https://www.tsingfun.com/it/os... 

OpenSuSE 安装dtrace - 操作系统(内核) - 泛网移动版 - 专注C++内核技术

OpenSuSE 安装dtraceOpenSuSE-dtrace-install官网:https: software opensuse org搜索 dtrace,选择:找到指定的版本ymp文件,这里以15 1为例:OCICLI https: software opensuse org ymp home:Dead_Mozay:gst openSUSE_Leap_15 1 systemtap-dtrace ymp--End--官网:https://software.opens...
https://www.tsingfun.com/it/os... 

Linux上安装dtrace(劝退篇) - 操作系统(内核) - 泛网移动版 - 专注C++内核技术

Linux上安装dtrace(劝退篇)Linux-dtraceDTrace是Solaris下的产物,Linux上支持的不太好,还是建议不要用了,使用BPF BCC吧。------------为了追踪一下自己写的nginx模块的性能, 加上之前看了agentzh大哥的nginx教程, DTrace是Solaris下的产物,Li...
https://www.tsingfun.com/it/os... 

Linux bcc tools使用总结(持续更新) - 操作系统(内核) - 泛网移动版 - ...

Linux bcc tools使用总结(持续更新)Linux-bcc-toolsbcc及依赖安装(参考:INSTALL md)。1、execsnoop短时进程追踪工具,抓出短时间内谁在搞事情。使用场景:有些进程运行时间太短(可能是不断崩溃重启),因而使用其他工具无法捕获 ...
https://www.tsingfun.com/it/os... 

Linux bpftrace学习笔记(持续更新) - 操作系统(内核) - 泛网移动版 - ...

Linux bpftrace学习笔记(持续更新)Linux-bpftrace-notes图:BPF性能工具及其可见性bpftrace安装请参考:bpftrace-install。1、查看程序在打开哪些文件: bpftrace -e & 39;tracepoint:syscalls:sys_enter_open { printf("%s %s n 图:BPF性能工具及其可见性 ...
https://www.tsingfun.com/it/os... 

Debian/Linux下安装OpenJDK8 - 操作系统(内核) - 泛网 - 专注C/C++及内核技术

Debian/Linux下安装OpenJDK8linux_install_openjdk8因为Debian11的源里不再带OpenJDK8了,需要手工来安装。下载安装包因为手工安装,所以部分依赖包需要自己下载。wget http: snapshot debian org archive debian-security 202202 因为Debian11的源里不再带Open...
https://www.tsingfun.com/it/os_kernel/2673.html 

【解决】Java报错:Implicit super constructor Object() is undefined for...

【解决】Java报错:Implicit super constructor Object() is undefined for default constructor. Must define an explicit constructor1、网上的常规解决步骤:把java的类库加载进去,在工程上右键选择属性 > Java Build Path的Libraries > Add Library选择JRE System Library > ...
https://www.tsingfun.com/it/opensource/2674.html 

【解决】cannot load such file -- rexml/parsers/baseparser - 开源 & Git...

【解决】cannot load such file -- rexml/parsers/baseparser解决方法:bundle add rexml webrick参考资料:https: www crosenthal com chrome 2022 08 07 01 html解决方法:在项目的根目录(必须有Gemfile)下执行以下命令 bundle add rexml webrick 参考资料:https://w...
https://www.tsingfun.com/it/opensource/2675.html 

【解决】Python:ModuleNotFoundError: No module named \'google.protobuf...

【解决】Python:ModuleNotFoundError: No module named 'google.protobuf'1、先尝试重新安装protobuf:pip3 uninstall protobufpip3 uninstall googlepip3 install googlepip3 install protobuf2、没有效果的话,尝试进入dist-packages目录,刷新 1、先尝试重新安装protobuf: ...
https://www.tsingfun.com/it/opensource/2676.html 

【解决】Python:ModuleNotFoundError: No module named \'ruamel\' - 开源...

【解决】Python:ModuleNotFoundError: No module named 'ruamel'解决方法:pip3 install ruamel yaml解决方法: pip3 install ruamel.yaml python