The kldconfig utility displays or modifies the search path used by the
kernel when loading modules using the kldload utility or the
kldload syscall. You can also use sysctl command (the sysctl utility retrieves kernel state). Try any one of the following command as a root user:
1) To get PATH (or directories name) type command:
# sysctl kern.module_path
OR
# kldconfig -r
2) The path can modified in /boot/loader.conf file, open this file and look for entry called module_path:
# grep “modile_path” /boot/loader.conf
module_path=”/boot/kernel;/boot/modules;/modules;/new/path”
Note you must open /boot/loader.conf file to change path settings using text editor:
# vi /boot/loader.conf
And make changes to file.
3) Reboot system to take effect.
4) Or on fly, you can add/append path using kldconfig utility, read man page for more info.
🐧 Get the latest tutorials on Linux, Open Source & DevOps via:
- RSS feed or Weekly email newsletter
- Share on Twitter • Facebook • 0 comments... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |