Submitted by donmc on Fri, 08/28/2009 - 16:00
This data comes from the crowd-sourced "PassMark" benchmarking utility.
Users pass their CPU performance data back to Passmark, and they have a few tables on their website that break CPUs down by ranking. I have combined several tables here into a single dump that includes both Single and Multi CPU performance statistics/comparisons. There are over 1,500 individual CPUs compared in this table.
You can get their software at their web site here:
http://www.passmark.com
This table is sorted by CPU Ranking
Submitted by donmc on Mon, 05/18/2009 - 21:34
As a part of the 2009 Stimulus package, there is strong financial incentive for doctors to install and implement EMR systems in their practice.
According to the US Government, the benefits of IT use in the
healthcare sector can bring these benefits:
Health information technology (HIT)
Health information technology in general are increasingly viewed as the most promising tool for improving the overall quality, safety and efficiency of the health delivery system (Chaudhry et al., 2006).
Broad and consistent utilization of HIT will:
- Improve health care quality;
- Prevent medical errors;
- Reduce health care costs;
- Increase administrative efficiencies;
- Decrease paperwork; and
- Expand access to affordable care.
Submitted by admin on Tue, 04/23/2013 - 13:08
Just a liitle trick I needed to do to get my webmin access enabled in the vhost on Proxmox:
iptables -I INPUT 1 -p tcp --dport 10000 -j ACCEPT
Submitted by admin on Tue, 04/23/2013 - 13:04
Some key cmds that I had to use to get the networking operational on the proxmox server:
root@proxmax:/etc/network# vzctl set 103 --ipadd 192.168.3.88 --save
This will poke a new IP address into the config for the container.
The "/etc/network/interfaces" files that results will look like this:
Submitted by admin on Tue, 02/12/2013 - 14:58
[donmc@MSJ ~]$ sudo rpm -Uvh VNC-Server-5.0.4-Linux-x86.rpm
[sudo] password for donmc:
Preparing... ########################################### [100%]
1:realvnc-vnc-server ########################################### [100%]
Checking for xauth... [OK]
Updating /etc/pam.d/vncserver
Looking for font path... not found.
Generating private key:
p: .....................................
q: ................
Installed init script for VNC X11 Service-mode daemon
Start and stop the service with:
Submitted by donmc on Tue, 01/22/2013 - 21:11
At a CMD prompt run:
shutdown -t 0 -r -f
Submitted by admin on Tue, 01/08/2013 - 14:32
By default, the bash history does not keep tabs on the time of day that a given command was run. But it is really as simple as defining ONE environment variable: "HISTTIMEFORMAT"
This from "Linux by Example": HISTTIMEFORMAT takes format string of strftime. Check out the strftime manual to choose and construct the timestamp that suit your taste. My favorite is "%F %T ".
export HISTTIMEFORMAT="%F %T "
Submitted by admin on Wed, 12/19/2012 - 16:31
This is a cool little grep search to pull any IPs from a text file:
grep -Eo '([0-9]{1,3}\.){3}[0-9]{1,3}' file_with_ips_in_it.txt | sort | uniq
Submitted by admin on Sat, 10/27/2012 - 19:06
I finally bit the bullet and upgraded the site to Drupal V7 - it was pretty straight forward, a few glitches here and there, but overall, pretty smooth. It was worth waiting a few years for the code to be nicely cleaned up :)
A BIG Thank You to all those clever people that contributed to the Drupal 7 experience - there is no doubt about it - it is a fantastic product.
Submitted by donmc on Tue, 09/18/2012 - 19:19
I have been working on a system inherited from several earlier sysadmins, and you have to keep an eye out for cron jobs running for other users - so it's nice to be able to review them all in one hit - just run this on a command line as root:
for user in $(cut -f1 -d: /etc/passwd); do echo $user; crontab -u $user -l; done
Pages