How to excavate
Publish: 2021-04-20 15:50:48
1. It means that your motherboard has CPU fan detection function. There may be something wrong with the signal of CPU fan detection. Try to press F1 to skip, press del to enter BIOS to turn off fan detection, or press F9 load default in BIOS to set the default value. In addition, you can try to replace the fan.
2. The CPU fan doesn't rotate or rotates slowly. If you see it rotating, you can turn it off in the BIOS, and the prompt won't appear when you turn it on. The method is to turn it on, press del key to select the bottom line of the power item, and there are two options to display the fan speed and adjust the fan speed. If you disable them all, it's OK
3. 1. There's no problem with the machine. If the memory is just for playing a game, it's enough. After all, you're using XP
maybe invest another 600 yuan in it
graphics card 500 + memory 2g100
2. Go to the electronic city to find a graphics card that can match your motherboard. It's not wrong to pay about 500 yuan. It's meaningless to simply push your graphics card without looking at the motherboard model, Still have to match with the motherboard
3. With a 500 grade graphics card, it should be able to open medium effect. Full effect is definitely not good. Medium effect should be able to run smoothly. After all, these games and your graphics card are not of the same age< It seems that some integrated graphics cards are soldered on the motherboard and can't be replaced by independent graphics cards, right
can I replace my integration with a separate graphics card
Intel (R) G41 express chipset is a graphics card
can it be replaced
if you can change how to say to the people in the computer shop
thank you
it's OK. If the motherboard with integrated graphics card can be inserted with an independent graphics card, it must have an automatic switching function. When you insert the independent graphics card, it will automatically switch to the independent mode, and your integrated graphics card will be empty and useless. You just plug it in and install the driver. It's OK. Don't worry
maybe invest another 600 yuan in it
graphics card 500 + memory 2g100
2. Go to the electronic city to find a graphics card that can match your motherboard. It's not wrong to pay about 500 yuan. It's meaningless to simply push your graphics card without looking at the motherboard model, Still have to match with the motherboard
3. With a 500 grade graphics card, it should be able to open medium effect. Full effect is definitely not good. Medium effect should be able to run smoothly. After all, these games and your graphics card are not of the same age< It seems that some integrated graphics cards are soldered on the motherboard and can't be replaced by independent graphics cards, right
can I replace my integration with a separate graphics card
Intel (R) G41 express chipset is a graphics card
can it be replaced
if you can change how to say to the people in the computer shop
thank you
it's OK. If the motherboard with integrated graphics card can be inserted with an independent graphics card, it must have an automatic switching function. When you insert the independent graphics card, it will automatically switch to the independent mode, and your integrated graphics card will be empty and useless. You just plug it in and install the driver. It's OK. Don't worry
4. 1. In the process of system maintenance, it may be necessary to check the CPU utilization at any time, and analyze the needs of the system status according to the corresponding information. In CentOS, you can use the top command to view the CPU usage. After running the top command, the CPU usage status will be displayed in full screen mode, and it will be in dialog mode -- using the top command, you can control the display mode, and so on. The command to exit top is Q (press the Q key once when top is running). Top command is a common performance analysis tool under Linux, which can display the resource occupancy status of each process in the system in real time. Task manager similar to windows can directly use top command to view the content of% mem. You can choose to view by process or by user. If you want to view the process memory usage of Oracle users, you can use the following command: $top-uoracke2, The smaller the process, the higher the priority. Ninice: value virt: virtual memory occupied by the process res: physical memory occupied by the process SHR: shared memory used by the process s: state of the process. S stands for sleep, R stands for running, Z stands for dead state, n stands for negative priority value of the process% CPU: utilization rate of CPU occupied by the process% MEM: percentage of physical memory and total memory used by the process time +: total CPU time occupied by the process after startup, that is, the accumulated value of CPU occupied time. Operation example: input "top" in the command line to start the full screen conversation mode of topTop, which can be divided into three parts: system information bar, command input bar and process list bar. The first part -- the top system information column: the first line (top): "00:11:04" is the current time of the system“ 3: 35 "is the operation time from the start of the system to the present“ "2users" is the number of users currently logged in to the system, more specifically, the number of terminals logged in to the user -- the connection of the same user to multiple terminals of the system at the same time will be regarded as the connection of multiple users to the system, and the number of users here will also be expressed as the number of terminals“ "Load coverage" is the average value of the current system load. The last three values are the average number of processes one minute ago, five minutes ago, and 15 minutes ago. Generally, it can be considered that when this value exceeds the number of CPUs, the CPU will have a lot of effort to load the processes contained in the current system; The second line (tasks): "59total" is the total number of current system processes“ "1running" is the number of processes currently running“ 58sleeping "is the number of processes currently waiting“ 0stopped "is the number of stopped system processes“ 0zombie "is the number of recovered processes; The third line (CPU): represents the current utilization rate of CPU respectively; The fourth line (MEM): indicates the total amount of memory, current usage, free memory, and buffer memory in use; The fifth line (SWAP): indicates that the category is the same as the fourth line (MEM), but this reflects the usage of swap. In general, the frequent use of swap will be considered as the result of insufficient physical memory. The second part -- the internal command prompt bar of the middle part: the display mode of the process can be controlled by the internal command of top ring the operation of top. The internal commands are as follows: S - change the screen update frequency L - turn off or turn on the top information in the first line of the first part T - turn off or turn on the tasks in the second line of the first part and the CPU information in the third line m - turn off or turn on the MEM in the fourth line of the first part and the swap information in the fifth line n - show the process list in the order of PID (described later in the third part) P - show the CPU occupancy rate M - arrange the process list in the order of memory occupancy (Part 3) H - display help n - set the number of processes displayed in the process list Q - exit tops - change the screen update cycle part 3 - the process list column in the bottom part: the process list distinguished by PID will be updated regularly according to the set screen update time to update. Through the top internal command, you can control the display mode here. PMAP can view the memory occupied by process related information according to the process (process number can be viewed through PS) as follows: $pmap-d5647ps, as shown in the following example: $ps-e-o & # 39; pid,comm,args,pcpu,rsz,vsz,stime,user,uid' Where rsz is the actual memory $ps-e-o & # 39; pid,comm,args,pcpu,rsz,vsz,stime,user,uid'| Greporacle | sort NRK, where rsz is the actual memory. In the above example, we can sort the memory by memory, and view the memory from large to small under Linux. We usually use the free command:[ root@scs-2tmp ]#:-/+buffers/ cache:4711162795064Swap : 2048276801601968116 the following is an explanation of these values: Total: the total size of physical memory. Used: used. Free: how many are available. Shared: the total amount of memory shared by multiple processes. Buffers / cached: the size of the disk cache. The third line (- / + buffers / cached): used: used. Free: how many are available. The fourth line doesn't explain much. Difference: the difference between the second line (MEM) used / free and the third line (- / + buffers / cache) used / free. The difference between the two is from the perspective of usage. The first line is from the perspective of OS, because for OS, Buffers / cached is used, so the available memory is 16176kb, and the used memory is 3250004kb, including + buffers + cached used by kernel (OS) + application (x, Oracle, etc.), For applications, Buffers / cached is equal to available, because buffer / cached is to improve the performance of file reading. When applications need to use memory, buffer / cached will be recycled quickly. So from the perspective of application, available memory = system free memory + buffers + cached. For example: 2795064 = 16176 + 110652 + 2668236. Next, explain when the memory will be exchanged and by which party. When the available memory is less than the rated value, a meeting is held to exchange. How to see rating: cat / proc / meminfo[ root@scs-2tmp ]#cat/proc/meminfoMemT otal:3266180kBMemFree :17456kBB uffers:111328kBCached :2664024kBSwapC ached:0kBActive :467236kBI nactive:2644928kBHighTotal :0kBHighF ree:0kBLowTotal :3266180kBLowF ree:17456kBSwapTotal :2048276kBSwapF ree:1968116kBDirty :8kBW riteback:0kBMapped :345360kBS lab:112344kBCommitted_ AS:535292kBPageT ables:2340kBVmallocTotal :536870911kBVmallocU sed:272696kBVmallocChunk :536598175kBHugePages_ T otal:0HugePages_ F ree:0Hugepagesize : 2048kb results viewed with free-m:[ root@scs-2tmp ]#free-:318931731601072605-/+buffers/ cache:4602729Swap : 2000781921 to view the size of the / proc / kcore file (memory image):[ root@scs-2tmp ]#LL-H / proc / kcore-r -------- 1rootroot4.1gjun1212:04 / proc / kcore remarks: the measurement of memory occupation measures how much memory a process occupies, Linux provides us with a very convenient method. The / proc directory provides us with all the information. In fact, tools such as top also get the corresponding information through this directory/ The memory usage information of proc / meminfo machine / proc / PID / mapsipid is the process number, which shows the virtual address occupied by the current process/ Memory occupied by proc / PID / Statm process[ root@localhost ~]#Cat / proc / self / Statm 6545744003340 output explains CPU and CPU 0... The meaning of each parameter in each line (take the first line as an example) is: parameter interpretation / proc / / statussize (pages) the size of the virtual address space of the task vmsize / 4resident (pages) the size of the physical memory being used by the application vmrss / 4shared (pages) the number of shared pages 0trs (pages) the size of the executable virtual memory owned by the program vmexe / 4lrs (pages) is mapped to the virtual memory space of the task Vmlib / 4drs (pages) program data segment and user mode stack size (vmdata + vmstk) 4dt (pages) 04 view machine available memory / proc / 28248 / & gt;:-/+ buffers/ cache:288044735744Swap : 1959920896081870312 when we check the free memory of the machine through the free command, we will find that the value of free is very small. This is mainly because there is such an idea in Linux that memory is not used for nothing, so it tries to cache and buffer some data as much as possible to facilitate the next use. But in fact, the memory can be used immediately. Therefore, the command of free memory = free + buffers + cached = total usedtop is a common performance analysis tool under Linux, which can display the resource occupation status of each process in the system in real time, similar to the task manager of windows. The use of it is described in detail below. top-02:53:32up16days,6:34,17users,lo adaverage:0.24 ,0.21,0.24T asks:481total ,3running,474sleeping,0stopped,4zombieCpu(s):10.3%us,1.8%sy,0.0%ni,86.6%id,0.5%wa,0.2%hi,0.6%si,0.0%stMem:4042764ktotal,4001096kused,41668kfree,383536kbuffersS wap:2104472ktotal ,7900kused,2096572kfree, %CPU% memtime +. 629:27.. 55:42.. 05:25.. 17:23.. 50:01.16konsole the first five lines in the statistical information area are the statistical information of the whole system. The first line is the task queue information, which is the same as the execution result of uptime command. Its contents are as follows: 01:06:48 current time up1:22 system running time, format is: divided into 1 user, current login number lo adaverage:0.06 , 0.60, 0.48 system load, which is the average length of task queue. The three values are the average values of 1 minute, 5 minutes and 15 minutes ago. The second and third behavior is the information of process and CPU. When there are multiple CPUs, these contents may exceed two lines. The content is as follows: T asks:29total Total number of processes 1running running processes 28sleeping processes 0stopped processes 0zombie zombie zombie CPU (s): 0.3% US CPU percentage of user space 1.0% sy CPU percentage of kernel space 0.0% Ni CPU percentage of priority changed processes 98.7% ID idle CPU percentage 0.0% wa waiting for input / output The percentage of CPU time of 0.0% hi0.0% Si is the last two lines of memory information. The contents are as follows: MEM: 191272ktotal total physical memory 173656kused total physical memory used 17616kfree total free memory 22052kbuffers total memory used as kernel cache s wap:192772ktotal Total number of switches: 0 used total number of switches: 192772k free total number of switches: 123988k cached total number of switches. The contents in the memory are swapped out to the swap area, and then swapped in to the memory, but the used swap area has not been covered. This value is the size of the swap area that these contents already exist in the memory. When the corresponding memory is swapped out again, it is unnecessary to write to the swap area. The detailed information of each process is displayed below the statistical information area of the process information area. First, let's understand the meaning of each column. Serial number column name means apid process idbppidparent process idcruserrealusernameid user name of process owner fgroup group name of process owner gtty terminal name of starting process. Processes that are not started from the terminal are displayed as? HPR priority ininice value. A negative value indicates the high priority, a positive value indicates the last CPU used by the low priority JP, which is meaningful only in a multi CPU environment. The percentage of CPU time used by K% CPU from last update to present is the total CPU time used by ltime process, the total CPU time used by Mtime + process per second, the percentage of physical memory used by N% MEM process per 1 / 100 second, and the total virtual memory used by ovirt process, The unit is KB. Virt = in the virtual memory used by swap + respswap process, the swapped out size, in KB. The physical memory used by the QREs process that has not been swapped out
5.
Press F1 to run setup appears when the computer starts up because the computer sets BIOS to double hard disk startup. Here, it can be solved by resetting. The specific operation steps are as follows:
1. First start the computer, and then press the delete key to enter the BIOS Setup interface
6. Enter msconfig while running, and press enter to start the system configuration utility. Click the "general" option, select "diagnostic startup" in the "startup mode", save and exit, and then enter the system. At this time, the process called out should be very clean, which is the most basic and needed process of the system.
7. 1 may be in the virus, first kill the virus to see 2 may be more garbage in the machine, use optimization master to clean up, let the computer start faster 15 moves Abstract: 1, BIOS optimization settings 2, start DMA mode, improve the hard disk speed 3, remove the windows boot mark. 4、 Optimize the startup group. 5、 Organize and optimize the registry. 6、 Maintain the system regularly. 7、 Expand virtual memory capacity. 8、 Remove fancy settings like wallpaper and screen saver. 9、 Delete autoexec.bat and config.sys. 10、 Simplify *. INI files, especially system.ini and win.ini. 11、 Turn off disk scan. 12、 Make the stay time of guidance information shortest. 13、 Rece unnecessary font files. 14、 Delete the rendant DLL file. 15、 The way of "going the other way". It's the common aspiration of every computer fan to think that the computer starts too slowly. It's everyone's common aspiration to make the computer start faster. In the process of using the computer, I summarized the "15 Ways" to speed up the computer start-up, and share them with you. 1、 BIOS optimization settings are on the front page of BIOS settings. We enter the "advanced BIOS features" option, move the cursor to the "frist boot device" option, and press "pageup" and "pagedown" to select. The default value is "floppy", which means that the system will read the boot information from the floppy drive at boot time, which will prolong the boot time of the machine and shorten the life of the floppy drive. So we have to choose "hdd-0" to boot directly from the hard disk, which will be several seconds faster. In addition, "disable" is recommended for "remove 1mbmemorytest" in BIOS settings, and "enabled" is recommended for "quickpoweronself test". The settings in "advanced chipset features" have a great impact on the acceleration of the machine. Please pay more attention. Change "bank 0 / 1 DRAM timing" from "8NS / 10ns" to "fast" or "turbo"“ "Turbo" is faster than "fast", but it is not stable. It is suggested to choose "fast". If the memory quality is good, you can choose "turbo" to try, unstable can be changed back to "fast". For memory moles with good memory quality, it is recommended to set "2" in the "SDRAM CAS latency" option, which can speed up the speed. Newer motherboards all support agp4x. If your graphics card also supports agp4x, activate it at "agp-4xmode", that is, "enabled". Only in this way can you give full play to the ability of your graphics card and speed up the system startup. 2、 Start DMA mode to improve the speed of hard disk. The maximum transfer rate of hard disk with UDMA / 33, 66 and 100 technology is 33MB / s, 66mb / s and 100MB / s. theoretically, it is 3-6 times of the transfer rate of IDE hard disk (here refers to PIO Mode4 mode, its transfer rate is 16.6mb / s). However, in the default setting of windows, DMA is disabled, so we must turn it on. The specific method is: open the "control panel → system → device manager" window, expand the "disk drive" branch, double-click the UDMA hard disk icon, enter the "properties → settings → options", in front of the "DMA" item "√", and then press OK to close all dialog boxes and restart the computer. 3、 Remove the windows boot flag. First, you need to open start → settings → folder options, and check "show all files" from the "advanced settings" list box in the "view" tab. Then open disk C, find the file msdos.sys, cancel its "read-only" attribute, open it, and add a line under the "option" paragraph: logo = 0, so that the windows boot pattern will not be loaded and run, and the boot time can be shortened by 3 seconds. 4、 Optimize the startup group. Computer beginners love to try all kinds of software, and delete it after a short time. However, for some inexplicable reasons, these software will still reside in the "startup" project (especially when using some version D Software), which will waste a lot of time when Windows starts. To solve this problem, it's actually very simple. You can open "start" → "run", select "msconfig" in the "open" column of the dialog box, and then click "OK" to call up the "system configuration utility". Click the "start" tab to remove the "√" in front of the program that does not need to be loaded into the startup group. In this way, the startup time can be reced by at least 10 seconds. 5、 Organize and optimize the registry. After Windows starts up, the system needs to read the relevant information in the registry and store it in RAM (memory). Most of the time windows starts up, it spends on it. Therefore, it is necessary to organize and optimize the registry. About the optimization of the registry, you can use windows optimization master and other software. Take windows optimization master as an example, click "registration information cleaning" → "scanning", and the software will automatically clean up the garbage in the registry for you. After scanning, a menu will pop up to let you choose whether to back up the registry. It is recommended to select backup, and then click "clear" after backup. 6、 Maintain the system regularly. If too many games, too many applications and too many old data are installed in the system, your computer will run slower and slower, and the boot time will be longer and longer. Therefore, it is best to do a comprehensive maintenance of the computer every other period of time. Click "start" → "program" → "accessories" → "system tools" → "maintenance Wizard", and then click "OK" button to carry out a comprehensive maintenance of the computer, which will keep your computer in the best state. For hard disk, it's better to do "disk defragmentation" once every two weeks, which will obviously speed up the startup speed of the program. Click "system tools" → "disk defragmenter". Note that when defragmenting the disk, the disk where the system is located must be defragmented, so as to really speed up the startup sequence of windows. 7、 Expand virtual memory capacity. If your hard disk is large enough, please open the system in the control panel, open the virtual memory in the performance option, and select the second option: the user can set the virtual memory settings by himself, point to a less used hard disk, and set the maximum and minimum values to a fixed value, which is about twice the size of the physical memory. In this way, when using the hard disk, the virtual memory does not have to accommodate the big and small differences, but takes the fixed space as the virtual memory to speed up the access speed. It is better to set the virtual memory after "disk defragmentation", so that the virtual memory can not be divided into a continuous, non fragmented file space, which can play a better role. 8、 Remove fancy settings like wallpaper and screen saver. These settings not only occupy system resources, but also seriously affect the Windows startup sequence. The way to get rid of them is: right click in the blank space of the desktop, select "properties" in the pop-up menu, select "background" and "Screen Saver" labels in the pop-up dialog box, and set "wallpaper" and "Screen Saver" to "None". 9、 Delete autoexec.bat and config.sys. Autoexec.bat and config.sys are two files in the root directory of the system. Windows does not need them any more. You can safely delete them, which can speed up the startup of windows. 10、 Simplify *. INI files, especially system.ini and win.ini. Many drivers and font files are loaded in the [boot] and [386enh] sections of system.ini, which is the key point of clearing. In particular, it should be noted that shell = explorer.exe in the [boot] field is a favorite place for Trojans to load secretly. Trojans usually change this sentence to this: shell = explorer.exe file.exe, note that the file.exe here is the Trojan server program! With the Trojan horse loading and running, it not only threatens the security of the system, but also slows down the startup of the computer; For the programs loaded after "run" and "load" in win.ini, which are not required to run every time you start up, you can temporarily clear them, and then click "run" when you want to use them later. In this way, the number of related files called by windows will be reced, and the startup speed will be much faster. 11、 Turn off disk scan. Open msdos.sys with a text editor, and you will see the following contents: [options] bootmuti = 1 bootgui = 1 Autoscan = 1. If you don't want to run the disk scanning program after an abnormal shutdown, you can change atuoscan = 1 to Autoscan = 0, so that the startup speed of the computer will be faster after an abnormal shutdown (because ScanDisk is not running). 12、 Make the stay time of guidance information shortest. Open msdos.sys with a text editor and set the bootdelay in [options] to 0. 13、 Rece unnecessary font files. Font files take up a lot of system resources, boot very slowly, and take up a lot of hard disk space. So try to rece unnecessary font files. But if you delete the wrong font file, it will make windows abnormal. Therefore, you can use the following method (to install font files without taking up a lot of disk space): first, open the font folder (such as F: 92; ZK), select all TrueType font files and drag them to C: 92 with the right mouse button; Windows\ In the fonts folder, select "create shortcut in current location" in the pop-up menu. In this way, the shortcut of font library file can be created in the font folder of the system. When you need to use these font files, just insert the font CD and take them out when not in use. 14、 Delete the rendant DLL file. There are many DLL files in the system subdirectory of window operating system. These files may be shared by many files, but some do not have a file to use. In other words, these files are useless. In order to not occupy the hard disk space and improve the startup speed, you can delete them completely. 15、 The way of "going the other way". If the system is suspended, the current system state will be saved after shutdown. After the next boot, the system will directly enter the desktop before the last shutdown. In this way, the fastest boot time can reach 4-5 seconds, but not all the BIOS on the motherboard support it, and the setup is a little troublesome. Open the registry and expand to HKEY_ LOCAL_ MACHINE\ SOFTWARE\ Microsoft\ Windows\ CurrentVersion\ There are many DLL files on the right. If the data is 0, it can be determined that there is no program sharing in the DLL file, and it can be deleted. If you follow the above method, the computer startup speed is still not fast enough. In addition to upgrading the hardware (CPU, memory, hard disk, etc.), another good way is to reload the system, which can obviously speed up the computer startup speed. If you don't believe me, try my computer. No matter how optimized, there is no big effect. If you check carefully, there is no poisoning phenomenon. It's very slow. I don't know why. I don't know if there are too many software installed. My computer software is installed a lot. Modify it: I've done everything, but I can't solve it. I've done everything, such as disk cleaning. Later, the system was restored, and now it's normal to boot. Your
8.
The reasons for this situation are: the power cable of the CPU fan on the motherboard is inserted incorrectly, the system BIOS can't detect the speed of the CPU fan, the CPU fan doesn't work normally, the speed is too low, and the motherboard BIOS is set incorrectly. The solution is as follows:
9. Dear Lenovo users
this error is caused by a problem with the fan ring the hardware self-test. It is recommended that you send the device to the service station for testing http://support1.lenovo.com.cn/lenovo/wsi/station/servicestation/default.aspx
for more questions, you can consult
idea Forum: http://lenovobbs.lenovo.com.cn/forum.php?intcmp=FM_ LBBS_ Reply
think Forum: http://thinkbbs.lenovo.com.cn/forum.php?intcmp=FM_ LBBS_ Reply
we are looking forward to your satisfactory comments. Thank you for your support to Lenovo and wish you a happy life!
this error is caused by a problem with the fan ring the hardware self-test. It is recommended that you send the device to the service station for testing http://support1.lenovo.com.cn/lenovo/wsi/station/servicestation/default.aspx
for more questions, you can consult
idea Forum: http://lenovobbs.lenovo.com.cn/forum.php?intcmp=FM_ LBBS_ Reply
think Forum: http://thinkbbs.lenovo.com.cn/forum.php?intcmp=FM_ LBBS_ Reply
we are looking forward to your satisfactory comments. Thank you for your support to Lenovo and wish you a happy life!
10. Minimize it ~ ~ ~ ~ generally, the minimization of online download will kill you ~ ~ ~ ~ take a look: before you start to search for the same situation as yourself from the following problem set, please confirm whether your computer is:
1. DirectX9.0 has been installed. If you have problems with 9.0a, please upgrade to 9.0b
2. Sound card and video card drivers have been installed, It's better to be Ms certified (geforce4 graphics card, don't use the latest driver)
3. Please set the virtual memory to be larger than 512M. It's recommended
4. Make sure that no other large-scale applications are running in the background of the system ring the game
5. You have used the software light
if you have completed all the above contents and the problem still exists, Then, please find the appropriate solution in the following problem set
unable to enter the game
1. Q: if there is an error message,
& quot; Exception: D:\ Project\ PAL3\ gamebase\ PAL3.cpp(401):Create GFX Manager Failed."
A:
1. You have not installed DirectX 9.0b
2. The display card driver installed on your computer is not the latest Microsoft Certified display card driver. Please update your display card driver
2. Q: you can't pass StarForce verification
there are similar problems with the second generation, I'm very good at picking pieces...
the serial number is the white serial number in the middle of the first piece. I've also tried the key.txt in the first disc, or I can't read it...
in addition, I've tried two CD-ROM drives that read the same disc content but can't execute the game. They're all stuck in SF. Is there any other solution
A: the problem with StarForce may be the selection of your CD-ROM. You may have to try different machines. I suggest you borrow the CD-ROM drive from your friends who have successfully installed it; Program Files\ SOFTSTAR\ PAL3\ Pal3.exe is not the correct application program for Win32
A: it is speculated that this EXE file has been damaged. Please use Windows disk detection tool to detect / repair it first to see if there is any problem. In addition, please use virus detection software to scan the hard disk, especially pal3.exe, to see if it is infected. At present, you may only think of these
4: Q: when executing the game, say: can't find the program input point ddentry10 (in the dynamic link library DDraw. DLL)
My equipment is as follows:
machine name: oem-7z51bgb8s25
operating system: Windows XP Home Edition (5.1, Build 2600) (2600.xpclient.010817-1148)
Language: Chinese (Regional Setting: Chinese)
System Manufacturer: AcerPower Sd
System Model: AWRDACPI
BIOS: Award Molar BIOS v6.00PG
Processor: Intel? Pentium? 4 CPU 1.60GHz
Memory: 112MB RAM
Page File: 124MB used, 143MB available
Windows Dir: C:\ Windows
DirectX version: DirectX 9.0b (4.09.0000.0902)
DX setup parameters: not found
dxdiag version: 5.03.0001.0902 32bit Unicode
A: please make sure directx9.0b is installed correctly
5. Q: many players mentioned that using AMD CPU can't pass StarForce verification. Some people said that StarForce prompted that CPU is not compatible with Intel and can't execute program
A: at present, StarForce protection is determined to be incompatible with some amd CPUs, the model is K6 or k6-ii, and most of these two CPUs are lower than piii-500 in speed, which basically does not meet the minimum requirements of the game. So please upgrade the CPU. If the more advanced AMD CPU still has this problem, please send us the CPU model and we will deal with it at the fastest speed
6. Q: input device create failed
A: the game can't create a DirectInput device, but can't play the game
solution:
1. When the game starts, don't click the mouse before the game screen appears, which will make the game window cut to the background, resulting in the game can't be carried out
2. Please confirm whether DirectX9.0 is installed correctly.
3. Please confirm whether the keyboard and mouse hardware are installed properly.: P
7. Q: the d3d9.dll file is missing.
if you jump out when executing the game after installing xianjiansan, The following message appears: = = =) no important. DLL file - d3d9. DLL (= = =
A: you should not have installed DirectX 9 correctly. Please install or re install it, restart the computer, and then execute it.
jump out and crash in the game
1. Q: after watching the opening animation, What's the matter?
My equipment is as follows:
operating system Windows98
CPU: pentium3 866mhz
memory 128MB ram
paging file: used 75 and 1845 can be used
directx9.0a
display card: voodoo4 4500 AGP
A: please try to update the graphics card driver . please refer to www.voodoofiles.com Website, or use the following link to download directly:
Win9x / me: 1.05
Win9x / me http://file4.mydrivers.com/files/display/Voodoolizer_ 1.05.00_ Win9x_ Me. Zip
WIN2000 / XP: 1.05
http://file4.mydrivers.com/files/display/Voodoolizer_ 1.05.00_ WinXP_ 2K. Zip
but the voodoo card is older, some hardware indicators may not meet the requirements of the game. If the driver cannot run after updating, you can only upgrade the video card< br />
2、 Q: After watching the animation, it will jump out or crash.
I tried to turn off all the special effects switches. After reading the animation, it will jump back to windows directly. But if it is turned on, it will crash directly. What should I do.
A:
1. Please explain the configuration in detail so that we can find the reason.
2. Please try to update the graphics card driver to see if the problem can be solved/ >3. Q: the main menu button can not be selected and the game will jump out
(1) after entering the main menu of the game, I can only choose & quot; A new beginning & quot; And & quot; Old memories & quot; What's the problem with pressing the other buttons, so I can't leave the game every time
(2) in the middle of the game, it often automatically jumps back to win to execute the program and disappears, which is terrible
A:
1. If many buttons in the main menu cannot be selected, run config.exe in the installation directory and open the software cursor to see if the problem can be solved
2. The most likely reason is the problem of system compatibility. The solution is to try to install a new graphics driver and direct9.0b< Q: after entering the game, it will crash or restart
(1) at the beginning, everything was normal... But soon after an earthquake, the screen will be & quot; Freezing & quot; (2) I had no problem in the beginning of the animation, but after entering the game, the protagonist said & quot; Did I hear you wrong& quot; After that, my computer immediately rebooted, I have removed and installed it several times, the result is the same! Excuse me, is this
A: please try to install the latest version of Microsoft Certified graphics driver to see if the problem can be solved. If not, please go to Microsoft to download directx9.0b
the web installation page is:
http://www.microsoft.com/downloads/details.aspx?displaylang=zh-cn&FamilyID=141d5f9e-07c1-462a-baef-5eab5c851cf5
5. Q: after entering the game, I jump out and report an error
problems I can't play: after I have installed all of them, I turn on the computer again, and then I enter the game and wait for about 20 seconds, When I saw Daewoo's words, I immediately jumped out, and there was a strange sound. I jumped out with a ddehelp, The detailed information is
ddhelp caused an invalid page fault in
mole (unknown) at 0000:842d5930.
registers:
eax = 842d5930 CS = 015f EIP = 842d5930 eflgs = 00010286
ebx = 00a4fcb4 SS = 0167 ESP = 00a4fc94 EBP = 00a4fcc8
ECX = 1000736a DS = 0167 ESI = 8459f2f8 FS = 1937
EDX = 00000001 ES = 0167 EDI = 844a0028 GS =0000
bytes at CS: EIP:
stack MP:
b00e0c16 00000000 b00e0b40 baad04be 00a4fcb4 844a0028 8459f2f8 00000000
8459f2f8 00000000 00000000 00a4fd0c b00e0b40 00a4fd64 baadb528 000
A: please try to make the windows virtual memory larger and recommend 512MB or more. In addition, it is suspected that the problem is Bink animation. When you play the animation again, do you want to use ESC key to skip it<
6. Q: after playing as a sword, the game jumps out
when playing as a sword in the pawnshop, when Jingtian wants to walk into the inner yard of the pawnshop, when he walks into the data reading screen! Jump back to the desktop in the middle of reading...
I've tried to restart the computer, but it doesn't work..
every time there's a problem) & quot; (
A: please try to make the virtual memory of windows larger than 512MB.
7 Q: My equipment is as follows: Microsoft Windows 98 4.90 (build 3000)
language family: Chinese (traditional)
CPU: authenticamd Athlon (TM) processor 1002mhz
memory: 256MB ram
paging file: 1MB remaining 1793mb
DirectX version: direct TX 8.0 or above version (4.09.00.0902)
display card:
NVIDIA geforce4 MX 440 with agp8x 63mb (ver: 4.14.10.4403)
sound card:
main sound driver
via audio (wave)
hard disk space:
C: \ 2717 MB/20510 MB
D:\ 2306 MB / 8776 MB
is my computer not equipped enough?? The driver of the display card has been recharged several times.
A:
1. Enough configuration, no problem.
2. Please try to re install Directx9.
3. Please try to use the older version of the driver of the display card.
8. Q: sometimes you will jump out of the game and return to the desktop ring the game.
A: please try to increase the virtual memory of windows, more than 512MB is recommended.
1. DirectX9.0 has been installed. If you have problems with 9.0a, please upgrade to 9.0b
2. Sound card and video card drivers have been installed, It's better to be Ms certified (geforce4 graphics card, don't use the latest driver)
3. Please set the virtual memory to be larger than 512M. It's recommended
4. Make sure that no other large-scale applications are running in the background of the system ring the game
5. You have used the software light
if you have completed all the above contents and the problem still exists, Then, please find the appropriate solution in the following problem set
unable to enter the game
1. Q: if there is an error message,
& quot; Exception: D:\ Project\ PAL3\ gamebase\ PAL3.cpp(401):Create GFX Manager Failed."
A:
1. You have not installed DirectX 9.0b
2. The display card driver installed on your computer is not the latest Microsoft Certified display card driver. Please update your display card driver
2. Q: you can't pass StarForce verification
there are similar problems with the second generation, I'm very good at picking pieces...
the serial number is the white serial number in the middle of the first piece. I've also tried the key.txt in the first disc, or I can't read it...
in addition, I've tried two CD-ROM drives that read the same disc content but can't execute the game. They're all stuck in SF. Is there any other solution
A: the problem with StarForce may be the selection of your CD-ROM. You may have to try different machines. I suggest you borrow the CD-ROM drive from your friends who have successfully installed it; Program Files\ SOFTSTAR\ PAL3\ Pal3.exe is not the correct application program for Win32
A: it is speculated that this EXE file has been damaged. Please use Windows disk detection tool to detect / repair it first to see if there is any problem. In addition, please use virus detection software to scan the hard disk, especially pal3.exe, to see if it is infected. At present, you may only think of these
4: Q: when executing the game, say: can't find the program input point ddentry10 (in the dynamic link library DDraw. DLL)
My equipment is as follows:
machine name: oem-7z51bgb8s25
operating system: Windows XP Home Edition (5.1, Build 2600) (2600.xpclient.010817-1148)
Language: Chinese (Regional Setting: Chinese)
System Manufacturer: AcerPower Sd
System Model: AWRDACPI
BIOS: Award Molar BIOS v6.00PG
Processor: Intel? Pentium? 4 CPU 1.60GHz
Memory: 112MB RAM
Page File: 124MB used, 143MB available
Windows Dir: C:\ Windows
DirectX version: DirectX 9.0b (4.09.0000.0902)
DX setup parameters: not found
dxdiag version: 5.03.0001.0902 32bit Unicode
A: please make sure directx9.0b is installed correctly
5. Q: many players mentioned that using AMD CPU can't pass StarForce verification. Some people said that StarForce prompted that CPU is not compatible with Intel and can't execute program
A: at present, StarForce protection is determined to be incompatible with some amd CPUs, the model is K6 or k6-ii, and most of these two CPUs are lower than piii-500 in speed, which basically does not meet the minimum requirements of the game. So please upgrade the CPU. If the more advanced AMD CPU still has this problem, please send us the CPU model and we will deal with it at the fastest speed
6. Q: input device create failed
A: the game can't create a DirectInput device, but can't play the game
solution:
1. When the game starts, don't click the mouse before the game screen appears, which will make the game window cut to the background, resulting in the game can't be carried out
2. Please confirm whether DirectX9.0 is installed correctly.
3. Please confirm whether the keyboard and mouse hardware are installed properly.: P
7. Q: the d3d9.dll file is missing.
if you jump out when executing the game after installing xianjiansan, The following message appears: = = =) no important. DLL file - d3d9. DLL (= = =
A: you should not have installed DirectX 9 correctly. Please install or re install it, restart the computer, and then execute it.
jump out and crash in the game
1. Q: after watching the opening animation, What's the matter?
My equipment is as follows:
operating system Windows98
CPU: pentium3 866mhz
memory 128MB ram
paging file: used 75 and 1845 can be used
directx9.0a
display card: voodoo4 4500 AGP
A: please try to update the graphics card driver . please refer to www.voodoofiles.com Website, or use the following link to download directly:
Win9x / me: 1.05
Win9x / me http://file4.mydrivers.com/files/display/Voodoolizer_ 1.05.00_ Win9x_ Me. Zip
WIN2000 / XP: 1.05
http://file4.mydrivers.com/files/display/Voodoolizer_ 1.05.00_ WinXP_ 2K. Zip
but the voodoo card is older, some hardware indicators may not meet the requirements of the game. If the driver cannot run after updating, you can only upgrade the video card< br />
2、 Q: After watching the animation, it will jump out or crash.
I tried to turn off all the special effects switches. After reading the animation, it will jump back to windows directly. But if it is turned on, it will crash directly. What should I do.
A:
1. Please explain the configuration in detail so that we can find the reason.
2. Please try to update the graphics card driver to see if the problem can be solved/ >3. Q: the main menu button can not be selected and the game will jump out
(1) after entering the main menu of the game, I can only choose & quot; A new beginning & quot; And & quot; Old memories & quot; What's the problem with pressing the other buttons, so I can't leave the game every time
(2) in the middle of the game, it often automatically jumps back to win to execute the program and disappears, which is terrible
A:
1. If many buttons in the main menu cannot be selected, run config.exe in the installation directory and open the software cursor to see if the problem can be solved
2. The most likely reason is the problem of system compatibility. The solution is to try to install a new graphics driver and direct9.0b< Q: after entering the game, it will crash or restart
(1) at the beginning, everything was normal... But soon after an earthquake, the screen will be & quot; Freezing & quot; (2) I had no problem in the beginning of the animation, but after entering the game, the protagonist said & quot; Did I hear you wrong& quot; After that, my computer immediately rebooted, I have removed and installed it several times, the result is the same! Excuse me, is this
A: please try to install the latest version of Microsoft Certified graphics driver to see if the problem can be solved. If not, please go to Microsoft to download directx9.0b
the web installation page is:
http://www.microsoft.com/downloads/details.aspx?displaylang=zh-cn&FamilyID=141d5f9e-07c1-462a-baef-5eab5c851cf5
5. Q: after entering the game, I jump out and report an error
problems I can't play: after I have installed all of them, I turn on the computer again, and then I enter the game and wait for about 20 seconds, When I saw Daewoo's words, I immediately jumped out, and there was a strange sound. I jumped out with a ddehelp, The detailed information is
ddhelp caused an invalid page fault in
mole (unknown) at 0000:842d5930.
registers:
eax = 842d5930 CS = 015f EIP = 842d5930 eflgs = 00010286
ebx = 00a4fcb4 SS = 0167 ESP = 00a4fc94 EBP = 00a4fcc8
ECX = 1000736a DS = 0167 ESI = 8459f2f8 FS = 1937
EDX = 00000001 ES = 0167 EDI = 844a0028 GS =0000
bytes at CS: EIP:
stack MP:
b00e0c16 00000000 b00e0b40 baad04be 00a4fcb4 844a0028 8459f2f8 00000000
8459f2f8 00000000 00000000 00a4fd0c b00e0b40 00a4fd64 baadb528 000
A: please try to make the windows virtual memory larger and recommend 512MB or more. In addition, it is suspected that the problem is Bink animation. When you play the animation again, do you want to use ESC key to skip it<
6. Q: after playing as a sword, the game jumps out
when playing as a sword in the pawnshop, when Jingtian wants to walk into the inner yard of the pawnshop, when he walks into the data reading screen! Jump back to the desktop in the middle of reading...
I've tried to restart the computer, but it doesn't work..
every time there's a problem) & quot; (
A: please try to make the virtual memory of windows larger than 512MB.
7 Q: My equipment is as follows: Microsoft Windows 98 4.90 (build 3000)
language family: Chinese (traditional)
CPU: authenticamd Athlon (TM) processor 1002mhz
memory: 256MB ram
paging file: 1MB remaining 1793mb
DirectX version: direct TX 8.0 or above version (4.09.00.0902)
display card:
NVIDIA geforce4 MX 440 with agp8x 63mb (ver: 4.14.10.4403)
sound card:
main sound driver
via audio (wave)
hard disk space:
C: \ 2717 MB/20510 MB
D:\ 2306 MB / 8776 MB
is my computer not equipped enough?? The driver of the display card has been recharged several times.
A:
1. Enough configuration, no problem.
2. Please try to re install Directx9.
3. Please try to use the older version of the driver of the display card.
8. Q: sometimes you will jump out of the game and return to the desktop ring the game.
A: please try to increase the virtual memory of windows, more than 512MB is recommended.
Hot content