码迷,mamicode.com
首页 >  
搜索关键字:kernel    ( 5514个结果
linux 内核学习
linux内核获取 官网: https://www.kernel.org/ Linux操作系统的核心是模块化,可以使用lsmod命令查看内核模块,下面展示已载入系统的模块: [root@172.16.0.55: vendor/composer → test]$ lsmod Module Size U ...
分类:系统相关   时间:2021-01-29 11:46:00    阅读次数:0
gvisor Kernel setup
Kernel setup There are two kernel structs, kernel.Kernel and ring0.Kernel. kernel.Kernel contains most of kernel data structures while ring0.kernel on ...
分类:其他好文   时间:2021-01-22 12:24:28    阅读次数:0
Android触摸事件分发
整体分发流程 Android Input Framework 这篇详细讲解了触摸事件从硬件分发到Activity之前的过程。 graph TD; a(Input Hardware)-->b(Kernel/Driver); b-->c(EventHub); c-->d(InputReader); d- ...
分类:移动开发   时间:2021-01-22 12:02:30    阅读次数:0
用户空间和内核空间
用户空间和内核空间 ? 学习Linux时,经常可以看到两个词:User space(用户空间)可 Kernel space(内容空间) 简单的锁,Kernel space是Linux内核的运行空间,User space 是用户程序的运行空间。为了安全,它们是隔离的。即使用户的程序崩溃了,内核也不受影 ...
分类:其他好文   时间:2021-01-22 11:51:06    阅读次数:0
浅析Linux启动流程
本文主要是介绍Linux启动过程中做的事情,包括系统自检、BIOS开机自检、内核加载过程、环境初始化过程等。 ...
分类:系统相关   时间:2021-01-22 11:50:33    阅读次数:0
Compute Shader 功能测试
Compute Shader 可以在通常的渲染管线之外运行,执行一些大量的通用计算(GPGPU algorithms),因此可以联想到把一些大量相互之间没有关联的计算转移到GPU中进行,以减轻CPU的工作量。 Compute Shader 实例 #pragma kernel FillWithRed ...
分类:其他好文   时间:2021-01-22 11:44:28    阅读次数:0
KVM Internal: How a VM is Created?
KVM is an acronym of “Kernel based Virtual Machine”, and is a virtualization infrastructure for the Linux kernel that turns it into a hypervisor.It is ...
分类:其他好文   时间:2021-01-20 12:16:47    阅读次数:0
Ubuntu下TFTP、NFS和SSH服务搭建
tftp和nfs用于在开发板上通过网络系统来访问ubuntu系统下的文件。ssh服务用于支持在Windows下使用终端软件SecureCRT,MobaXterm登陆Ubuntu。 1 搭建NFS服务 sudo apt-get install nfs-kernel-server rpcbind #安装 ...
分类:系统相关   时间:2021-01-01 12:59:58    阅读次数:0
ubuntu安装nfs
1、 sudo apt-get install nfs-kernel-server # 安装 NFS服务器端 sudo apt-get install nfs-common # 安装 NFS客户端 2、添加NFS目录 sudo vim /etc/exports 若需要把 “/nfsroot” 目录设 ...
分类:系统相关   时间:2020-12-25 12:51:18    阅读次数:0
【原创】Linux PCI驱动框架分析(一)
背景 Read the fucking source code! --By 鲁迅 A picture is worth a thousand words. --By 高尔基 说明: Kernel版本:4.14 ARM64处理器 使用工具:Source Insight 3.5, Visio 1. 概述 ...
分类:系统相关   时间:2020-12-25 12:25:50    阅读次数:0
5514条   上一页 1 ... 4 5 6 7 8 ... 552 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!