Linux: October 2005 Archives

Linux hostid

| | Comments (0)

Linux 的 hostid 的算法是用 $HOSTNAME 反查, 得到 IP, IP 四個數字轉 Hex, 再做 2143 順位的轉換
例如: IP 是 192.168.0.1
轉 Hex 是 c0a80001, 再做 2143 順位轉換得 a8c00100
下面這段 script 相當於取 hostid
IP=`gethostip $HOSTNAME | awk '{print $NF}'`
echo ${IP:2:2}${IP:0:2}${IP:6:2}${IP:4:2}

FreeBSD, Linux Serial Console

| | Comments (1)

Serial Console 在沒有 VGA 的環境下很好用
FreeBSD 的 Serial Console 設定
在 /boot/loader.conf 加上 'console="comconsole"
編輯 /etc/ttys 的 ttyd0 那行
ttyd0 "/usr/libexec/getty std.9600" vt100 on secure
很簡單吧, Kernel 不要忘記加上 COM Port 的支援 (device sio0)
ref. FreeBSD Handbook: 21.6 Setting Up the Serial Console

Linux 的 Serial Console 設定
有 Boot Loader, Kernel 參數, inittab 三個地方要設
GRUB 為例, 在 menu.lst 前加入
serial --unit=0 --speed=9600
terminal serial
在 kernel 那一行的最後加上 console=tty0 console=ttyS0,9600
在 /etc/inittab 最後加上 s0:2345:respawn:/sbin/agetty ttyS0 115200 linux
ref. Using GRUB via a serial line, Linux Serial Console

支援 Serial 的 Terminal 軟體, X 下有不少, for Windows 最基本的就是 Windows 附的超級終端機,
商業軟體 SecureCRT, PowerTerm 都不錯,
也是有 Open Source 如 RealTerm, 但功能較差.

凱莉手工坊

凱莉手工坊

October 2009

Sun Mon Tue Wed Thu Fri Sat
        1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31

About this Archive

This page is a archive of entries in the Linux category from October 2005.

Linux: May 2005 is the previous archive.

Linux: November 2005 is the next archive.

Find recent content on the main index or look in the archives to find all content.