13 Haziran 2019 Perşembe

lsmod komutu

Giriş
lshw, lsusb, lsblklspcilscpu gibi komutlarla kardeştir. Açıklaması şöyle.
To “terminate” a device driver, you’d have to stop all the processes using it, then remove its kernel modules (assuming it’s built as modules), and optionally any other modules it uses and which are no longer necessary. You can list the modules on your system using lsmod, and unload them using rmmod or modprobe -r, both of which will only work if lsmod indicates they have no users.
Linux'un yüklediği modülleri gösterir.

Örnek
Benim sisteminde şu komut ile 79 modül yüklü olduğunu görüyorum.
$ lsmod | wc
Örnek
Şöyle yaparız.
$ lsmod | grep uvcvideo
uvcvideo               90112  0
En sağdaki çıktı webcam'i kaç uygulamanın kullandığını gösterir. 

Hiç yorum yok:

Yorum Gönder