2016年10月12日 星期三

2016年10月11日 星期二

Install 遠端桌面 for ubuntu.

sudo apt-get install xrdp
sudo apt-get install vnc4server
sudo apt-get install xubuntu-desktop
echo "xfce4-session" >~/.xsession
sudo service xrdp restart

2016年1月27日 星期三

SOL via ipmiutil

You can use the below command to verify SOL function.

ipmiutil sol -a -N 172.16.1.41 -U admin -P admin -V 4 -i host.sh  -o tmp.log

2016年1月5日 星期二

Compute the executing time in the code

struct timeval tv , tv2 ;
unsigned long      start_utime , end_utime;
float      time_period;
...
...