Currently browsing tag

tips, Page 11

gnuplot notes

gnuplot> set xlabel “Matrix size” // Add a label for the X Axis gnuplot> set ylabel “MFlops” // Add a label for …

如何聽遠端 iTunes 的音樂?

如何聽遠端 iTunes 的音樂? 或許這個需求不是那麼大. 但是覺得好玩就把它記錄下來. 首先你要先下載 RendezvousProxy 軟體. 建議使用 Java 版本. Binary 在我的 Leopard 似乎不能用. 或是你也可以下載原始碼自己編譯. 我沒自己編譯過, 如果你成功編譯歡迎向大家分享. 再來, 你需要建立個 ssh 通道(tunnel). …

檢查 licenses 使用狀態

[root@LMSERVER ~]# lmstat -a —————————————————————— lmstat – Copyright (c) 1989-2006 Macrovision Europe Ltd. and/or Macrovision Corporation. All Rights Reserved. Flexible License Manager …

wget overwrite file

用wget指令. 複寫某個檔案 wget http://www.samtseng.co.cc/known_hosts -O ~/.ssh/known_hosts

終於讓我找到好用的工具 DenyHosts

之前為了阻斷無聊的駭客對我的機器猜密碼. 寫了一隻回報 script. 放在 cron裡面每天回報 [root@samtseng ~]# crontab -e 0 0 * * * /etc/failedssh [root@samtseng ~]# cat /etc/failedssh #/bin/bash grep “Failed …

MPICH and gfortran

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 還原且在重新安裝前沒備份的話. 也還是沒辦法把所有的設定還原到最近一次使用的環境. 反正就得花時間慢慢設定出自己比較習慣的操作環境. …

DNS master / slave 架設

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 …

如何用 bash 與使用者互動?

#!/bin/bash echo -n “Enter your name > ” read txtname echo “Hi! $txtname” 上面的 shell script 會接收使用者的輸入. 然後在印出 Hi! 使用者. 如果想要寫個 script …