I have wireless USB Adapter and I use "pstree" command to monitor all processes.
When I plug the USB adapter into my Linux OS I see new process "wpa_supplicant" with "pstree" command.
I use in C/C++ language . I know Linux OS will use "NetworkManager" daemon to monitor network (eth, bluetooth, wifi. etc) but i don't know How to we can start "wpa_supplicant" ? Can i use dbus or systemd?
Thanks Thong LT
The standard UNIX way is to use fork(2) followed by an exec(3) call (there's a whole family of them—choose whichever suits your needs the best).
Example to illustrate usage: