monitoring hardware temperatures

2010-12-06 Thread Mikhail T.
Hello! I have a server (Dell Poweredge 2900), that's loaded with sensors. While it was in Windows-mode, a utility was able to tell me not only the temperature of each CPU-core, but also that of every DIMM!.. One of them was running far hotter than others, and I'd like to continue keeping an

Re: monitoring hardware temperatures

2010-12-06 Thread Mikhail T.
On 06.12.2010 14:51, Michael Fuckner wrote: did you try to read the data via IPMI? kldload ipmi;ipmitool sdr Interestingly, I was doing just that, when your e-mail arrived... ipmitool was impressive enough and I'm building openipmi to take a look at that too. I don't see information on

Re: monitoring hardware temperatures

2010-12-06 Thread Mikhail T.
On 06.12.2010 18:02, Andriy Gapon wrote: BTW, you could probably write a simple script employing smbmsg(1) to query the DIMMs based on logic in the sdtemp driver. From OpenBSD's sdtemp man-page, it would seem, the driver uses the iic framework (if that's the right word, khmm...) And on this

Re: monitoring hardware temperatures

2010-12-06 Thread Mikhail T.
On 06.12.2010 18:19, Andriy Gapon wrote: Another possibility is that a driver that should be able to handle your hardwre just doesn't know the particular IDs. pciconf -lv output could shed some light. Attached -- it is a vanilla PowerEdge 2900 with just one add-on card -- audio... Thanks!

passwordless login not working in KDM

2009-02-11 Thread Mikhail T.
Hello! The instructions at: http://freebsd.kde.org/faq.php#HowdoIenablepasswordlessconvenienceloginsinKDMIcheckedthecheckboxintheLoginManagerControlbutKDMwontlogmein seem perfectly clear and, I believe, I followed them correctly: m...@corbulon:~ (1004) ls -l /etc/pam.d/kde* -rw-r--r--

how to suspend/wake-up a FreeBSD machine?

2007-12-29 Thread Mikhail T.
Hello! I managed to suspend some of my computers a few times (using either ``zzz'' or ``acpiconf -s 1''), but I could never successfully wake the system up after this, requiring a full reboot. What's the proper procedure? I tried the power-button (no effect) and hitting random keyboard keys (no

tail does not exit

2007-12-19 Thread Mikhail T.
Why does not the script below actually ever exit? #!/bin/sh if tail -f /var/log/messages | awk '{print Exiting; exit 0}' then echo Exited else echo Failed fi exit 0 Awk exits as advertised, but tail stays around --

xfontsel would not start, xterm crashes

2006-04-07 Thread Mikhail T.
Hello! I upgraded X-server to xorg-6.9.0 a month ago. Since then, xfontsel would not start and xterm crashes when I try to bring up any of its three menus by pressing any of the mouse buttons while holding Ctrl. The messages are always the same: Warning: Unable to load any usable

Re: How to print in duplex mode?

2006-03-06 Thread Mikhail T.
неділя 05 березень 2006 02:55, Malcolm Kay, Ви написали: Duplex mode is usually controlled by some printer/manufacturer specific job control wrapper around the postscript such as HP's JPL. Is it? I thought, it can be controlled by the PostScript being printed itself... pstops(1) even has an

Re: read vs. mmap (or io vs. page faults)

2004-06-22 Thread Mikhail T.
22 2004 23:27, Peter Wemm, : = On Monday 21 June 2004 10:08 pm, Mikhail Teterin wrote: = The amount of work for the kernel to do a read() and a high-speed = memory copy is much less than the cost of taking a page fault, running = a whole bunch of really really nasty code in the vm system,