最新 最热

petalinux定制Linux流程,petalinux操作步骤

1)sudo dpkg-reconfigure dash在界面中将shell改成bash

2022-10-28
1

超牛逼!这款轻量级 Linux 系统自动安全审计工具真强大

Lynis 是Unix/Linux等操作系统的一款安全审计工具,它可以发现基于Linux系统中的恶意软件和安全漏洞。Lynis是免费开源的服务器审计工具,一旦审计完成,我们可以审查结果、警告和建议,然后我们可以根据它实现我们的安全策略...

2022-10-27
1

[mit6.s081] 笔记 Lab2: System calls | 系统调用

In this lab you will add some new system calls to xv6, which will help you understand how they work and will expose you to some of the internals of the xv6 kern...

2022-10-27
1

[mit6.s081] 笔记 Lab3: Page tables | 页表

In this lab you will explore page tables and modify them to simplify the functions that copy data from user space to kernel space.

2022-10-27
1

[mit6.s081] 笔记 Lab4: Traps | 中断陷阱

This lab explores how system calls are implemented using traps. You will first do a warm-up exercises with stacks and then you will implement an example of user...

2022-10-27
1

[mit6.s081] 笔记 Lab5: Lazy Page Allocation | 内存页懒分配

实现一个内存页懒分配机制,在调用 sbrk() 的时候,不立即分配内存,而是只作记录。在访问到这一部分内存的时候才进行实际的物理内存分配。

2022-10-27
1

Linux高并发内核参数优化

如非必须,关掉或卸载iptables防火墙,并阻止kernel加载iptables模块。这些模块会影响并发性能。

2022-10-27
1

Kubernetes低版本中内存泄漏问题

Cgorup文档: https://www.kernel.org/doc/Documentation/cgroup-v1/memory.txt

2022-10-27
1

/proc/sysrq-trigger 详解

/proc/sysrq-trigger 这个节点是最近调试稳定性的时候接触的,完整的内容可以参考内核目录下 /kernel-4.9/Documentation/sysrq.txt,这里只写出常用部分。

2022-10-25
1

Linux 系统调用

在现代操作系统中,内核提供了用户进程与内核进行交互的一组接口。这些接口让应用程序受限地访问硬件设备,提供了创建新进程并与已有进程进行通信的机制,也提供了申请操作系统其他资源的能力。...

2022-10-25
1