Home
AI
Course
李宏毅 ML/DL
Linear Algebra
Python
Django
基础
C++
知识点
STL
基础
Linux
性能分析 tools
Windows
Interview
工作经历
Q&A
LeetCode
高频考题
面试经典150题
Archives
About
疯狂的TalentQ
累计撰写
104
篇文章
累计创建
0
个标签
累计收到
1
条评论
栏目
Home
AI
Course
李宏毅 ML/DL
Linear Algebra
Python
Django
基础
C++
知识点
STL
基础
Linux
性能分析 tools
Windows
Interview
工作经历
Q&A
LeetCode
高频考题
面试经典150题
Archives
About
目 录
CONTENT
以下是
Linux
相关的文章
2025-09-02
系统服务管理器 —— systemd
1 systemd 概述 systemd(官网:systemd.io) 是现代 Linux 系统的初始化系统和服务管理器,被广泛用于众多主流发行版,如 Ubuntu、CentOS 等。它旨在代替传统的 SysV init 和 Upstart,提供更高效的系统启动速度、更强的服务管理能力以及更丰富的功
2025-09-02
5
0
0
Linux
性能分析 tools
2025-08-29
性能分析工具 perf
1 perf 简介 perf是 Linux 内核自带的性能分析工具,基于内核的 Performance Monitoring Unit(PMU)实现。它能够收集CPU、缓存、分支预测等硬件事件,以及内核和用户空间的各种软件事件。perf 支持采样(Sampling)、统计(Counting)、调用栈
2025-08-29
6
0
0
Linux
性能分析 tools
2025-08-28
内存分析工具 Valgrind(massif)
1 介绍 Massif是一个堆分析器,能够测量程序使用了多少堆内存。 Massif将程序堆的快照保存起来(生成massif.out文件),然后使用Massif-Visualizer进行可视化分析。 2 安装 sudo apt install massif-visualizer 3 Valgrind
2025-08-28
3
0
0
Linux
性能分析 tools
2025-08-28
内存分析工具 Valgrind(memcheck)
1 Valgrind 简介 Valgrind 是一个用于内存调试、内存泄露检测和性能分析的工具,主要用于Linux平台,可以帮助开发者检测 C/C++程序中的各种内存错误: 内存泄露(Memory Leak) 访问未分配的内存(Invalid Memory Access) 访问已经释放的内存(Use
2025-08-28
7
0
0
Linux
性能分析 tools
2025-08-25
Format C++ code in Google style
1 安装 clang-format 工具 pip install clang-format 2 修改 ~/.bashrc 在 ~/.bashrc 中添加以下内容。 # format C++ code in Google style format() { if [ $# -ne 1 ]; th
2025-08-25
5
0
0
Linux
2025-07-08
Ubuntu 安装中文输入法
Reference Ubuntu24.04安装中文输入法
2025-07-08
1
0
0
Linux
2025-07-02
clash for linux
1 下载clash sudo apt update mkdir clash && cd clash wget https://github.com/doreamon-design/clash/releases/download/v2.0.24/clash_2.0.24_linux_amd64.t
2025-07-02
27
0
0
Linux
2025-06-23
Protocol Buffers
引言 在当今的分布式系统和微服务架构中,数据序列化是一个至关重要的技术环节。无论是服务间通信、数据存储还是网络传输,我们都需要将复杂的数据结构转换为可传输的格式。Protocol Buffers(简称Protobuf)作为Google开发的高性能序列化框架,已经成为业界的标准选择之一。 What's
2025-06-23
35
0
0
Linux
2025-06-20
Git
git 常用指令
2025-06-20
24
0
0
Linux
1
2