gnuplot notes
gnuplot> set xlabel “Matrix size” // Add a label for the X Axis gnuplot> set ylabel “MFlops” // Add a label for …
gnuplot> set xlabel “Matrix size” // Add a label for the X Axis gnuplot> set ylabel “MFlops” // Add a label for …
如何聽遠端 iTunes 的音樂? 或許這個需求不是那麼大. 但是覺得好玩就把它記錄下來. 首先你要先下載 RendezvousProxy 軟體. 建議使用 Java 版本. Binary 在我的 Leopard 似乎不能用. 或是你也可以下載原始碼自己編譯. 我沒自己編譯過, 如果你成功編譯歡迎向大家分享. 再來, 你需要建立個 ssh 通道(tunnel). …
[root@LMSERVER ~]# lmstat -a —————————————————————— lmstat – Copyright (c) 1989-2006 Macrovision Europe Ltd. and/or Macrovision Corporation. All Rights Reserved. Flexible License Manager …
如何分割與建立超過8TB的檔案系統 [root@SERVER ~]# parted /dev/sdd GNU Parted 1.8.1 Using /dev/sdd Welcome to GNU Parted! Type ‘help’ to view a list of commands. …
用wget指令. 複寫某個檔案 wget http://www.samtseng.co.cc/known_hosts -O ~/.ssh/known_hosts
之前為了阻斷無聊的駭客對我的機器猜密碼. 寫了一隻回報 script. 放在 cron裡面每天回報 [root@samtseng ~]# crontab -e 0 0 * * * /etc/failedssh [root@samtseng ~]# cat /etc/failedssh #/bin/bash grep “Failed …
From : http://chengavin.blogspot.com/2008/10/mpich-and-gfortran.html export FC=”gfortran -O2 -ff2c -fno-underscoring ” export F77_GETARGDECL=” ” export CC=”gcc -O2 ” export CXX=”g++ -O2 ” export F90=”gfortran …
在使用 Windows XP 的使用者應該最常聽到”重灌”這兩個字. 沒錯吧? 在我之前使用 Windows 大概養成了每半年重灌電腦的好習慣. 主要是電腦用一段時間都會有些垃圾機碼(regedit), 嚴重拖慢系統速度. 真的是很惱人. 撇開使用 ghost 備份還原軟體來說, 重灌 Windows 大約要花掉一整天才有辦法設定出和以前幾乎一樣的環境. 如果使用 ghost 還原且在重新安裝前沒備份的話. 也還是沒辦法把所有的設定還原到最近一次使用的環境. 反正就得花時間慢慢設定出自己比較習慣的操作環境. …
master 的 /etc/named.conf : zone “samtseng.co.cc” { type master; file “samtseng.co.cc.zone”; allow-transfer { xxx.xxx.xxx.xxx; // slave dns ip address }; }; zone …
#!/bin/bash echo -n “Enter your name > ” read txtname echo “Hi! $txtname” 上面的 shell script 會接收使用者的輸入. 然後在印出 Hi! 使用者. 如果想要寫個 script …