|
|

楼主 |
发表于 2004-12-25 03:09:30
|
显示全部楼层
error=21的问题已经解决。
参见TransGaming官方的解决方案:
http://transgaming.org/forum/viewtopic.php?t=1325
#######################################################################
另有Linux公社里happywinter兄从国外网站上搜索的一段文章:
DISCLAIMER: Use these steps at your own risk. You break it, you own both halves. These steps are what worked for me, your mileage may vary. Do not execute these steps unless you are SURE you understand WHAT they mean and WHY you are doing it. Backup your configuration files first and have a mediachecked rescue CD handy if you choose to attempt this.
1. Disable Prelinking after reboot
# vi /etc/sysconfig/prelink
PRELINKING=no
PRELINKING=-no-exec-shield
2. Unlink all prelinked files on running system
# /usr/sbin/prelink -ua
3. Disable Exec-Shield after reboot:
# vi /etc/sysctl.conf
kernel.exec-shield = 0
kernel.exec-shield-randomize= 0
vm.legacy_va_layout = 1
4. Disable Exec-Shield in running kernel
# echo 0 > /proc/sys/kernel/exec-shield
# echo 0 > /proc/sys/kernel/exec-shield-randomize
# echo 1 > /proc/sys/vm/legacy_va_layout
#######################################################################
另有一篇,与上面稍有出入:
From a terminal window open a prelink file.
# vi /etc/sysconfig/prelink
Then find the PRELINKING=Yes entry and set it to PREKINKING=No and save this text file. Then run the following commands.
# ./ect/cron.daily/prelink
# echo 0 > /proc/sys/kernel/exec-shield
# echo 0 > /proc/sys/kernel/exec-shield-randomize
You may find that sometimes though a Windows app may run fine, but it doesn’t close when you try to close it. To close the app, open a terminal window and issue the following command.
#killall -9 wine
#######################################################################
我照上面的一篇做的,搞定。
但同时我还有3个问题:
1.如何让一些Win下运行起来会全屏的软件在Linux下以窗口方式运行?
2.我的魔兽不得已而全屏运行,首先动画可以正常显示,动画过去就是黑屏了,也没有声音,只有鼠标可以动,这又是怎么回事?
3.在X下一旦全屏的软件没有响应的话,比如说,只有鼠标可以动,是不是只有按Alt+Ctrl+backspace三键重启X才能解决?
请教各位高手指点,谢谢。 |
|