[分享] Mobile Radeon 7500 TVout, glxgears fps 破 1500

常言道:『飲水思源』,在 Open Source 的世界裡,我們常常需要別人的幫助,但是在您有所心得的時候請記得分享給大家,『幫助人是快樂的喔』。歡迎您在使用 debian 的過程中的任何心得分享給大家。

[分享] Mobile Radeon 7500 TVout, glxgears fps 破 1500

文章wsun013 » 週四 5月 26, 2005 11:16 am

雖然明天又要跟教授meeting, 但是不怕死我, 為了讓jedi outcast 跑的更順, 又想在電視上玩, 於是.. 廢話不多說, 讓我來分享一下

1. debian 用的是 XFree86, 但是我天性反骨, 所以用了 Ubuntu 的 Xorg 6.8.2, 方法就是把 ubuntu 的 apt repo加入, 把debian XFree86跟 version 4.3.x 有關的全部remove, 換成 Ubuntu 6.8.2 的 Xorg

但是, 這樣可能會覺得髒髒的, 您也可以選擇自己 compile Xorg, 但是基本上一些要用的 -dev lib 最好也從 ubuntu 那抓來, 之後compile 完再刪掉也是可以.

為什麼用Xorg ? 我的原因是, Xorg "好像" 出 cvs snapshots 比較勤勞, 想嘗鮮也方便一些, 為了讓 tvout 能夠使用, 參考了:
http://gatos.sourceforge.net/theater_out.php

裡面提到Xorg 的使用者可到
http://megahurts.dk/rune/tv_output.html

在那可以抓到最新的 tvout patch for Xorg
然後在
http://xorg.freedesktop.org/snapshots/
抓最新的 Xorg snapshot

按照下面的步驟, 其中XX.X跟 YYYYY 為版本代碼, 帶入自己剛抓下來的版本
代碼: 選擇全部
tar xjvf xorg-x11-6.8.XX.X.tar.bz2
gunzip -c xorg_CVS-YYYYYYYYY-tv_output.patch.gz | \
  patch -p1 -d xc/programs/Xserver/hw/xfree86/drivers/ati
mkdir xc-build
cd xc-build
lndir ../xc
make World


完成到這裡, 您已經有一份可以準備安裝的 Xorg 了

接下來就是要換新X Window 了, 建議在console 下做, 不然, 我也不知道, 這是怕 x 當掉的習慣
下面兩個link 大概講怎麼換成 xorg
http://dri.freedesktop.org/wiki/Buildin ... 5e4f541a5e
http://dri.freedesktop.org/wiki/Downloa ... 3e05313740

如果覺得麻煩, 就先把本來的 x server/client 備份
代碼: 選擇全部
mv /usr/X11R6 /usr/X11R6.xf86

之後在xc-build 下
代碼: 選擇全部
make install

之後為了讓 startx 的 script 可以 load Xorg
代碼: 選擇全部
cd /etc/X11
rm X
ln -s /usr/X11R6/bin/Xorg X
cp XF86Config-4 xorg.conf

記得把xorg.conf 中的 "keyboard" 改成 "kbd" driver

來個 ldconfig 暖暖身體, 之後 startx, 按下enter 後開始禱告

2. Mesa/DRI & DRM
Xorg 裝好呢, 開個 terminal, 跑
代碼: 選擇全部
glxgears

可能會有點不爽, 因為Mesa 跟 Drm 還沒換成可以用的, 連結
http://dri.freedesktop.org/wiki/Buildin ... f3e5046726
有說怎麼update mesa & drm
大體上來說, 有幾個基本步驟
mkdir 個目錄, 把CVS 抓下來..抓抓抓抓, 其中 xorg就別抓了, 之前的就夠新了, 所以只要:
代碼: 選擇全部
cvs -d:pserver:anonymous@cvs.freedesktop.org:/cvs/dri login
cvs -z3 -d:pserver:anonymous@cvs.freedesktop.org:/cvs/dri co drm
cvs -d:pserver:anonymous@cvs.freedesktop.org:/cvs/mesa login
cvs -z3 -d:pserver:anonymous@cvs.freedesktop.org:/cvs/mesa co Mesa


之後在 ./Mesa/configs/linux-dri 最後一行, 把一些多於的 driver 去掉, dri_client 和 radeon 一定要留著
如果您是個compile 狂熱份子, 那把 sarvage 去掉就好了, 聽說sarvage 那部份可能compile 不了 (我也是)
代碼: 選擇全部
#./Mesa/config/linux-dri
DRI_DIRS = dri_client i810 i830 i915 mach64 mga r128 r200 radeon

之後退出Xorg ,並到 ./Mesa ...衝呀!
代碼: 選擇全部
make linux-dri

之後把mesa libs 更新到 Xorg 中, 在./Mesa 下
代碼: 選擇全部
cd lib
cp libGL* /usr/X11R6/lib
cp dri* /usr/X11R6/lib/modules/dri/

裝好 mesa 後, 來裝 drm, 到抓 cvs 目錄下的 drm 中
如果你是用 kernel 2.6 到 cd linux-core
如果你是用 kernel 2.4 到 cd linux
要 compile drm 記得要有自己跑的kernel source, 再來又是compile
代碼: 選擇全部
make

如果他無法自動找到kernel source, 就
代碼: 選擇全部
make LINUXDIR=/path/to/kernel/source

make 完成後, 把modules 丟到 /lib/modules/$KERNEL/kernel/drivers/char/drm 下
代碼: 選擇全部
cp *.ko /lib/modules/您的kernel版本/kernel/drivers/char/drm

檢查 /etc/X11/xorg.conf 裡的 Section "Module" 是否有, 沒有就加上:
代碼: 選擇全部
    Load "glx"
    Load "dri"

之後, 在 ~/.xinitrc 中加入
代碼: 選擇全部
export LD_PRELOAD=/usr/X11R6/lib/libGL.so
export LIBGL_DEBUG=verbose

第一個是為了讓其他用 GL 的app 可以知道去load 什麼, 沒加這個前
我除了 glxgears 外, 其他的app 都用不了 GL
第二個是debug 用的, 如果發生了什麼事, 至少還可以貼出來討論討論

現在, 再跑 Xorg 吧, 並且執行 glxgears
我在 16bit, 1024x768 下, 我的 debug message + glxgears output 為
代碼: 選擇全部
libGL: XF86DRIGetClientDriverName: 5.0.1 radeon (screen 0)
libGL: OpenDriver: trying /usr/X11R6/lib/modules/dri/radeon_dri.so
drmOpenByBusid: Searching for BusID pci:0000:01:00.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 4, (OK)
drmOpenByBusid: drmOpenMinor returns 4
drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
7854 frames in 5.0 seconds = 1570.618 FPS
7862 frames in 5.0 seconds = 1562.099 FPS
7859 frames in 5.0 seconds = 1571.777 FPS

mobile radeon 7500 快跑到 1600, 猛吧...

DriConf 是個不錯的 tweak 工具, 可以拿來玩一玩:
http://dri.freedesktop.org/wiki/DriConf

3. TVout
對了, 好像還忘了講到TVout, 我先講一句話
就是, 這個東西我並沒有讓他完全working....目前是有 tvout, 但是也有點 TV傲(台語)
就是爛爛的...

首先, 先去 /var/log/Xorg.0.log 中, 找 "theatre" 這個字串
如果看到
代碼: 選擇全部
(II) LoadModule: "theatre_detect"

代表之前我們 compile 的 Xorg 還是我們想要的, 參考
http://megahurts.dk/rune/tv_output.html
改變 /etc/X11/xorg.conf, 我的部份設定如下:
代碼: 選擇全部
Section "Device"
        Identifier      "Generic Video Card"
        Driver          "ati"
        Option          "AGPMode"               "4"
        Option          "AGPFastWrite"          "yes"
        Option          "TVOutput"              "NTSC"
EndSection

其中 NTSC 可以改成
* NTSC
* NTSC-J
* PAL
* PAL-CN
* PAL-M
* PAL-N
* PAL-60
我也不太清楚這些規格, 但是我在紐西蘭的電視只有用 NTSC 和 PAL 才會有反應

記得 要把 resoulution 改成 800x600 喔!!
此外, 希望您還沒有把 xorg 的 source 刪掉
在source 下的 ./programs/Xserver/hw/xfree86/drivers/ati/tvo_set
有個小程式叫 tvo_set 可容許您更改 tvout 的setting, 且不用重新進入 Xorg
所以接下來的就是 compile 和安裝他, 在 xc 或 xc-build下
代碼: 選擇全部
cd ./programs/Xserver/hw/xfree86/drivers/ati/tvo_set
xmkmf
make
make install

就可以拿 tvo_set 這個command 來玩玩了
------BEGIN GEEK CODE BLOCK------
Version: 3.12
GE d->++ s: a-- C+++>++++ UL>++++ P>++++ L++>++++ E---- W+ N@ o K- w++(+)
O- M- V? PS+++(+) PE++(+) Y-- PGP- t>--- 5? X+++ R- tv-(--) b+ DI? D+ G e++>++++
h+(!) r++(%) y*>++++
-------END GEEK CODE BLOCK-------
頭像
wsun013
快樂的大學生
快樂的大學生
 
文章: 784
註冊時間: 週二 9月 14, 2004 12:12 pm
來自: 紐西蘭

文章granziliao » 週六 6月 11, 2005 11:56 am

請問一下你用的是不是6.8.99 系列的 X.org?
好像有xkbcomp的問題
我的Laptop 也是 Radeon 7500 M ,你的glxgears可以跑到1600真是太猛了!
可以參考一下你的/etc/X11/xorg.conf嗎?
謝謝!
凡發生之事必合理
頭像
granziliao
可愛的小學生
可愛的小學生
 
文章: 99
註冊時間: 週三 6月 18, 2003 9:23 am
來自: 板橋後埔

文章wsun013 » 週六 6月 11, 2005 2:08 pm

我的是 X Window System Version 6.8.99.8
xorg.conf 看起來有點傻..
基本上, 幫助 fps 主要是靠 mesa dri 和 drm
我自己compile xorg 是因為想看看能不能讓 tvout 可以用
再一方面是喜歡嘗鮮
xkbcomp 的問題是?

代碼: 選擇全部
Section "Files"
    FontPath    "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
    FontPath    "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
    FontPath    "/usr/lib/X11/fonts/misc"
    FontPath    "/usr/lib/X11/fonts/Type1"
    FontPath    "/usr/local/share/fonts"
    FontPath    "/usr/share/fonts"
    FontPath    "/usr/X11R6/lib/X11/fonts"
EndSection

Section "Module"
   Load   "bitmap"
   Load   "dbe"
   Load   "ddc"
   Load   "dri"
   Load   "extmod"
   Load   "freetype"
   Load   "glx"
   Load   "int10"
   Load   "record"
   Load   "type1"
   Load   "vbe"
EndSection

Section "InputDevice"
   Identifier   "Generic Keyboard"
   Driver      "keyboard"
   Option      "CoreKeyboard"
   Option      "XkbRules"   "xfree86"
   Option      "XkbModel"   "pc104"
   Option      "XkbLayout"   "us"
EndSection

Section "InputDevice"
   Identifier   "Configured Mouse"
   Driver      "mouse"
   Option      "CorePointer"
   Option      "Device"      "/dev/psaux"
   Option      "Protocol"      "ImPS/2"
   Option      "Emulate3Buttons"   "true"
   Option      "ZAxisMapping"      "4 5"
EndSection
Section "InputDevice"
   Identifier   "Generic Mouse"
   Driver      "mouse"
   Option      "SendCoreEvents"   "true"
   Option      "Device"      "/dev/input/mice"
   Option      "Protocol"      "ImPS/2"
   Option      "Emulate3Buttons"   "true"
   Option      "ZAxisMapping"      "4 5"
EndSection

Section "Device"
   Identifier   "Generic Video Card"
   Driver      "radeon"
#   Driver "vesa"
#   Driver      "ati"
        Option     "AGPMode"                    "4"
        Option     "AGPFastWrite"               "yes"
#   Option      "UseFBDev"      "true"
EndSection

Section "Monitor"
   Identifier   "Generic Monitor"
   HorizSync   28-50
   VertRefresh   43-75
   Option      "DPMS"
EndSection

Section "Screen"
   Identifier   "Default Screen"
   Device      "Generic Video Card"
   Monitor      "Generic Monitor"
   DefaultDepth   16
   SubSection "Display"
      Depth      1
      Modes      "1024x768"
   EndSubSection
   SubSection "Display"
      Depth      4
      Modes      "1024x768"
   EndSubSection
   SubSection "Display"
      Depth      8
      Modes      "1024x768"
   EndSubSection
   SubSection "Display"
      Depth      15
      Modes      "1024x768"
   EndSubSection
   SubSection "Display"
      Depth      16
      Modes      "1024x768"
   EndSubSection
   SubSection "Display"
      Depth      24
      Modes      "1024x768"
   EndSubSection
EndSection

Section "ServerLayout"
   Identifier   "Default Layout"
   Screen      "Default Screen"
   InputDevice   "Generic Keyboard"
   InputDevice   "Configured Mouse"
   InputDevice   "Generic Mouse"
EndSection

Section "DRI"
   Mode   0666
EndSection
------BEGIN GEEK CODE BLOCK------
Version: 3.12
GE d->++ s: a-- C+++>++++ UL>++++ P>++++ L++>++++ E---- W+ N@ o K- w++(+)
O- M- V? PS+++(+) PE++(+) Y-- PGP- t>--- 5? X+++ R- tv-(--) b+ DI? D+ G e++>++++
h+(!) r++(%) y*>++++
-------END GEEK CODE BLOCK-------
頭像
wsun013
快樂的大學生
快樂的大學生
 
文章: 784
註冊時間: 週二 9月 14, 2004 12:12 pm
來自: 紐西蘭

文章企鵝狂 » 週日 6月 12, 2005 7:24 pm

可以分享一下您的主機板晶片是甚麼嘛?

因為在我的電腦上面(最一開始的nforce2)

代碼: 選擇全部
Section "Device"
        Identifier      "Generic Video Card"
        Driver          "ati"
        Option          "AGPMode"               "4"
        Option          "AGPFastWrite"          "yes"
        Option          "TVOutput"              "NTSC"
EndSection


AGPFastWrite會讓電腦掛掉,連想要回來console都不行
網路上有人說這個選項沒有甚麼差別,而且有些電腦會掛掉.所以預設disable

還有你有用過xcompmgr嘛?
不知道效果怎樣?

我啟動了一個gnome-terminal透明
還有陰影,fade in fade out..整個感覺好慢阿
http://news.bbc.co.uk/1/hi/world/asia-pacific/country_profiles/1285915.stm


Country profile: Taiwan
Map of Taiwan
Taiwan is the island which has for all practical purposes been independent for half a century, but which China regards as a rebel region that must be reunited with the mainland - by force if necessary.
企鵝狂
活潑的高中生
活潑的高中生
 
文章: 477
註冊時間: 週三 3月 31, 2004 11:13 am
來自: 台灣共和國

文章wsun013 » 週一 6月 13, 2005 1:06 am

我的就是標題寫的 ^^ : ATI Radeon Mobile 7500

xcompmgr 又是什麼呢..待我查查...
------BEGIN GEEK CODE BLOCK------
Version: 3.12
GE d->++ s: a-- C+++>++++ UL>++++ P>++++ L++>++++ E---- W+ N@ o K- w++(+)
O- M- V? PS+++(+) PE++(+) Y-- PGP- t>--- 5? X+++ R- tv-(--) b+ DI? D+ G e++>++++
h+(!) r++(%) y*>++++
-------END GEEK CODE BLOCK-------
頭像
wsun013
快樂的大學生
快樂的大學生
 
文章: 784
註冊時間: 週二 9月 14, 2004 12:12 pm
來自: 紐西蘭

文章企鵝狂 » 週一 6月 13, 2005 8:35 am

恩..我是問說..主機板的北橋晶片啦..

xcompmgr是Xorg的一個extension管理的工具吧..

可以設定陰影,fade in fade out,還有transset可以設定視窗透明度

http://www.flickr.com/photos/77772479@N00/18887743/
http://www.ubuntuforums.org/showthread.php?t=20769

我的Radeon 9000 pro才

9862 frames in 5.0 seconds = 1972.327 FPS

有時候還會當機 :(
http://news.bbc.co.uk/1/hi/world/asia-pacific/country_profiles/1285915.stm


Country profile: Taiwan
Map of Taiwan
Taiwan is the island which has for all practical purposes been independent for half a century, but which China regards as a rebel region that must be reunited with the mainland - by force if necessary.
企鵝狂
活潑的高中生
活潑的高中生
 
文章: 477
註冊時間: 週三 3月 31, 2004 11:13 am
來自: 台灣共和國

文章wsun013 » 週一 6月 13, 2005 10:01 am

喔喔喔, 小弟不才, 我的是 Intel Corp. 82845
------BEGIN GEEK CODE BLOCK------
Version: 3.12
GE d->++ s: a-- C+++>++++ UL>++++ P>++++ L++>++++ E---- W+ N@ o K- w++(+)
O- M- V? PS+++(+) PE++(+) Y-- PGP- t>--- 5? X+++ R- tv-(--) b+ DI? D+ G e++>++++
h+(!) r++(%) y*>++++
-------END GEEK CODE BLOCK-------
頭像
wsun013
快樂的大學生
快樂的大學生
 
文章: 784
註冊時間: 週二 9月 14, 2004 12:12 pm
來自: 紐西蘭

文章Linkey » 週一 6月 13, 2005 10:36 am

太強啦....是我的三倍分數...
Linkey
可愛的小學生
可愛的小學生
 
文章: 37
註冊時間: 週四 3月 25, 2004 9:31 pm

文章wsun013 » 週一 6月 13, 2005 11:47 am

To 企鵝狂大大:
小弟去 ubuntu 那抓了 xcompmgr 和 transset 的 source package 來 compile
因為這樣提醒了我忘了把 xorg*-dev 要的 .pc 檔 link 到 /usr/lib/pkgconfig

ok, 言歸正傳, 真的是慢到不行呀....
圖檔

flxgears 的分數與 cpu 應該是有關係的, 當我移動window 時, 電腦就慢, 開始喘氣, flxgears 分數掉到 1000 分, 當我不去移window時, 就又跑回 15xx 了

我的 Xorg log 中:
(WW) RADEON(0): Option "AllowGLXWithComposite" is not used
不知道是不是有關.....
------BEGIN GEEK CODE BLOCK------
Version: 3.12
GE d->++ s: a-- C+++>++++ UL>++++ P>++++ L++>++++ E---- W+ N@ o K- w++(+)
O- M- V? PS+++(+) PE++(+) Y-- PGP- t>--- 5? X+++ R- tv-(--) b+ DI? D+ G e++>++++
h+(!) r++(%) y*>++++
-------END GEEK CODE BLOCK-------
頭像
wsun013
快樂的大學生
快樂的大學生
 
文章: 784
註冊時間: 週二 9月 14, 2004 12:12 pm
來自: 紐西蘭

文章granziliao » 週一 6月 13, 2005 1:26 pm

企鵝狂 寫:恩..我是問說..主機板的北橋晶片啦..

xcompmgr是Xorg的一個extension管理的工具吧..

可以設定陰影,fade in fade out,還有transset可以設定視窗透明度

http://www.flickr.com/photos/77772479@N00/18887743/
http://www.ubuntuforums.org/showthread.php?t=20769

我的Radeon 9000 pro才

9862 frames in 5.0 seconds = 1972.327 FPS

有時候還會當機 :(

何不改用ATI 的 fglrx driver?
凡發生之事必合理
頭像
granziliao
可愛的小學生
可愛的小學生
 
文章: 99
註冊時間: 週三 6月 18, 2003 9:23 am
來自: 板橋後埔

文章wsun013 » 週一 6月 13, 2005 1:53 pm

granziliao 寫:何不改用ATI 的 fglrx driver?


對呀對呀!!!
唉..我們可憐的 7500 就是因為不能用 fglrx 才像我一樣想辦法讓
fps 多一點呢
------BEGIN GEEK CODE BLOCK------
Version: 3.12
GE d->++ s: a-- C+++>++++ UL>++++ P>++++ L++>++++ E---- W+ N@ o K- w++(+)
O- M- V? PS+++(+) PE++(+) Y-- PGP- t>--- 5? X+++ R- tv-(--) b+ DI? D+ G e++>++++
h+(!) r++(%) y*>++++
-------END GEEK CODE BLOCK-------
頭像
wsun013
快樂的大學生
快樂的大學生
 
文章: 784
註冊時間: 週二 9月 14, 2004 12:12 pm
來自: 紐西蘭

文章企鵝狂 » 週一 6月 13, 2005 3:51 pm

阿...fglrx..這是個麻煩的問題

1. fglrx 8.x版之後的 配上 Radeon 9200以前的晶片 DVI都不能用,畫面整個黑掉 http://ati.cchtml.com/show_bug.cgi?id=69

2.所以我就一直用fglrx 3.14.x版的+XFree86 4.3+kernel 2.6.10
(fglrx 3.14.x版的沒有支援Xorg..在2.6.11之後的kernel也不能用..)

3.如果用DSUB的話...不知道他是怎樣..會送太高的頻率75Hz給我的螢幕,整個畫面閃到不行..不過這個地方可能我會在想辦法吧..之前有看到文章說要怎麼改液晶螢幕的頻率的

4.再不然的話..買一張nvidia的顯示卡或是換9500以上的應該就可以正常用DVI了吧..不過感覺真是浪費錢
http://news.bbc.co.uk/1/hi/world/asia-pacific/country_profiles/1285915.stm


Country profile: Taiwan
Map of Taiwan
Taiwan is the island which has for all practical purposes been independent for half a century, but which China regards as a rebel region that must be reunited with the mainland - by force if necessary.
企鵝狂
活潑的高中生
活潑的高中生
 
文章: 477
註冊時間: 週三 3月 31, 2004 11:13 am
來自: 台灣共和國

文章企鵝狂 » 週一 6月 13, 2005 5:22 pm

代碼: 選擇全部
linux:~# glxgears
11929 frames in 5.0 seconds = 2385.800 FPS
11469 frames in 5.0 seconds = 2293.800 FPS
8177 frames in 5.0 seconds = 1635.400 FPS
8178 frames in 5.0 seconds = 1635.600 FPS
8176 frames in 5.0 seconds = 1635.200 FPS
linux:~# glxgears
11587 frames in 5.0 seconds = 2317.400 FPS
10060 frames in 5.0 seconds = 2012.000 FPS
8066 frames in 5.0 seconds = 1613.200 FPS

換成fglrx之後 跑一下子就會降下來了..可能是我有再跑其他程式的關係?

而且..現在用DSUB感覺螢幕顏色也沒有那麼漂亮了

fglrx不能開啟composite,開啟的話他就會把DRI關掉

Xorg的radeon driver就..好像有選項可以打開的樣子..但是應該也是實驗性的
http://news.bbc.co.uk/1/hi/world/asia-pacific/country_profiles/1285915.stm


Country profile: Taiwan
Map of Taiwan
Taiwan is the island which has for all practical purposes been independent for half a century, but which China regards as a rebel region that must be reunited with the mainland - by force if necessary.
企鵝狂
活潑的高中生
活潑的高中生
 
文章: 477
註冊時間: 週三 3月 31, 2004 11:13 am
來自: 台灣共和國

文章wsun013 » 週一 6月 13, 2005 5:38 pm

不知道 composite 是什麼耶, 是 TVout 用的嗎?
小弟都是在那東抓抓, 西摸摸軟體, 什麼都不懂呢.. :crying: :ooops:
------BEGIN GEEK CODE BLOCK------
Version: 3.12
GE d->++ s: a-- C+++>++++ UL>++++ P>++++ L++>++++ E---- W+ N@ o K- w++(+)
O- M- V? PS+++(+) PE++(+) Y-- PGP- t>--- 5? X+++ R- tv-(--) b+ DI? D+ G e++>++++
h+(!) r++(%) y*>++++
-------END GEEK CODE BLOCK-------
頭像
wsun013
快樂的大學生
快樂的大學生
 
文章: 784
註冊時間: 週二 9月 14, 2004 12:12 pm
來自: 紐西蘭

文章granziliao » 週一 6月 13, 2005 5:57 pm

我的卡是radeon 9550,用的是最新的fglrx 8.14.13 一切正常,
可以貼一下你的/etc/X11/xorg.conf嗎?
凡發生之事必合理
頭像
granziliao
可愛的小學生
可愛的小學生
 
文章: 99
註冊時間: 週三 6月 18, 2003 9:23 am
來自: 板橋後埔

下一頁

回到 share

誰在線上

正在瀏覽這個版面的使用者:沒有註冊會員 和 1 位訪客