問題是從一個Linux/Windows共享的FAT分區上所有的CVS目錄在linux下都變成了小寫開始的。
所幸原因和解決方法都簡單在一問一答中。請參考:
同時把答案抄在這里備份一下:
Try using the shortname option:
mount -t vfat -o shortname=[lower|win95|winnt|mixed] /dev /mountpoint
(choose one of the options, I would go with winnt or mixed first, the default is lower
------
忍不住牢騷一句:這個blog系統在Firefox下用戶體驗真是suck。
一個比較老的系統了, uname的結果是
Linux?pc?2.4.21-4.EL?#1?Fri?Oct?3?18:13:58?EDT?2003?i686?i686?i386?GNU/Linux
安裝的yum版本是 yum-2.0.7-1.noarch.rpm.
找的源是針對Centos3的, 請參考:
Centos-3 is a distribution
that rebuilds the Enterprise Linux 3 release by taking the Source
RPMs and rebuilding them with full binary compatibility to the
upstream RPM packages of the EL3 line (see the project website
for more details about this distribution:
www.centos.org).
Centos 3 represents a rebuild of the latest updated release of Enterprise Linux 3用的是DUKE大學提供的source, 參見
Packages for Centos-3:
[duke-base]
name=Linux@DUKE?Centos?$releasever?-?$basearch?-?Base
baseurl=http://install.linux.duke.edu/pub/linux/base/centos-3/$basearch/
gpgcheck=1
[updates]
name=Linux@DUKE?Centos?$releasever?-?$basearch?-?Updates
baseurl=http://install.linux.duke.edu/pub/linux/updates/centos-3/$basearch/
gpgcheck=1
[duke-distrib]
name=Linux@DUKE?Freely?Distributable?add-on?packages?for?Centos?$releasever?-?$basearch
baseurl=http://install.linux.duke.edu/pub/linux/add-on/distrib/centos-3/$basearch/
gpgcheck=1
需要導入的key參見
Using Signature Checking in Yum :
但好像其中i386下的一個key是錯誤的,最后導入的key是這樣的:
rpm?--import?http://install.linux.duke.edu/pub/linux/base/centos-3/i386/RPM-GPG-KEY-CentOS-3
rpm --import http://install.linux.duke.edu/pub/linux/add-on/distrib/Linux-at-DUKE-GPG-KEY
最后,如果業務有需要,還是購買正式的RHEL服務吧,呵呵,或者用其他免費的版本.
問題:Freemind在編碼設置為zh_CN.UTF8的Linux下運行時中文字顯示為方塊(或無顯示)
其實也就是一個font的問題。Google了一圈,找到一些在JRE中修改font.properties的方法。但是都沒有解決問題。
最后在Sun的網站上找到了解決辦法
Internationalization FAQ,很簡單:
Since the mapping from logical fonts to physical fonts is
implementation dependent, the answer varies.
For Sun's JRE 5.0, the
easiest way is to install the font into the JRE's lib/fonts/fallback
directory - it will be automatically added as a fallback font to all
logical fonts for 2D rendering.
還有一些關于font.properties的解釋:
For AWT, you may need to modify a
font configuration file - see the web page
Font
Configuration Files. For earlier versions of Sun's JRE, you need
to edit
font.properties files - see the Font.properties Files
documents for
J2SE 1.4.2
and
J2SE 1.3.1.
Note however that editing these files is a modification of the JRE,
and Sun does not support modified JREs. For other implementations,
see their respective documentation.