View Single Post
  #4   (View Single Post)  
Old 10th June 2013
ocicat ocicat is offline
Administrator
 
Join Date: Apr 2008
Posts: 3,319
Default

daemonfowl, you have only posted the end of your dmesg(8) output. dmesg(8) output always begins with something akin to the following:
Code:
OpenBSD 5.3-beta (GENERIC.MP) #37: Wed Feb 20 09:29:22 CST 2013
    root@build.pricklyfish.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP
real mem = 4004114432 (3818MB)
avail mem = 3875033088 (3695MB)
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 2.7 @ 0xdae9d000 (71 entries)
bios0: vendor LENOVO version "G6ET22WW (1.01 )" date 07/04/2012
...
The reason the entire dmesg(8) output is required is that it provides the kernel understanding of the hardware used. Without this information all anyone can do is guess what is going on. We need to see what devices are attached, & the output provided has this information clipped.

What should be posted is the output of the following command:

$ dmesg | more


Last edited by ocicat; 10th June 2013 at 05:13 PM.
Reply With Quote