當前位置:首頁 » 以太坊知識 » 以太坊pending

以太坊pending

發布時間: 2021-04-27 22:11:25

Ⅰ 電腦藍屏 0x000000CERIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS

代碼名:0x0000000A

描述:環境不正確。 停機代碼 0x0000000A: IRQL_NOT_LESS_OR_EQUAL ◆錯誤分析:主要是由有問題的驅動程序,有缺陷或不兼容的硬體與軟體造成的。從技術角度講,表明在內核模式中存在以太高的進程內部請求級別(IRQL)訪問其沒有許可權訪問的內存地址。 實例1:在安裝Windows 2000/XP 時出現 除檢查硬體是否符合兼容性列表外,還應採取以下措施。 (1)在安裝啟動過程中,當「Setup is inspecting yourcomputer's hardware configuration」消息出現時按F5 鍵,當得到提示時,指定正確的計算機類型和硬體抽象層 (HAL)。一般用戶(只安裝了一個CPU),請指定「Standard PC HAL」。 (2)關閉CMOS 設置中所有緩存及映射(shadowing)設置項、即插即用選項以及病毒保護功能。 (3)斷開那些對於電腦啟動非必需的硬體,包括網卡、內置數據機、音效卡、第二塊硬碟。同時檢查硬碟的跳線是否設置為主跳線,並檢查光碟機的跳線是否正確。 (4)如果是從Windows 2000 升級到Windows XP,還需要卸載所有殺毒軟體和啟動管理軟體(比如:Norton GoBack等),並且去掉所有不必要的硬體,斷開所有USB 設備和列印機。 實例2:在使用Windows 2000/XP 時出現 (1)檢查最新安裝的軟體和硬體驅動程序卸載或禁用它們,推薦使用安全模式來完成這個任務,如果是驅動程序,則推薦使用Windows XP 的驅動程序返回功能來恢復原有的驅動程序。 (2)如果Windows 無法啟動首先嘗試使用「最後一次正確配置」來解決問題。如果無效,則按照下面的方法來解決。 ★ Windows XP:使用安裝光碟進入故障恢復控制台,運行「%systemroot%\system32\restore\rstrui.exe」命令,然後按照提示進行系統還原操作即可。 ★ Windows 2000:記下藍屏信息中顯示的文件名,找到一台和你的電腦軟、硬體配置類似的電腦,打開「注冊表編輯器」,找到[ H K E Y _ L O C A L _ M A C H I N E \ S Y S T E M\CurrentControlSet\Services],這里保存了系統中每一個設備、服務的注冊信息,請細細查看每條信息,特別是右側窗格中的「DiskPlayName」,一些驅動程序會在這里標明設備驅動用途的描述,另外,在「ImagePath」鍵值後面有相應文件名,這也是關注的要點,需要對照你抄下來的文件名。用Windows 2000 安裝光碟進入「故障恢復控制台」,接著進入C:\WINNT\System32 目錄,輸入「listsvc」,回車後會列出當前系統所安裝的服務或設備,找到並記下與新裝硬體或軟體相關的服務或設備名,然後輸入「disable 服務或設備名」,回車即可將其停止。

Ⅱ 如何在SLES下配置Bonding

To avoid problems it is advisable that all network cards use the same driver. If they use different drivers, please take the following into consideration:

There are three driver-dependent methods for check whether a network card has a link or a network connection.

* MII link status detection
* Register in the driver netif_carrier
* ARP monitoring

It is very important that the used drivers support the same method. If this is not the case because e.g. the first network card driver only supports MII link status detection whereas the second driver just supports netif_carrier, the only solution is to replace the network card in order to use a different driver.

To find out what method is supported by your driver, proceed as follows:

* MII link status can be determined with the tools mii-tool or ethtool.

* In the case of netif_carrier and ARP monitoring, refer to the driver's source code to find out whether these methods are supported or not. The corresponding kernel sources must be installed for this purpose. Regarding netif_carrier, search exactly for this string in the driver's source code, e.g.

grep netif_carrier via-rhine.c

As for the ARP monitoring method, the driver must support either the register last_rx or trans_start. Thus, you can search in the driver's source code for:

grep "last_rx\|trans_start" via-rhine.c

Start with the setup only after having verified this.
Procere

In this sample scenario, two network cards will be combined by way of bonding mode=1 (active backup).

1. Configure your network cards with YaST. Allocate the IP address that must be used for the bonding device to one network card and a mmy IP address to the rest of network cards.

2. Copy the configuration of the network card with the right IP address to a file ifcfg-bond0.

cd /etc/sysconfig/network
cp ifcfg-eth-id--xx:xx:xx:xx:xx:01 ifcfg-bond0

3. Find out and write down the PCI IDs of all the involved network cards.

For example:

linux:~ # grep bus-pci ifcfg-eth-id--xx:xx:xx:xx:xx:01
_nm_name='bus-pci-0000:00:09.0'
linux:~ # grep bus-pci ifcfg-eth-id--xx:xx:xx:xx:xx:02
_nm_name='bus-pci-0000:00:0a.0'
linux:~ #

4. Edit the file ifcfg-bond0 previously created and insert the following lines.

BONDING_MASTER=yes
BONDING_SLAVE_0='bus-pci-0000:00:09.0'
BONDING_SLAVE_1='bus-pci-0000:00:0a.0'

Now insert the options for the bonding mole. Depending on what link detection method you are using, the line may look like this:
* MII link detection method
BONDING_MODULE_OPTS='miimon=100 mode=1 use_carrier=0'

* netif_carrier method
BONDING_MODULE_OPTS='miimon=100 mode=1 use_carrier=1'

* ARP monitoring method
BONDING_MODULE_OPTS='arp_interval=2500 arp_ip_target=192.168.1.1 mode=1'

5. Remove the old configuration files

linux:~ # rm ifcfg-eth-id--xx:xx:xx:xx:xx:01
linux:~ # rm ifcfg-eth-id--xx:xx:xx:xx:xx:02

6. Restart the network with

rcnetwork restart

Additional Information

Occasionally it has been experienced that not all network interfaces come up after a system reboot. To prevent this, the loading of the moles should start earlier ring the reboot process. The following procere is helpful in this case:

1. Edit the file /etc/sysconfig/kernel and add this line:

MODULES_LOADED_ON_BOOT="bcm5700"

2. Reboot the server and check the status of all network interfaces, using commands lspci and ifconfig.

3. If this method is not successful, edit the file /etc/sysconfig/kernel again and remove the line inserted at step 1. Modify the line containing the INITRD_MODULES statement; add the bcm5700 to this line. It should read like INITRD_MODULES="cdrom scsi_mod ide-cd ehci-hcd reiserfs bcm5700"

4. Call command mkinitrd

5. Reboot the server as in step 2

Another method is to delay the starting of the network interfaces after loading the moles. To do this, edit the file /etc/sysconfig/network/config and change the variable WAIT_FOR_INTERFACES to the wanted delay in seconds. To delay the interfaces 3 seconds, enter

WAIT_FOR_INTERFACES=3

Reboot the server to verify the success of this measure.

當然也可以採用一些簡單的辦法,例如直接修改 /etc/init.d/network 網路啟動腳本。
在start) 部分的結尾處添加 ipbonding 的手工腳本,例如:

ifconfig eth0 0.0.0.0
ifconfig eth1 0.0.0.0
modprobe bonding miimon=100 mode=1 use_carrier=1
ifconfig bond0 192.168.1.123 netmask 255.255.255.0
ifenslave bond0 eth0
ifenslave bond0 eth1
route add default gw 192.168.1.1

然後在 stop) 部分開始考慮添加:
ifdown bond0
rmmod bonding

熱點內容
比特幣購買網址 發布:2025-07-27 15:14:42 瀏覽:418
btc是什麼課程 發布:2025-07-27 15:13:14 瀏覽:540
uupool礦池售後服務 發布:2025-07-27 15:13:00 瀏覽:96
自然雜志稱中國陷入區塊鏈流行病 發布:2025-07-27 15:09:03 瀏覽:214
元宇宙招聘一萬員工 發布:2025-07-27 15:07:29 瀏覽:779
移動合約卡怎麼注銷網上怎麼注銷 發布:2025-07-27 14:55:06 瀏覽:80
etc與eth 發布:2025-07-27 14:49:03 瀏覽:557
空中比特幣涉嫌詐騙 發布:2025-07-27 14:35:52 瀏覽:272
在word中怎麼把數字換成貨幣 發布:2025-07-27 14:27:27 瀏覽:113
漫威噬元獸吞掉的宇宙魔方 發布:2025-07-27 13:29:32 瀏覽:488