Results 1 to 3 of 3
I was asked to do the following, but I have no clue what to do because I am new in Linux world:
"Could you provide:
kernel log(using "dmesg") for those ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 07-23-2012 #1Just Joined!
- Join Date
- Jul 2012
- Posts
- 1
kernel log using dmesg
I was asked to do the following, but I have no clue what to do because I am new in Linux world:
"Could you provide:
kernel log(using "dmesg") for those commands:
insmod dhd.ko
dhd -i eth1 download...
ifconfig eth1 ...
wl mpc..."
- 07-23-2012 #2
The kernel log is in the dmesg file in the directory /var/log, so you can search it for those commands with grep:
Alternative method is to use dmesg:Code:cd /var/log grep -i "insmod dhd.ko" dmesg grep -i "dhd -eth1 download" dmesg grep -i "ifconfig eth1" dmesg grep -i "wl mpc" dmesg
Hope that helps.Code:dmesg | grep -i "insmod dhd.ko" dmesg | grep -i "dhd -eth1 download" dmesg | grep -i "ifconfig eth1" dmesg | grep -i "wl mpc"
Last edited by hagfish52; 07-23-2012 at 09:45 PM.
- 07-23-2012 #3
Hello and Welcome!
hagfish52 gave great advice... but I'm hoping that this wasn't for a homework question, as those are against Forum Rules.Jay
New users, read this first.
New Member FAQ
Registered Linux User #463940
I do not respond to Private Messages asking for Linux help. Please, keep it on the public boards.


Reply With Quote
