CVS Server Installation on Linux

from : http://www.uta.edu/oit/how-to/docs/cvs.php

CVS 架設參考資料

 (閱讀全文)


批次轉碼工具 convmv

在 Linux 下,將所有的檔案名稱批次轉碼工具
http://j3e.de/linux/convmv/

用法
convmv -f big5 -t utf-8 -r --notest /home/user1

說明 將 /home/user1 下所有的檔案名稱由 big5 編碼轉為 utf-8


Fedora core3 自動載入 USB 設定

http://fedoranews.org/krishnan/tips/tip040.shtml

2004-02-11 Fedora Tips 40:
Reading and writing files to USB-key can be just two clicks away if you are using Gnome. No "mount" or "umount" commands. To enjoy 2-click method, you've got to follow just two easy steps.

1. as root (or through "$su -l" from a user account) with Vim, Gedit or any other text-editor add a line to your /etc/fstab file

/dev/sda1 /mnt/usbkey vfat user,iocharset=utf8,umask=0,sync,quiet,exec,codepage=866,noauto 0 0
2. as root (or through "$su -l" from a user account) create a directory in /mnt/ file
#mkdir /mnt/usbkey
In fact it doesn't matter which step goes first.

Now reboot, so that your changes take effect.

You are about to enjoy Gnome 2-click USB method.

Plug in your usb-key right click (1st click) on desktop, in dropdown menu choose "disks". Here you go - see usbkey? Choose it by left-clicking (2nd click) and on your desktop there will be a nice icon of a USB drive. Work with it, like you would do with a regular folder. To unmount USB-key, right-click on that icon again and choose "unmount". As easy as that. Now any time you want to use your flash drive - plug, right-click & left-click to choose the drive. - submitted by Sergey Samoylov


在Fedora core3 下安裝字體


* 字体安装
将Microsoft Windows下的相应TrueType拷贝到Fedora相应目录。我是放在/usr/share/fonts/windows目录下。
然后以root执行下面的命令

cd /usr/share/fonts/windows
ttmkfdir .
cp fonts.scale fonts.dir
chkfontpath --add /usr/share/fonts/windows


參考





Install Fedora on ASUS M2N notebook(M2474PDV)

from  http://jouston.no-ip.com/archives/000055.html

In this short HOWTO, we have few tasks: (In fact, you have to do a lot of things...)
1. Install Fedora on this elegant business notebook.
2. Enabling ACPI for sound card, pc card and power management support.
3. Enabling build-in ICH software modem
4. Download synaptic driver from http://tuxmobil.org/touchpad_driver.html
5. Enabling Intel Wireless Pro 2100 802.11b build-in wireless mini-pci card

 (閱讀全文)


讓 mozilla 印得出中文

在 Linux 環境下,要印出中文字須修改

/usr/local/mozilla/defaults/pref/unix.js

372 pref("print.postscript.nativefont.x-western", "");
373 //pref("print.postscript.nativefont.zh-CN", "");
374 //pref("print.postscript.nativefont.zh-TW", "");
375 pref("print.postscript.nativefont.zh-CN", "BousungEG-Light-GB-GB-EUC-H");
376 pref("print.postscript.nativefont.zh-TW", "ShanHeiSun-Light-B5-H");
377 pref("print.postscript.nativecode.zh-CN", "gb2312");
378 pref("print.postscript.nativecode.zh-TW", "big5");