|
~]$ [command]#mokutil --sb-state# SecureBoot enabled
|
|
|
~]$ lsmod Module Size Used by tcp_lp 12663 0 bnep 19704 2 bluetooth 372662 7 bnep rfkill 26536 3 bluetooth fuse 87661 3 ip6t_rpfilter 12546 1 ip6t_REJECT 12939 2 ipt_REJECT 12541 2 xt_conntrack 12760 7 ebtable_nat 12807 0 ebtable_broute 12731 0 bridge 110196 1 ebtable_broute stp 12976 1 bridge llc 14552 2 stp,bridge ebtable_filter 12827 0 ebtables 30913 3 ebtable_broute,ebtable_nat,ebtable_filter ip6table_nat 13015 1 nf_conntrack_ipv6 18738 5 nf_defrag_ipv6 34651 1 nf_conntrack_ipv6 nf_nat_ipv6 13279 1 ip6table_nat ip6table_mangle 12700 1 ip6table_security 12710 1 ip6table_raw 12683 1 ip6table_filter 12815 1 ip6_tables 27025 5 ip6table_filter,ip6table_mangle,ip6table_security,ip6table_nat,ip6table_raw iptable_nat 13011 1 nf_conntrack_ipv4 14862 4 nf_defrag_ipv4 12729 1 nf_conntrack_ipv4 nf_nat_ipv4 13263 1 iptable_nat nf_nat 21798 4 nf_nat_ipv4,nf_nat_ipv6,ip6table_nat,iptable_nat [output truncated]
|
|
|
Additional Resources
|
|
|
a device driver which adds support for new hardware; or,
|
|
|
After the system reboots, verify the keys on the system key ring again.
|
|
|
After you have created the configuration file, you can create an X.509 public and private key pair. The public key will be written to the `pass:attributes[{blank}]_public_key_.der` file and the private key will be written to the `pass:attributes[{blank}]_private_key_.priv` file.
|
|
|
alias
|
|
|
Alternatively, you can list the new parameters in an existing or newly created file in the `/etc/modprobe.d/` directory. This method makes the module parameters persistent by ensuring that they are set each time the module is loaded, such as after every reboot or [command]#modprobe# command. This method is covered in xref:Working_with_Kernel_Modules.adoc#sec-Persistent_Module_Loading[Persistent Module Loading], though the following information is a prerequisite.
|
|
|
Although the [command]#insmod# command can also be used to load kernel modules, it does not resolve dependencies. Because of this, you should *always* load modules using [command]#modprobe# instead.
|
|
|
Although the [command]#rmmod# command can be used to unload kernel modules, it is recommended to use [command]#modprobe -r# instead.
|
|
|
Always use modprobe instead of insmod!
|
|
|
a module that `wacom` directly depends on, or;
|
|
|
any module that `wacom`, through the dependency tree, depends on indirectly.
|
|
|
A short description of the module. You can use [command]#modinfo -d# as a shortcut command for printing only the description field.
|
|
|
A Text File to Load a Module
|
|
|
Build your `my_module.ko` module the standard way:
|
|
|
depends
|
|
|
description
|
|
|
_description_ is a brief explanation of what the parameter does, along with an expectation for the type of value the parameter accepts (such as `int`, `unit` or `array of int`) in parentheses.
|
|
|
Displaying Information About a Module
|
|