Code: Select all
bobby@main ~ $ ls /sys/class/hwmon/*
/sys/class/hwmon/hwmon0:
name power subsystem temp1_crit temp1_input uevent
/sys/class/hwmon/hwmon1:
device power subsystem uevent
Code: Select all
bobby@main ~ $ lsmod
Module Size Used by
radeon 375456 2
drm 175136 3 radeon
hwmon_vid 3544 0
snd_pcm_oss 44192 0
snd_mixer_oss 19448 1 snd_pcm_oss
snd_seq_oss 32224 0
snd_seq_midi_event 7608 1 snd_seq_oss
snd_seq 57376 4 snd_seq_oss,snd_seq_midi_event
snd_seq_device 7436 2 snd_seq_oss,snd_seq
b43 128040 0
ssb 39208 1 b43
i2c_nforce2 8000 0
forcedeth 60900 0
k8temp 5560 0Code: Select all
background yes
font Snap.se:size=7
xftfont Snap.se:size=7
use_xft yes
xftalpha 0.1
update_interval 1.0
total_run_times 0
own_window yes
own_window_type override
own_window_transparent yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
double_buffer yes
draw_shades yes
draw_outline no
draw_borders no
draw_graph_borders no
minimum_size 206 5
maximum_width 216
default_color ffffff
default_shade_color 000000
default_outline_color 000000
alignment top_right
gap_x 6
gap_y 18
no_buffers yes
cpu_avg_samples 2
override_utf8_locale no
uppercase no # set to yes if you want all text to be in uppercase
use_spacer noneI don't use conky to monitor temp but I did play around with it to make sure it works. Because of the i2c_nforce2 I'm assuming thats an nforce2 chipset motherboard. Here's are my lsmod info:h2sammo wrote:i need help displaying temps in conky please. here is some info:Code: Select all
bobby@main ~ $ ls /sys/class/hwmon/* /sys/class/hwmon/hwmon0: name power subsystem temp1_crit temp1_input uevent /sys/class/hwmon/hwmon1: device power subsystem ueventi have tried numerous lines in ~/.conkyrc ... nothing shows temp. can i have some help please?Code: Select all
bobby@main ~ $ lsmod Module Size Used by radeon 375456 2 drm 175136 3 radeon hwmon_vid 3544 0 snd_pcm_oss 44192 0 snd_mixer_oss 19448 1 snd_pcm_oss snd_seq_oss 32224 0 snd_seq_midi_event 7608 1 snd_seq_oss snd_seq 57376 4 snd_seq_oss,snd_seq_midi_event snd_seq_device 7436 2 snd_seq_oss,snd_seq b43 128040 0 ssb 39208 1 b43 i2c_nforce2 8000 0 forcedeth 60900 0 k8temp 5560 0
Code: Select all
lsmod | grep -v snd
Module Size Used by
vfat 10660 0
fat 47776 1 vfat
usb_storage 49672 0
fuse 58368 2
w83627hf 23092 0
hwmon_vid 2628 1 w83627hf
hwmon 2392 1 w83627hf
nvidia 8879588 28
3c59x 36652 0
nvidia_agp 6080 1
agpgart 28308 2 nvidia,nvidia_agp
i2c_nforce2 6372 0
i2c_core 19732 2 nvidia,i2c_nforce2
firewire_ohci 22824 0
8250_pnp 14148 0
8250 20516 1 8250_pnp
serial_core 18244 1 8250
evdev 9184 3
firewire_core 43288 1 firewire_ohci
ehci_hcd 34932 0
ohci_hcd 23508 0Code: Select all
cd /sys/class/hwmon/hwmon0 && ls -al
total 0
drwxr-xr-x 3 root root 0 2010-03-31 20:50 ./
drwxr-xr-x 3 root root 0 2010-03-31 20:50 ../
lrwxrwxrwx 1 root root 0 2010-03-31 20:58 device -> ../../../w83627hf.656/
drwxr-xr-x 2 root root 0 2010-03-31 21:04 power/
lrwxrwxrwx 1 root root 0 2010-03-31 21:04 subsystem -> ../../../../../class/hwmon/
-rw-r--r-- 1 root root 4096 2010-03-31 21:04 ueventCode: Select all
Tempeture:
CPU${alignr}${platform w83627hf.656 temp 2}C
Case${alignr}${platform w83627hf.656 temp 1}C
Fan Speed:
CPU${alignr}${platform w83627hf.656 fan 1}
Case${alignr}${platform w83627hf.656 fan 2}
Power${alignr}${platform w83627hf.656 fan 3}Code: Select all
chip "w83627hf-*"
label in0 "VCore"
label in1 "VDIMM"
label in2 "+3.3V"
label in3 "+5V"
label in4 "+12V"
label in5 "-12V"
label in6 "-5V"
label in7 "V5SB"
label in8 "VBat"
compute in3 ((6.8/10)+1)*@ , @/((6.8/10)+1)
compute in4 ((28/10)+1)*@ , @/((28/10)+1)
compute in5 (5.14 * @) - 14.91 , (@ + 14.91) / 5.14
compute in6 (3.14 * @) - 7.71 , (@ + 7.71) / 3.14
compute in7 ((6.8/10)+1)*@ , @/((6.8/10)+1)
set in0_min cpu0_vid*0.95
set in0_max cpu0_vid*1.05
set in1_min 2.8 * 0.95
set in1_max 2.8 * 1.05
set in2_min 3.3 * 0.95
set in2_max 3.3 * 1.05
set in3_min 5.0 * 0.95
set in3_max 5.0 * 1.05
set in4_min 12 * 0.90
set in4_max 12 * 1.10
set in5_max -12 * 0.90
set in5_min -12 * 1.10
set in6_max -5 * 0.95
set in6_min -5 * 1.05
set in7_min 5 * 0.95
set in7_max 5 * 1.20
set in8_min 3.0 * 0.80
set in8_max 3.0 * 1.20
set fan1_min 2800
set fan2_min 1700
set fan3_min 1000
ignore temp3
ignore in6
ignore in8
set temp1_max 39
set temp1_max_hyst 35
set temp2_max 55
set temp2_max_hyst 50Using 'own_window_type panel' instead of 'own_window_type override' solved it for me. I got the same error after upgrading to conky-1.8.0. The problem went away when I tried the new 'own_window_argb_visual', but that brough its own niggles with it, as conky would always be on top.miriya wrote:I'm not sure if this is the right place to post. I've got conky working mostly ok. It displays everything I'd expect it to. However, when I use a shortcut key to open up a terminal, conky goes from being transparent to having the same color background as my windows as set in "Appearance Preferences". This also happens if I use the shortcut keys to change desktops. No other functionality in conky seems to change. I'm running gnome but not compiz. I have the terminals set to be somewhat transparent. I notice that when I close a terminal window, the window itself shows that same color background before closing, so I wonder if the behavior in conky is related. Does anyone have an idea of what might be causing this behavior?
This is the code I have in my .conkyrc:Thank you.Code: Select all
background yes font Snap.se:size=7 xftfont Snap.se:size=7 use_xft yes xftalpha 0.1 update_interval 1.0 total_run_times 0 own_window yes own_window_type override own_window_transparent yes own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager double_buffer yes draw_shades yes draw_outline no draw_borders no draw_graph_borders no minimum_size 206 5 maximum_width 216 default_color ffffff default_shade_color 000000 default_outline_color 000000 alignment top_right gap_x 6 gap_y 18 no_buffers yes cpu_avg_samples 2 override_utf8_locale no uppercase no # set to yes if you want all text to be in uppercase use_spacer none

Code: Select all
% conky -c ~/.conky

Code: Select all
# Conky configuration
background yes
out_to_console no
update_interval 2
total_run_times 0
own_window yes
own_window_type normal
own_window_transparent yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
double_buffer yes
draw_shades no
draw_outline no
draw_borders no
draw_graph_borders yes
stippled_borders 5
border_width 1
default_color grey
default_shade_color black
default_outline_color black
alignment top_right
gap_x 10
gap_y 47
no_buffers no
uppercase no
cpu_avg_samples 2
net_avg_samples 2
override_utf8_locale yes
use_spacer right
maximum_width 240
TEXT
${execi 3600 cal -m}
${color #00FF00}${execi 60 when i}
${color gray}${execi 3600 conkyForecast --location=SIXX0002 --datatype=CC} ${execi 3600 conkyForecast --location=SIXX0002 --datatype=HT}
${execi 3600 conkyForecast --location=SIXX0002 --datatype=WF}
Forecast
${execi 3600 conkyForecast --location=SIXX0002 --startday=1 --endday=4 --spaces=7 --datatype=HT}
${execi 3600 conkyForecast --startday=1 --endday=4 --location=SIXX0002 --datatype=WF}
${execi 3600 conkyForecast --location=SIXX0002 --startday=1 --endday=4 --spaces=2 --datatype=DW}
${color #00FF00}Up: $uptime ${alignr}Load: $loadavg
cpu1: ${cpu cpu1}%${goto 70}cpu2: ${cpu cpu2}%${goto 136}ram: $memperc%${goto 196}rom: ${fs_used_perc /}%
${freq_g 1}GHz${goto 70}${freq_g 2}GHz${goto 136}${memmax}${goto 196}${fs_size /}
${execi 30 acpitool -t | grep "Thermal zone 2 : ok, " | cut -c24-25}${iconv_start UTF-8 ISO_8859-1}°${iconv_stop}C${goto 70}${execi 30 acpitool -t | grep "Thermal zone 3 : ok, " | cut -c24-25}${iconv_start UTF-8 ISO_8859-1}°${iconv_stop}C
acpi: ${acpitemp}${iconv_start UTF-8 ISO_8859-1}°${iconv_stop}C fan: ${acpifan}
tz4: ${execi 30 acpitool -t | grep "Thermal zone 4 : ok, " | cut -c24-25}${iconv_start UTF-8 ISO_8859-1}°${iconv_stop}C tz5: ${execi 5 acpitool -t | grep "Thermal zone 5 : ok, " | cut -c24-25}${iconv_start UTF-8 ISO_8859-1}°${iconv_stop}C
${if_up wlan0}${color white}wlan${color gray}, signal: ${wireless_link_qual wlan0}% Up: ${upspeed wlan0} Down: ${downspeed wlan0}
${alignc}IP: ${addr wlan0} - ${execi 10800 /usr/share/conkycolors/bin/conkyIp}
mac:${wireless_ap wlan0}
essid:${wireless_essid wlan0}${endif}
${if_up eth0}${color white}eth0:${color gray} ${alignr}${addr eth0}/${execi 10800 /usr/share/conkycolors/bin/conkyIp}
Up: ${upspeed eth0}${alignr}Down:${downspeed eth0}${endif}
${color white}top cpu ... PID CPU% MEM%
${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
${color gray}${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4}
${color white}top ram ... PID CPU% MEM%
${top_mem name 1} ${top_mem pid 1} ${top_mem cpu 1} ${top_mem mem 1}
${color gray}${top_mem name 2} ${top_mem pid 2} ${top_mem cpu 2} ${top_mem mem 2}
${top_mem name 3} ${top_mem pid 3} ${top_mem cpu 3} ${top_mem mem 3}
${top_mem name 4} ${top_mem pid 4} ${top_mem cpu 4} ${top_mem mem 4}
Last Sync: ${execi 300 /home/grom/Apps/lastsync.pl}Code: Select all
C6820s ~ # acpitool -ev
Kernel version : 2.6.32-gentoo-r - ACPI version : 20090903
-----------------------------------------------------------
Battery #1 : slot empty
AC adapter : on-line
Fan : off
Fan : on
Fan : off
Fan : on
Fan : off
Fan : off
CPU type : Intel(R) Core(TM)2 Duo CPU T7500 @ 2.20GHz
Min/Max frequency : 800/2201 MHz
Current frequency : 2201 MHz
Frequency governor : userspace
Freq. scaling driver : acpi-cpufreq
Cache size : 4096 KB
Bogomips : 4389.00
Bogomips : 4388.78
# of CPU's found : 2
Processor ID : 0
Bus mastering control : yes
Power management : yes
Throttling control : yes
Limit interface : yes
Active C-state : C0
C-states (incl. C0) : 2
Usage of state C1 : 5102120 (97.1 %)
T-state count : 8
Active T-state : T0
Processor ID : 1
Bus mastering control : yes
Power management : yes
Throttling control : yes
Limit interface : yes
Active C-state : C0
C-states (incl. C0) : 2
Usage of state C1 : 5331350 (97.5 %)
T-state count : 8
Active T-state : T0
Thermal zone 1 : ok, 67 C
Trip points :
-------------
critical (S5): 256 C
active[0]: 80 C: devices=C36B
active[1]: 72 C: devices=C36C
active[2]: 62 C: devices=C36D
active[3]: 50 C: devices=C36E
active[4]: 30 C: devices=C36F
Thermal zone 2 : ok, 65 C
Trip points :
-------------
critical (S5): 108 C
passive: 105 C: tc1=1 tc2=2 tsp=300 devices=CPU0 CPU1
Thermal zone 3 : ok, 65 C
Trip points :
-------------
critical (S5): 110 C
active[0]: 105 C: devices=C372
active[1]: 70 C: devices=C370
active[2]: 55 C: devices=C371
Thermal zone 4 : ok, 20 C
Trip points :
-------------
critical (S5): 108 C
passive: 60 C: tc1=1 tc2=2 tsp=300 devices=CPU0 CPU1
Thermal zone 5 : ok, 75 C
Trip points :
-------------
critical (S5): 110 C
Device S-state Status Sysfs node
---------------------------------------
1. C0B1 S5 disabled pci:0000:00:1e.0
2. C109 S3 disabled pci:0000:00:1d.0
3. C110 S3 disabled pci:0000:00:1d.1
4. C111 S3 disabled pci:0000:00:1d.2
5. C112 S3 disabled pci:0000:00:1d.7
6. C11A S3 disabled pci:0000:00:1a.0
7. C11C S3 disabled pci:0000:00:1a.7
8. C132 S5 disabled pci:0000:00:1c.1
9. C250 S5 disabled pci:0000:10:00.0
10. C135 S5 disabled pci:0000:00:1c.4
11. C251 S5 disabled
12. C138 S5 disabled pci:0000:00:19.0
13. C1EB S5 disabled
C6820s ~ #
C6820s ~ # sensors-detect
# sensors-detect revision 5861 (2010-09-21 17:21:05 +0200)
# System: Hewlett-Packard HP Compaq 6820s (laptop)
# Board: Hewlett-Packard 30D7
This program will help you determine which kernel modules you need
to load to use lm_sensors most effectively. It is generally safe
and recommended to accept the default answers to all questions,
unless you know what you're doing.
Some south bridges, CPUs or memory controllers contain embedded sensors.
Do you want to scan for them? This is totally safe. (YES/no): y
Silicon Integrated Systems SIS5595... No
VIA VT82C686 Integrated Sensors... No
VIA VT8231 Integrated Sensors... No
AMD K8 thermal sensors... No
AMD Family 10h thermal sensors... No
AMD Family 11h thermal sensors... No
Intel Core family thermal sensor... Success!
(driver `coretemp')
Intel Atom thermal sensor... No
Intel AMB FB-DIMM thermal sensor... No
VIA C7 thermal sensor... No
VIA Nano thermal sensor... No
Some Super I/O chips contain embedded sensors. We have to write to
standard I/O ports to probe them. This is usually safe.
Do you want to scan for Super I/O sensors? (YES/no): y
Probing for Super-I/O at 0x2e/0x2f
Trying family `National Semiconductor'... No
Trying family `SMSC'... Yes
Found unknown chip with ID 0x3600
Probing for Super-I/O at 0x4e/0x4f
Trying family `National Semiconductor'... No
Trying family `SMSC'... No
Trying family `VIA/Winbond/Nuvoton/Fintek'... No
Trying family `ITE'... No
Some hardware monitoring chips are accessible through the ISA I/O ports.
We have to write to arbitrary I/O ports to probe them. This is usually
safe though. Yes, you do have ISA I/O ports even if you do not have any
ISA slots! Do you want to scan the ISA I/O ports? (YES/no): y
Probing for `National Semiconductor LM78' at 0x290... No
Probing for `National Semiconductor LM79' at 0x290... No
Probing for `Winbond W83781D' at 0x290... No
Probing for `Winbond W83782D' at 0x290... No
Lastly, we can probe the I2C/SMBus adapters for connected hardware
monitoring devices. This is the most risky part, and while it works
reasonably well on most systems, it has been reported to cause trouble
on some systems.
Do you want to probe the I2C/SMBus adapters now? (YES/no): y
Sorry, no supported PCI bus adapters found.
FATAL: Module i2c_dev not found.
Failed to load module i2c-dev.
Now follows a summary of the probes I have just done.
Just press ENTER to continue:
Driver `coretemp':
* Chip `Intel Core family thermal sensor' (confidence: 9)
Warning: the required module coretemp is not currently installed
on your system. If it is built into the kernel then it's OK.
Otherwise, check http://www.lm-sensors.org/wiki/Devices for
driver availability.
No modules to load, skipping modules configuration.
C6820s ~ # Code: Select all
use_xft yes
xftfont Bitstream Vera Sans Mono:size=9
Code: Select all
# FONT
use_xft yes
xftfont Bitstream Vera Sans Mono:size=9
xftalpha 1
override_utf8_locale yes
# WINDOW
own_window yes
#own_window_type panel
own_window_type override
own_window_transparent yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
# SIZE & POSITION
alignment top_right
minimum_size 170 5
maximum_width 170
gap_x 545
gap_y 435
# APPEARENCE
background no
draw_shades no
draw_outline no
draw_borders no
draw_graph_borders no
default_color black
uppercase no
#border_margin 4
border_width 1
# CONFIG
cpu_avg_samples 1
net_avg_samples 1
update_interval 2
total_run_times 0
no_buffers yes
if_up_strictness address
# OPTIONS
pad_percents 1
short_units 1
double_buffer yes
# COLORS LIVECD 2007.0 THEME
color0 6E6F8F
color1 6E6F8F
color2 575754
TEXT
${font DejaVu Sans Condensed:bold:size=11}${color0}SYSTEM ${font Bitstream Vera Sans Mono Book:size=9}${color1}
Uptime $alignr${uptime}
Processes $alignr${running_processes} / ${processes}
Threads ${alignr}${running_threads} / ${threads}
CPU @ ${freq cpu0}mhz${alignr} ${cpu cpu0}%
RAM ${memperc}% - $mem $membar
SWAP ${swapperc}% - $swap $swapbar

Code: Select all
use_xft yes
xftfont Monospace:size=8
background yes
out_to_console no
update_interval 2
total_run_times 0
own_window yes
own_window_type normal
own_window_transparent yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
double_buffer yes
draw_shades no
draw_outline no
draw_borders no
draw_graph_borders yes
stippled_borders 5
border_width 1
default_color grey
default_shade_color black
default_outline_color black
alignment top_right
gap_x 10
gap_y 47
no_buffers no
uppercase no
cpu_avg_samples 2
net_avg_samples 2
override_utf8_locale yes
use_spacer right
maximum_width 240
TEXT
${color #00FF00}${time %a %e %B %G} ${time %H:%M:%S}
${execi 300 /home/grom/Apps/dates.sh}
${execi 3600 cal -m}
${color gray}${goto 15}${execi 3600 conkyForecast --location=SIXX0002 --datatype=HT}${goto 65}${execi 3600 conkyForecast --location=SIXX0002 --startday=1 --endday=4 --spaces=5 --datatype=HT}
${font ConkyWeather:size=30}${execi 3600 conkyForecast --location=SIXX0002 --datatype=WF} ${execi 3600 conkyForecast --startday=1 --endday=4 --location=SIXX0002 --datatype=WF}${font}
${color #00FF00}Up: $uptime ${alignr}Load: $loadavg
${color yellow}cpu1: ${cpu cpu1}%${goto 70}cpu2: ${cpu cpu2}%${goto 136}ram: $memperc%${goto 196}rom: ${fs_used_perc /}%
${freq_g 1}GHz${goto 70}${freq_g 2}GHz${goto 136}${memmax}${goto 196}${fs_size /}
${execi 30 acpitool -t | grep "Thermal zone 2 : ok, " | cut -c24-26}°C${goto 70}${execi 30 acpitool -t | grep "Thermal zone 3 : ok, " | cut -c24-26}°C${goto 196}${exec nc localhost 7634 | cut -c29-30}°C
fan: ${execi 30 /home/grom/Apps/fan1.sh}${goto 70}fan: ${execi 30 /home/grom/Apps/fan2.sh}
${color #00FF00}acpi: ${acpitemp}°C fan: ${acpifan}
tz4: ${execi 30 acpitool -t | grep "Thermal zone 4 : ok, " | cut -c24-26}°C tz5: ${execi 30 acpitool -t | grep "Thermal zone 5 : ok, " | cut -c24-26}°C fans: ${execi 30 /home/grom/Apps/fan.sh}
${if_up wlan0}${color yellow}wlan: ${wireless_link_qual wlan0}% ${alignr}${addr wlan0}/${execi 10800 /usr/share/conkycolors/bin/conkyIp}
Up: ${upspeed wlan0}${alignr}Down: ${downspeed wlan0}
mac:${wireless_ap wlan0}
essid:${wireless_essid wlan0}${endif}
${if_up eth0}${color yellow}eth0: ${alignr}${addr eth0}/${execi 10800 /usr/share/conkycolors/bin/conkyIp}
Up: ${upspeed eth0}${alignr}Down:${downspeed eth0}${endif}
${color white}top cpu ... PID CPU% MEM%
${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
${color gray}${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4}
${color white}top ram ... PID CPU% MEM%
${top_mem name 1} ${top_mem pid 1} ${top_mem cpu 1} ${top_mem mem 1}
${color gray}${top_mem name 2} ${top_mem pid 2} ${top_mem cpu 2} ${top_mem mem 2}
${top_mem name 3} ${top_mem pid 3} ${top_mem cpu 3} ${top_mem mem 3}
${top_mem name 4} ${top_mem pid 4} ${top_mem cpu 4} ${top_mem mem 4}
Last Sync: ${execi 300 /home/grom/Apps/lastsync.pl}
Code: Select all
...
own_window_class Conky
own_window yes
own_window_colour 000000
own_window_type normal
own_window_argb_visual yes
own_window_argb_value 0
own_window_transparent yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
...Code: Select all
background no
format_human_readable yes
out_to_console yes
temperature_unit celsius
total_run_times 1
update_interval 1
use_spacer none
TEXT
SYSINFO :
host : $nodename arch : $machine kernel : $kernel date : ${time %d.%m.%y %H:%M:%S} uptime : $uptime users : $user_number
cpu : ${freq_g 1}GHz, ${freq_g 2}GHz ${cpu cpu0}% memory : $mem/$memmax $memperc% disk : $fs_used/$fs_size $fs_used_perc% $diskio battery : $battery_percent% $battery
network : ${wireless_mode wlan0} ${wireless_bitrate wlan0} usage : ${downspeed
wlan0}/${upspeed wlan0} total : ${totaldown wlan0}/${totalup wlan0} connections : ${tcp_portmon 1 32767
count}/${tcp_portmon 32768 61000 count}
DMESG :
${exec dmesg | tail}
SYSLOG :
${exec tail /var/log/messages}
CONNECTIONS :
${exec netstat -tnp | grep ESTABLISHED}
Code: Select all
SYSINFO :
host : dfr-laptop arch : x86_64 kernel : 3.8.13-gentoo date : 11.06.13 13:52:49 uptime : 1d 0h 0m users : 2
cpu : 0.80GHz, 0.80GHz 1% memory : 286MiB/2.84GiB 9% disk : 3.64GiB/54.9GiB 6% 0B battery : 100% charged
network : Managed 72.2 Mb/s usage : 0B /0B total : 68.2MiB/10.6MiB connections : 0/12
DMESG :
[ 58.510972] wlan0: authenticated
[ 58.512054] wlan0: associate with b4:98:42:ee:02:0b (try 1/3)
[ 58.515221] wlan0: RX AssocResp from b4:98:42:ee:02:0b (capab=0x421 status=0 aid=1)
[ 58.520373] wlan0: associated
[ 58.520449] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 358.628101] kworker/u:0 (6) used greatest stack depth: 3848 bytes left
[36570.025041] nf_conntrack: automatic helper assignment is deprecated and it will be removed soon. Use the iptables CT target to attach helpers instead.
[69401.504243] midori[1709]: segfault at 300000000b ip 00007f0a8fdbae51 sp 00007fff988f4c08 error 4 in libc-2.15.so[7f0a8fd34000+19f000]
[71229.913957] a.out[11633]: segfault at 7ffdb0bfa370 ip 00007f5fb075eaf0 sp 00007fffdb1d7950 error 4 in libc-2.15.so[7f5fb0715000+19f000]
[71272.175771] a.out[11641]: segfault at 7ffe270f5ca0 ip 00007fedc3340af0 sp 00007fffce3a5280 error 4 in libc-2.15.so[7fedc32f7000+19f000]
SYSLOG :
Jun 11 12:55:26 dfr-laptop su[1249]: Successful su for root by defer
Jun 11 12:55:26 dfr-laptop su[1249]: + /dev/pts/0 defer:root
Jun 11 12:55:26 dfr-laptop su[1249]: pam_unix(su:session): session opened for user root by (uid=1000)
Jun 11 13:04:28 dfr-laptop dhcpcd[1775]: wlan0: renewing lease of 192.168.1.222
Jun 11 13:04:28 dfr-laptop dhcpcd[1775]: wlan0: acknowledged 192.168.1.222 from 192.168.1.1
Jun 11 13:04:28 dfr-laptop dhcpcd[1775]: wlan0: leased 192.168.1.222 for 3600 seconds
Jun 11 13:25:10 dfr-laptop su[1249]: pam_unix(su:session): session closed for user root
Jun 11 13:31:36 dfr-laptop dhcpcd[1775]: wlan0: renewing lease of 192.168.1.222
Jun 11 13:31:36 dfr-laptop dhcpcd[1775]: wlan0: acknowledged 192.168.1.222 from 192.168.1.1
Jun 11 13:31:36 dfr-laptop dhcpcd[1775]: wlan0: leased 192.168.1.222 for 3600 seconds
CONNECTIONS :
tcp 0 0 192.168.1.222:51314 173.194.32.6:80 ESTABLISHED 12292/midori
tcp 0 0 192.168.1.222:42839 77.67.29.160:80 ESTABLISHED 12292/midori
tcp 0 0 192.168.1.222:57283 77.67.29.200:80 ESTABLISHED 12292/midori
tcp 0 0 192.168.1.222:42230 31.13.64.1:80 ESTABLISHED 12292/midori
tcp 0 0 192.168.1.222:50988 158.127.30.72:80 ESTABLISHED 12292/midori
tcp 0 0 192.168.1.222:42840 77.67.29.160:80 ESTABLISHED 12292/midori
tcp 0 0 192.168.1.222:58939 158.127.30.75:80 ESTABLISHED 12292/midori
tcp 0 0 192.168.1.222:35867 193.219.128.49:6667 ESTABLISHED 6763/irssi
tcp 0 0 192.168.1.222:36514 158.38.8.251:6667 ESTABLISHED 6763/irssi
tcp 0 0 192.168.1.222:50993 158.127.30.72:80 ESTABLISHED 12292/midori
tcp 0 0 192.168.1.222:43449 86.58.179.99:80 ESTABLISHED 12292/midori
tcp 0 0 192.168.1.222:50985 158.127.30.72:80 ESTABLISHED 12292/midori