个人工具

“UbuntuHelp:Games/Native/QuakeIIIArena”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
Quake III Arena 中文版安装手册
第3行: 第3行:
  
  
== Quake III Arena ==
+
== Quake III Arena ;雷神之锥3==
=== Installation (Retail) ===
+
=== Installation (Retail) 安装说明(详细)===
==== Data Files ====
+
==== Data Files 建立游戏文件夹====
 
<pre><nowiki>
 
<pre><nowiki>
 +
#在终端中执行下列命令
 
mkdir /<path to install>/quake3
 
mkdir /<path to install>/quake3
 +
#<path to install>为你想要安装quake3的地方,例如/home,下面均使用/home代替<path to install>,该命令在那里建立一个quake3文件夹,即/home/quake3
 
mount /cdrom
 
mount /cdrom
 
cp -r /cdrom/Quake3/baseq3 /<path to install>/quake3
 
cp -r /cdrom/Quake3/baseq3 /<path to install>/quake3
 
umount /cdrom
 
umount /cdrom
 +
#该命令将Quack3光盘上的baseq3里的内容拷贝/home/quake3文件夹下,执行时先放入quack3 windows版光盘
 
</nowiki></pre>
 
</nowiki></pre>
  
==== Binaries ====
+
==== Binaries 建立链接文件====
 
<pre><nowiki>
 
<pre><nowiki>
 +
#在终端中执行下列命令
 
cd /<path to install>/quake3
 
cd /<path to install>/quake3
 
wget ftp://ftp.idsoftware.com/idstuff/quake3/linux/linuxq3apoint-1.32b-3.x86.run
 
wget ftp://ftp.idsoftware.com/idstuff/quake3/linux/linuxq3apoint-1.32b-3.x86.run
 
chmod +x linuxq3apoint-1.32b-3.x86.run
 
chmod +x linuxq3apoint-1.32b-3.x86.run
 +
#从官网上下载链接文件,并使其具有可执行属性
 
./linuxq3apoint-1.32b-3.x86.run (Use "/<path to install>/quake3" when asked)
 
./linuxq3apoint-1.32b-3.x86.run (Use "/<path to install>/quake3" when asked)
 +
#执行该命令,当提示时指向/home/quake3
 
</nowiki></pre>
 
</nowiki></pre>
  
==== Security Fix ====
+
==== Security Fix 补丁文件====
 
<pre><nowiki>
 
<pre><nowiki>
 +
#在终端中执行下列命令
 
wget ftp://ftp.idsoftware.com/idstuff/quake3/quake3-1.32c.zip
 
wget ftp://ftp.idsoftware.com/idstuff/quake3/quake3-1.32c.zip
 +
#从官网下载1.32c补丁文件
 
unzip quake3-1.32c.zip
 
unzip quake3-1.32c.zip
 +
#解压缩该文件
 
cp Quake\ III\ Arena\ 1.32c/linux/* .
 
cp Quake\ III\ Arena\ 1.32c/linux/* .
 
rm -rf Quake\ III\ Arena\ 1.32c/
 
rm -rf Quake\ III\ Arena\ 1.32c/
 
</nowiki></pre>
 
</nowiki></pre>
  
=== Troubleshooting ===
+
=== Troubleshooting 故障排除===
==== Sound ====
+
==== Sound 声音====
 
If you have no sound with the following error message in console
 
If you have no sound with the following error message in console
 +
#如果游戏时没有声音并在终端中提示下列出错信息
 
<pre><nowiki>
 
<pre><nowiki>
 
/dev/dsp: Input/output error
 
/dev/dsp: Input/output error
 
Could not mmap /dev/dsp
 
Could not mmap /dev/dsp
 
</nowiki></pre>
 
</nowiki></pre>
you can try the following fix
+
you can try the following fix  
 +
#你可以一下方法修改
 
<pre><nowiki>
 
<pre><nowiki>
 +
#在终端中执行下列命令
 
sudo vi /etc/init.d/bootmisc.sh
 
sudo vi /etc/init.d/bootmisc.sh
 
add lines above : exit 0
 
add lines above : exit 0
第44行: 第56行:
 
</nowiki></pre>
 
</nowiki></pre>
  
=== Playing ===
+
=== Playing 执行游戏===
==== Single CPU Systems ====
+
==== Single CPU Systems 单处理器系统====
 
<pre><nowiki>
 
<pre><nowiki>
 
./quake3
 
./quake3
 
</nowiki></pre>
 
</nowiki></pre>
==== Multiple (SMP) CPU Systems ====
+
==== Multiple (SMP) CPU Systems 多处理器系统====
 
<pre><nowiki>
 
<pre><nowiki>
 
./quake3-smp
 
./quake3-smp

2007年7月20日 (五) 08:42的版本



Quake III Arena ;雷神之锥3

Installation (Retail) 安装说明(详细)

Data Files 建立游戏文件夹

#在终端中执行下列命令
mkdir /<path to install>/quake3
#<path to install>为你想要安装quake3的地方,例如/home,下面均使用/home代替<path to install>,该命令在那里建立一个quake3文件夹,即/home/quake3
mount /cdrom
cp -r /cdrom/Quake3/baseq3 /<path to install>/quake3
umount /cdrom
#该命令将Quack3光盘上的baseq3里的内容拷贝/home/quake3文件夹下,执行时先放入quack3 windows版光盘

Binaries 建立链接文件

#在终端中执行下列命令
cd /<path to install>/quake3
wget ftp://ftp.idsoftware.com/idstuff/quake3/linux/linuxq3apoint-1.32b-3.x86.run
chmod +x linuxq3apoint-1.32b-3.x86.run
#从官网上下载链接文件,并使其具有可执行属性
./linuxq3apoint-1.32b-3.x86.run (Use "/<path to install>/quake3" when asked)
#执行该命令,当提示时指向/home/quake3

Security Fix 补丁文件

#在终端中执行下列命令
wget ftp://ftp.idsoftware.com/idstuff/quake3/quake3-1.32c.zip
#从官网下载1.32c补丁文件
unzip quake3-1.32c.zip
#解压缩该文件
cp Quake\ III\ Arena\ 1.32c/linux/* .
rm -rf Quake\ III\ Arena\ 1.32c/

Troubleshooting 故障排除

Sound 声音

If you have no sound with the following error message in console

  1. 如果游戏时没有声音并在终端中提示下列出错信息
/dev/dsp: Input/output error
Could not mmap /dev/dsp

you can try the following fix

  1. 你可以一下方法修改
#在终端中执行下列命令
sudo vi /etc/init.d/bootmisc.sh
add lines above : exit 0
echo 'quake3.x86 0 0 direct' > /proc/asound/card0/pcm0p/oss
echo 'quake3-smp.x86 0 0 direct' > /proc/asound/card0/pcm0p/oss''

Playing 执行游戏

Single CPU Systems 单处理器系统

./quake3

Multiple (SMP) CPU Systems 多处理器系统

./quake3-smp

Quake III Arena Mods

Q3JailBreak
Q3Pong
Rocket Arena Q3A

Links

[1]
[2]
[3]