2008年3月31日 星期一
Matlab version 2
Enabling Linux Binary Compatibility
The first thing we need to do is install linux binary compatibility. It's likely that you have it installed already. You can check with the following command:
pkg_info | grep linux_base
If you have it installed you will see a line similar to this:
linux_base-fc-4_9 Base set of packages needed in Linux mode (for i386/amd64)
If you have it installed please skip the next commands for installing it. Otherwise, run the following to install linux binary compatibility.
cd /usr/ports/emulators/linux_base-fc4
make install clean
Either way add the following line to /etc/rc.conf.
linux_load=YES
In order to start compatibility, use the following command:
kldload linux.ko
That will be run automatically everytime you boot with the line we added to rc.conf.
Now add the following line to /etc/fstab.
linprocfs /compat/linux/proc linprocfs rw 0 0
Now run the following two commands:
kldload linprocfs
mount /compat/linux/proc
From now on that will be done for you automatically.
Installing Matlab
Now we need to install linux-java. First you'll have to download the linux-java binary from Sun. Accept the license agreement, and download the file j2sdk-1_4_2_10-linux-i586.bin or its closest equivalent. Once downloaded, move the file to /usr/ports/distfiles/. Then we can install linux-java:
cd /usr/ports/java/linux-sun-jdk14
make install clean
Now we can move on to installing MATLAB. When you mount the cds you will have to mount them with executable permissions. Or you can follow my method of copying the contents of the cds to disk, and run the install from there. Either way will work, but I'll walk you through doing it the same way that I did.
cd /usr
mkdir mat mat2 mat3
Now copy all of the contents to those respective directories (mat for cd1, mat2 for cd2, etc).
cd /compat/linux/usr/
mkdir local
cd local
mkdir matlab
cd matlab
mkdir etc
cd etc
That was a slight pain. At this point you will want copy your prepared license.dat file to etc.
cp license.dat /compat/linux/usr/local/matlab/etc
Now that the license is prepared we're ready to begin the install.
cd /compat/linux/usr/local/matlab
/compat/linux/bin/sh /usr/mat/install
Modify that command if you are installing directly off of the cd. For the install itself you will want to take the default installation directory (the directory you are currently in). The rest of the installer is self explanatory. I'll assume the install was successful.
cd /compat/linux/usr/local/matlab/etc
ln -s lmboot /usr/local/etc/lmboot_TMW
ln -s lmdown /usr/local/etc/lmdown_TMW
We just made a few links for files that will be referenced in our license manager script. Now we'll get that script going.
cp rc.lm.glnx86 /usr/local/etc/rc.d/flexlm.sh
cd /usr/local/etc/rc.d/
chmod +x flexlm.sh
vi flexlm.sh
That will give us a good template for the file. We just need to edit a few paths. In the end your file should look like this:
#!/bin/sh
case "$1" in
start)
if [ -f /usr/local/etc/lmboot_TMW ]; then
/compat/linux/bin/sh /usr/local/etc/lmboot_TMW -u xaenn && echo 'MATLAB_lmgrd'
fi
;;
stop)
if [ -f /usr/local/etc/lmdown_TMW ]; then
/compat/linux/bin/sh /usr/local/etc/lmdown_TMW > /dev/null 2>&1
fi
;;
*)
echo "Usage: $0 {start|stop}"
exit 1
;;
esac
exit 0
You will want to change xaenn to the appropriate username for your system.
/usr/local/etc/rc.d/flexlm.sh start
For the first time we need to start it manually, but it will happen at startup automatically from now on. Right now we could use MATLAB, but it's a bit cumbersome to invoke, so let's write a quick script.
vi ~/bin/matlab
Add the following lines:
#!/bin/sh
/compat/linux/bin/sh /compat/linux/usr/local/matlab/bin/matlab
As per the FreeBSD Handbook, depending on your version of emulators/linux_base, you may need to edit the matlab script.
vi /compat/linux/usr/local/matlab/bin/matlab
Edit the following line
if [ `expr "$lscmd" : '.*->.*'` -ne 0 ]; then
and replace it with
if test -L $newbase; then
And one final note, sound support has been hit or miss for me. Sometimes it works, and other times it won't. As an alternative you may use the wavwrite function, and then play the output from mplayer. It's not ideal, but it works. Finally, you'll have something nice like this:
Matlab version 1
Антон Хохлов orvind at mail.ru
Tue Aug 29 09:52:38 UTC 2006
Previous message: Current unassigned doc problem reports
Next message: Link Request
Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
--------------------------------------------------------------------------------
Hi,
I'm a newby in this mailing list so I'm sorry if something is wrong with my letter.
Yesterday I tried to install Matlab 7.0 with the help of the correspondent
FreeBSD handbook's section. I've found out that the section is incomplete
and allows to install and run Matlab with the -nojvm option enabled
which disables X-based gui and some other features.
In addition for my work I need a FEMLAB toolbox for Matlab
(since some time ago it is called COMSOL Multiphysics toolbox),
but I could not find any manual for that anywhere in the internet.
So I wrote a short instruction of how to do that. I hope someone could fix
my english mistakes and append the instruction to FreeBSD handbook.
Installing Matlab 7.0
1. Follow the steps 10.5.1,10.5.2 and 10.5.4 of the FreeBSD handbook (Installing Matlab section). It seems you don't need to perform step 10.5.5 when installing Matlab 7.0. Don't touch $MATLAB/sys/java/jre/glnx86 as it is described in 10.5.3! Since now you can run Matlab in the text mode only (option -nojvm will be enabled automatically when Matlab starting).
2. In order to run Matlab GUI you need to install the following ports (or binary packages):
linux_base, linux-glib2, linux-xorg-libs, linux_dri and linux-openmotif.
3. Delete all files from $MATLAB/sys/os/glnx86 and $MATLAB/sys/opengl/lib, type as root:
ln -s /compat/linux/usr/X11R6/lib/libXm.so.3 $MATLAB/sys/os/glnx86/libXm.so.2
ln -s /compat/linux/usr/X11R6/lib/libGL.so.1 $MATLAB/sys/opengl/lib/glnx86/libGL.so
ln -s /compat/linux/usr/X11R6/lib/libGLU.so.1 $MATLAB/sys/opengl/lib/glnx86/libGLU.so
ln -s $MATLAB/sys/opengl/lib/libMesaGL.so $MATLAB/sys/opengl/lib/glnx86/libGL.so
ln -s $MATLAB/sys/opengl/lib/libMesaGLU.so $MATLAB/sys/opengl/lib/glnx86/libGLU.so
4. Done!
Note, after completing step 3 check that created links point to the existent libraries. If some links are broken, go to your /compat/linux/usr/X11R6/lib folder and fix them by creating symbolic links to your version of libXm.so.*, libGL.so.* and libGLU.so.*
Installing Femlab 3.1
1. Execute Femlab installer with
/compat/linux/bin/sh ./install
or just with
./install
and complete the installation process.
Point to Matlab installation path when asked (if Matlab is needed).
2. Open $FEMLAB/bin/femlab and find the line containing Linux*. Add FreeBSD* there. It's 231st line for me.
Before:
linux*|Linux*)
After:
linux*|Linux*|FreeBSD*)
If you need to run Femlab standalone (without connection to Matlab), you may skip steps 3-4 and go to 5.
3. Fetch java3d-sdk-1.3.1-linux-i386.bin or later version from anywhere. I've installed java/java3d port first and then copied the file from /usr/ports/distfiles. Unpack the file (just run with /bin/sh and accept the agreement), copy contents of created jre/lib folder to $MATLAB/sys/java/jre/glnx86/jre1.5.0/lib.
4. Check that your hostname is correct and that the correspondent line in
/etc/hosts exist, add the line in opposite case.
5. Create Femlab startup script in /usr/local/bin/
#!/bin/sh
/compat/linux/bin/sh $WHERE_FEMLAB_IS_INSTALLED/bin/femlab "$@"
6. Enjoy ;)
Yours,
Anton Khokhlov
2007年10月2日 星期二
如何遠端使用 X window 環境下的中文 terminal
解答:我們提供了crxvt這個中文終端機程式,以下以X server端(您的電腦)在Win32環境下使用X-win32為例 ,說明使用的步驟 :
登入工作站,將 /usr/local/X11R6/lib/X11/fonts/chinese/et24k.pcf.Z 拷貝到你的目錄下,將之解壓縮成et24k.pcf,再下載回你自己的電腦。
假設你的X-win32裝在c:\xwin32,將下載回來的et24k.pcf放到c:\xwin32\fonts\misc
編輯c:\xwin32\fonts\misc\fonts.dir,加入以下一行et24k.pcf et24k
在你的電腦上執行X-win32。
在工作站上執行"setnev DISPLAY yourIP:no"(no為顯示編號,通常用0)
在工作站執行crxvt,若成功便可在你的電腦上看到新開出的中文視窗。
如欲使用中文輸入法,可輸入指令"xcin -fnb et24k"
21.22. X-win32 如何安裝中文字型?
通常筆者都會使用 kcfonts,因為跟預設的系統比較合。
首先在 chinese/kcfonts 安裝好後, 將 /usr/X11R6/lib/X11/fonts/local/ 底下的檔案, 全都搬移到 C:\Program Files\StarNet\X-Win32 5.1\Lib\Fonts\ 底下,然後用 Font -> Add... -> local\,接著 Make FONTS.DIR, 並 Edit Alias File...:kc12x24 -kc-fixed-medium-r-normal--24-170-100-100-c-120-iso8859-1
kc15f -kc-fixed-medium-r-normal--16-160-72-72-c-160-big5-0
kc24f -kc-fixed-medium-r-normal--24-240-100-100-c-240-big5-0
kc8x15 -kc-fixed-medium-r-normal--15-170-100-100-c-80-iso8859-1
taipei16 -kc-fixed-medium-r-normal--16-160-72-72-c-160-big5-0
taipei24 -kc-fixed-medium-r-normal--24-240-100-100-c-240-big5-0
或是用 ports/x11-fonts/getbdf , getbdf -font "-dynalab-mingliu-medium-r-normal--16-*-*-*-c-*-big5-0" > mingliu16.bdf 來產生 16pt 的字型, 然後依序產生所需要用的字型。
在 Windows 底下也可以抓取 ttf2bdf.exe,將 C:\Windows\Fonts\mingliu.ttc 轉成 bdf,然後依照上面的方法也是可以使用的。
2007年8月3日 星期五
X window 字型
-
安裝 outta-port/mingliu 繁體中文字型。
# cd /usr/ports/chinese
# fetch http://netlab.cse.yzu.edu.tw/~statue/outta-port/mingliu.shar
# sh mingliu.shar
# cd mingliu
# make MASTER_SITE_OVERRIDE= install clean接著編輯 /etc/XF86Config, 在 Section "Module" 區段, 加入 Load "xtt"。
Section "Module"
:
Load "xtt"
EndSection在 Section "Files" 區段, 加入 FontPath "/usr/X11R6/lib/X11/fonts/TrueType/" 與 FontPath "/usr/X11R6/lib/X11/fonts/local/"。
Section "Files"
:
FontPath "/usr/X11R6/lib/X11/fonts/TrueType/"
FontPath "/usr/X11R6/lib/X11/fonts/local/"
EndSection先檢查 fontconfig 的字型設定是否正確, 以 fc-list :lang=zh-tw 檢查是否有安裝繁體字型, 或是 fc-list :lang=zh-cn 檢查是否有安裝簡體字型, 如果確定字型已經放到 fonts.conf 指定的目錄下, 試著手動執行 fc-cache -f -v 後再試試看。
接著檢查 X11 Core Font 的字型設定是否正確, 進入 X Window 後,以 xlsfonts | grep big5 檢查是否有安裝繁體字型, 或是 xlsfonts | grep gb2312 檢查是否有安裝簡體字型, 如果確定字型已經放到 XF86Config 指定的目錄下, 試著手動執行 xset +fp /usr/X11R6/lib/X11/fonts/TrueType/ 後再試試看。
請參考 輸出字型 一節。
2007年7月21日 星期六
[轉錄]为FreeBSD中的Firefox安装Flash插件
a) install www/linuxpluginwrapper
b) install www/linux-flashplugin7
c) cp /usr/local/share/examples/linuxpluginwrapper/libmap.conf-FreeBSD6 /etc/libmap.conf
d) ln -s /usr/local/lib/npapi/linux-flashplugin/* /usr/local/lib/firefox/plugins/
[轉錄]功能強悍的 Window Manager - IceWM!
雖然 GNU/Linux 一直給人生人勿近的印象,但別就這樣以為在 GNU/Linux 上就沒有好用的圖形介面。事實上,如果不要抱持著太深的偏見,GNU/Linux 的桌面環境只要稍加調校就能夠讓人驚豔不已。
X Window System 簡介
X Window System 是在 Linux 上,類似 Microsoft Windows 的一個圖型介面環境,它可以簡稱為 X Window、X11 或 X,其實它的年紀可是比 Microsoft Windows 還大呢!
在 X Window System 的架構裡,X Client 是那些在 X 上執行的應用程式,它會呼叫 Xlib,Xlib 使用 X Protocol 和 X Server 溝通。而 X Server 則是負責控制硬體,依 X Client 的請求而將結果顯示在使用者螢幕上,因此如果將 X Server 視為本機的顯示服務程式也不為過。而夾在中間的則是 Window Manager,Window Manager 管理包含視窗裝飾在內的許多 X Resources,比如說它會決定視窗的位置、管理視窗的操作及視窗的大小、決定視窗邊框的樣式及一些使用者和視窗的互動方式等等。
註一: 以上 Window Manager 的說明文字經過 Jserv 前輩的指正。感謝!
註二: Jserv 前輩表示他會寫一篇釐清 Window Manager 觀念的文章。敬請期待!
IceWM 簡介
IceWM 是一個非常輕巧快速且功能齊全的 Window Manager,在外觀及操作上極為類似 Motif、OS/2 及 Microsoft Windows。如果您受夠了肥大的 KDE 或是 GNOME,那麼 IceWM 可能會是您的最佳選擇。
安裝 IceWM
在 Debian GNU/Linux 裡安裝 IceWM 絕非難事,只要一行指令就搞定了:
apt-get install icewm
如果您同時在您的系統上安裝了多個 Window Manager,那麼請修改系統的設定,讓 X Window 啟動時呼叫 IceWM:
update-alternatives --config x-session-manager
update-alternatives --config x-window-manager
或者您也可以在您的 ~/.xinirc 中自行指定。例:
#!/bin/sh
# $Xorg: xinitrc.cpp,v 1.3 2000/08/17 19:54:30 cpqbld Exp $
# /etc/X11/xinit/xinitrc
#
# global xinitrc file, used by all X sessions started by xinit (startx)
xset +dpms
xset dpms 300 480 600
export LC_CTYPE=zh_TW.UTF-8
export LC_MESSAGES=zh_TW.UTF-8
export XMODIFIERS="@im=gcin"
export GTK_IM_MODULE=gcin
/usr/bin/gcin &
icewm-session
飛快!
IceWM 給人的第一印象就是:快!快!快!因為它的程式碼不大,並且對於系統資源也要求不高,官方網站說只要 X 可以跑,IceWM 就可以跑,就算是是 386 機器也行。在此可以約略得知 IceWM 是如何的輕巧快速了。
相容性
因為 IceWM 本身預設上並不是專為其它 Desktop 環境所設計的,所以它的相容性極佳,不管是 KDE 或 GNOME 多可以在 IceWM 上執行無誤。IceWM 同時也支援了 Desklet(系統工具匣)、透明底圖... 等等常見的功能,所以有不少人乾脆捨 KDE/GNOME,直接拿 IceWM 來當桌面使用了。
簡易的操作介面
由於 IceWM 在外觀及操作上刻意模仿 Motif、OS/2 及 Microsoft Windows,所以由 Microsoft Windows 跳槽過來的人們在操作 IceWM 時就免於重新適應之苦了。
比如說,Microsoft 上的【程式集列表】、【快速啟動列】、【系統工具列】、【小時鐘】等等,在 IceWM 上都可以看到。另外,像是在應用程式的標題列上點兩下是視窗放大,再點兩下則是還原,這些操作方式在 IceWM 裡都可以見到。
另外,修改您的 ~/.icewm/preferences 如下:
# Support win95 keyboard keys (Penguin/Meta/Win_L,R shows menu)
Win95Keys=1 # 0/1
# Auto hide task bar after delay
TaskBarAutoHide=1 # 0/1
那麼,在 IceWM 裡按下【Win】這個鍵時,下方的系統工具列就會跳出來,而等上一定的時間後它又會縮回去,而這和 Microsoft Windows 的操作也是極為類似的。
虛擬桌面
在預設上,IceWM 會啟動 4 個虛擬桌面,這對於習慣同時開啟多個應用程式的人們可以說是難得的福音。以筆者為例,個人喜歡把日常事務擺在第一個桌面裡、root 的工作擺在第二個桌面,第三個桌面擺的則是遠端的 SSH、rdesktop、xvncviewer 之類的遠端操作環境,第四個桌面擺的則是一些在背景執行的程式,像是 XMMS 或是用來編譯程式的 chroot 環境等等。這樣的分門別類後將有助於增加工作效率。像是在切換至第二個桌面時,直覺上就知道這個桌面裡擺的全是以 root 權限執行的程式,當然會更加小心謹慎得操作,這樣多多少少能避免一些無心之過所導致的災難性後果。
IceWM 的虛擬桌面
您可以修改您的 ~/.icewm/preferences:
WorkspaceNames=" 1 ", " 2 ", " 3 ", " 4 "
來自訂虛擬桌面的名稱及數量。
另外,請同時修改您的 ~/.icewm/preferences 如下:(因為它和 XCIN 的快捷鍵重覆了)
KeySysWorkspace1="Super+F1"
KeySysWorkspace2="Super+F2"
KeySysWorkspace3="Super+F3"
KeySysWorkspace4="Super+F4"
之後,【Win】+【F1】就會直接跳至第一個虛擬桌面,【Win】+【F2】就會直接跳至第二個虛擬桌面... 同時,您還可以使用【Ctrl】+【Alt】+【←】和【Ctrl】+【Alt】+【→】直接切換至 上/下一個虛擬桌面。或是按下【Ctrl】+【Alt】+【Shift】+【←】和【Ctrl】+【Alt】+【Shift】+【→】直接將應用程式移至上/下 一個虛擬桌面。或是按下【Ctrl】+【Alt】+【Shift】+【1】直接將應用程式移至第一個虛擬桌面。在操作 IceWM 時這些快捷鍵將會是很方便的小技巧。
將視窗『釘』起來
在操作 GIMP 時,會不會覺得它的工具視窗常常被正在操作中的前景視窗蓋住實在不怎麼好用?在 IceWM 裡,您可以將視窗『釘』在別的視窗之上,它就永遠不會被別的視窗蓋住了:
把 GIMP『釘』在其它視窗之上
其它 Linux 桌面的特性
除了虛擬桌面之外,一些 Linux 桌面常見的特性,像是:
*
將視窗捲起(【Alt】+【F12】)
*
隱藏視窗(【Alt】+【Shift】+【F12】)
*
全螢幕顯示(【Alt】+【F11】),當應用程式不支援全螢幕顯示時這可是超好用的。
*
將所有視窗縮至工具列(【Alt】+【Shift】+【F9】)
*
顯示桌面(【Alt】+【Ctrl】+【d】)
等等,都可以在 IceWM 裡找到。而這些快捷鍵都可以在 ~/.icewm/preferences 中加以修改:
KeyWinRollup="Alt+F12"
KeyWinHide="Alt+Shift+F12"
KeyWinFullscreen="Alt+F11"
KeySysMinimizeAll="Alt+Shift+F9"
KeySysShowDesktop="Alt+Ctrl+d"
快捷鍵
IceWM 還有一個讓人津津樂道的優點,就是它使用了超多的快速鍵組合,幾乎可以取代滑鼠的所有動作,比如說:
*
【Alt】+【F4】= 關閉視窗
*
【Alt】+【F6】= 下一個視窗
*
【Alt】+【Shift】+【F6】= 上一個視窗
*
【Alt】+【F9】= 縮至最小
*
【Alt】+【F10】= 放至最大
*
【Alt】+【空白鍵】= 呼叫視窗選單
*
【Alt】+【Tab】= 顯示視窗列表並切換至下一個視窗
*
【Alt】+【Shift】+【Tab】= 顯示視窗列表並切換至上一個視窗
*
【Ctrl】+【Alt】+【Del】= 系統關機/登出/鎖定/重新啟動 IceWM 對話視窗
*
【Ctrl】+【Alt】+【Esc】= 視窗列表
*
【Ctrl】+【Alt】+【空白鍵】= 快速啟動。可以用來直接執行應用程式。
對於一些鍵盤快手而言,IceWM 提供的這些快捷鍵實在是非常方便!當然了,這些快捷鍵全都可以自訂,您可以在 ~/.icewm/preferences 依自己的喜好來任意指定這些快捷鍵組合。
自訂呼叫應用程式的快捷鍵
除了以上 IceWM 所內建的快捷鍵之外,您還可以在 ~/.icewm/keys 中自行指定呼叫應用程式的快捷鍵。比如說:
key "Super+t" x-terminal-emulator
那麼當您按下【Win】+【t】時,系統就會呼叫 x-terminal-emulator 這個應用程式了。
當然了,我們可以稍加變化:(請安裝 aumix 套件)
key "Super+Up" aumix -w +5
key "Super+Down" aumix -w -5
key "Super+Right" aumix -w +1
key "Super+Left" aumix -w -1
那麼我們就可以用【Win】+【↑】【↓】【←】【→】來直接控制音量大小了。
類似的手法:
key "Super+Prior" xmms -r
key "Super+Next" xmms -f
key "Super+Insert" xmms -t
key "Super+Delete" xmms -q
我們就可以用【Win】+【PageUp】【PageDown】來控制 XMMS 播放上一首、下一首,用【Win】+【Insert】來讓 XMMS 暫停/開始 播放,或是用【Win】+【Delete】來關閉 XMMS。
另外,我們還可以使用:(請安裝 xmacro 套件)
key "Menu" /bin/sh -c "echo -e "ButtonPress 2nButtonRelease 2n" | xmacroplay "$DISPLAY""
來用【Menu】這個鍵來模擬按下滑鼠中鍵貼上的動作。
其實只要花點心思,IceWM 的快捷鍵是可以千變萬化的!
系統工具列上的小圖示
IceWM 在系統工具列上預設就有【現在時間】、【即時 CPU 負載】、【網路即時流量】、【監看 POP、IMAP 的 E-mail】等小圖示,所以您只要一按下【Win】這個鍵,您就可以直接由系統工具列得知這些即時資訊:
IceWM 的系統工具列
當然了,如果您不喜歡這些圖示,您可以由 ~/.icewm/preferences 把這些功能關閉。如上圖中,就沒有【監看 POP、IMAP 的 E-mail】這個圖示。
在 X Window 上眾多的 Window Manager 中,還找不到幾個有這些貼心的功能的呢!
快速啟動列:
和 Microsoft Windows 類似的,IceWM 也有快速啟動列:
IceWM 的快速啟動列
方法是修改 ~/.icewm/toolbar 如下:
prog Mozilla mozilla /bin/sh -c 'LC_ALL=zh_TW.UTF-8 mozilla'
prog XTerm xterm crxvt-big5
prog Konqueror kde konqueror
這個檔案的格式為:
#
顯示名稱
圖示
指令
prog Mozilla mozilla /bin/sh -c 'LC_ALL=zh_TW.UTF-8 mozilla'
修改後按下【Ctrl】+【Alt】+【Del】重新啟動 IceWM 即可生效。
設定按下【Ctrl】+【Alt】+【Del】時所執行的命令
在 IceWM 裡,按下【Ctrl】+【Alt】+【Del】後,會出現以下視窗:
在 IceWM 裡按下【Ctrl】+【Alt】+【Del】時所出現的畫面
您必須在 ~/.icewm/preferences 中加以修改:
# Command to shutdown the system
ShutdownCommand="sudo /sbin/shutdown -h now"
# Command to reboot the system
RebootCommand="sudo /sbin/shutdown -r now"
# Command to lock display/screensaver
LockCommand="xlock"
並安裝設定好 sudo 及 xlockmore/xlockmore-gl 套件,這些按鈕才能有作用。
自訂佈景主題
IceWM 也可以讓您自訂佈景主題,您可以把您的佈景主題放到 ~/.icewm/themes 下,然後修改 ~/.icewm/preferences:
Theme="icedesert/default.theme"
其中的 icedesert 為您的佈景主題目錄。
在 IceWM 裡,您可以修改您的滑鼠遊標圖示、視窗標題、視窗按鈕、邊框、桌面背景... 等等。請參考 IceWM Themes Howto page 來取得更多設定佈景主題的技巧。
易於設定:
IceWM 的設定檔十分簡易,大多只要看一下設定檔上的簡短說明就會設定了,所以雖然有不少的 IceWM 的圖形介面設定程式,但多數人還是選擇直接修改它的設定檔。像 IceWM 的官方網頁上面就寫:
如果您想尋找什麼選項的話,您可以直接查看 ~/.icewm/preferences。
它經過了精心的配置,您應該輕易得就可以找到您所尋找的東西-
比如說,您想改變一些 quickswitch 選項,只要試著在偏好檔尋找 "QuickSwitch" 即可。
IceWM 功能強大卻還能保持輕巧快速,加上又如此易於設定,實在是不可多得的 Window Manager!推薦大家能試用看看!
Debian_Desktop :: 迴響 (9) :: 靜態連結網址 :: 引用 (0)