In linux, look into the files: /proc/cpuinfo and /proc/meminfo to get information about CPU and memory.
Monday, August 25, 2008
Tuesday, August 19, 2008
Latex: change row color of table
An example here:
\usepackage[table]{xcolor}
(if you use pdflatex and/or beamer, perhaps you need to transit 'table' by
\documentclass[xcolor=table..]{beamer} or you will have an error like:
! LaTeX Error: Option clash for package xcolor.
)
\begin{table}
\centering
\rowcolors{2}{gray!10}{}\tiny
\begin{tabular}{c||cc|cc}\hline\hline
....
\end{tabular}
\caption{...}
\end{table}
Monday, August 18, 2008
Linux: /tmp cleanup frequency
kerberos is working well in my laptop. However, since the temp ticket file krb5*** is stored in /tmp which is cleaned up as reboot, I cannot use kinit -R to renew the ticket-granting ticket even within its renewable life. So what I do is to change /tmp cleanup frequency. How? edit the file:
/etc/default/rcS
and check the default value of "TMPTIME", 0 means cleanup as reboot. TMPTIME=14 means that the files in the directory will be deleted in a frequency of 2 weeks.
Friday, August 15, 2008
ROOT: error: `Bool_t' does not name a type
In ROOT all 'new' types are defined in the file RType.h and if you wanna use those types in your cpp code you must include any head file based on TObject.h because each head file in ROOT includes RType.h or you just directly include it.
Thursday, August 14, 2008
Latex: Error: ! LaTeX Error: Too many unprocessed floats.
When using too much floating figures or tables, latex fails to locate those elements, you may counter the error:
! LaTeX Error: Too many unprocessed floats.
. One of solutions is to use the package 'float' and add [H] in your figure environment. Example:
\usepackage{float} %before text body
\begin{figure}[H]
\centering
\includegraphics[width=0.8\textwidth]{fig_tauid/plot_compare_tauprop_allvar_TTauAndTauIDTree_20080814_Tau_dalpha.eps}
\caption{Comparison between different samples used in tau ID study.}
\end{figure}
Saturday, July 26, 2008
linux:ssh:kerberos
Installing proper kereros and connecting with fermilab by ssh are always a bit tricky. Sometimes it needs old version openssh, sometimes it needs more... I don't know. One guy from Fermilab has a post talking about his experience based on ubuntu:
http://ubuntuforums.org/showthread.php?t=486284
I didn't follow his steps (since I just installed a new system, I need to install what I need). The basic idea is:
- install openssh (I installed newest one)
- install krb5
- sudo apt-get install krb5-user
- copy configure file (/etc/krb5.conf) from any computer of fermilab to your local computer (in the same location)
Although you could connect, please make sure you have right parameters both in ssh_config and sshd_config due to Fermilab security policy. I have a problem with it (once log in to one computer of clued0, I type klist, nothing found). I got the solution from kerberos-users of fnal:
===
Make sure your SSH client configuration in ssh_config (usually in /etc/ssh/)
contains the lines
GSSAPIAuthentication yes
GSSAPIDelegateCredentials yes
===
Computer:laptop: buy a new laptop, Lenovo T61
Yesterday I got my new laptop: Lenovo thinkpad T61. I am a thinkpad fan and always crazy about its classic design. IBM thinkpad was gone for ever while this branch was sold to Lenovo. My old one is thinkpad T41 following me for more than 4 years. Until now it is still very stable even after several strong damages by my honey heart (you know what this means :-) ). Before it was acted by falling down, I made an order to my new one: T61, yes, Lenovo T61.
Looking: thicker than T41. I guess designers wanna better air flow... although T41 is also very good in emiting heats unlike some other brands (the name beginning with 'com', you know this ;-p) which can be able to be a good heater in winter. Of course, the computer is very solid in looking, feeling and essence.
Layout: I may take a while to be used it. The new layout seems better. for example, mic slot is closer to your ears, more USBs, _shielded_ top light (previous one has a light too, but it is facing your eyes when you looked at it)...
....
