User Tools

Site Tools


informatica:linux:kernel
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


Previous revision
informatica:linux:kernel [2015/04/13 20:19] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +**Kernel**
 +
 +  * Listar modulos instalados
 +<code>
 +sudo lsmod
 +</code>
 +  * Listar opciones del kernel (compiladas o cargadas como modulo):
 +<code>
 +grep -i 9p /boot/config-$(uname -r)
 +
 +CONFIG_NET_9P=m
 +CONFIG_NET_9P_VIRTIO=m
 +CONFIG_NET_9P_RDMA=m
 +# CONFIG_NET_9P_DEBUG is not set
 +CONFIG_9P_FS=m
 +CONFIG_9P_FSCACHE=y
 +CONFIG_9P_FS_POSIX_ACL=y
 +CONFIG_9P_FS_SECURITY=y
 +</code>
 +  * Determinar el nombre del modulo al que hace referencia la salida anterior (mejor hacerlo a mano):
 +<code>
 +sudo less /lib/modules/`uname -r`/modules.alias
 +</code>
 +
 +
 +
  
informatica/linux/kernel.txt · Last modified: 2015/04/13 20:19 by 127.0.0.1