Changes between Version 3 and Version 4 of jazz/09-01-12


Ignore:
Timestamp:
Jan 12, 2009, 10:53:43 PM (16 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified jazz/09-01-12

    v3 v4  
    1111   * [http://blog.roodo.com/candyz/archives/2040433.html Candyz 寫的 Fedora RPM 套件打包入門]
    1212   * [http://candyz.pixnet.net/blog/post/942871 留意 Fedora Core 5 以後不能用 root 打包?!]
     13 * 修改 DRBL Client 的 inittab 來連結 rdesktop
     14{{{
     15#!diff
     16--- /etc/inittab        2007-11-26 01:17:20.000000000 +0800
     17+++ inittab     2007-12-01 17:13:09.000000000 +0800
     18@@ -51,1 +51,1 @@
     19-1:2345:respawn:/sbin/getty 38400 tty1
     20+1:2345:respawn:/usr/bin/xinit /root/rdesktop.sh 38400 tty1
     21}}}
     22   * 最簡單的 /root/rdesktop.sh 如下,請自行填寫 IP 跟使用者帳號密碼
     23{{{
     24#!/bin/bash
     25while [ -n 1 ]; do /usr/bin/rdesktop ${TERMINAL_SRV_IP} -f -u ${LOGIN_ID} -p ${LOGIN_PASSWORD} ; done
     26}}}