To be a better coder
发布时间:2019-06-04 09:46:53
查看服务器型号 方法一# grep 'DMI' /var/log/dmesgDMI: Dell Inc. PowerEdge R720/******, BIOS 2.4.3 07/09/2014方法二# yum -y install dmidecode# dmidecode |grep -A4 'System Information'System Information Manufacturer: Dell Inc. Product Name: PowerEdge R72.........【阅读全文】
发布时间:2019-06-03 15:51:09
原文:https://blog.csdn.net/bigjordon/article/details/77247527标题中的打印是在内核的 show_fault_oops 函数打印的。static void show_fault_oops(struct pt_regs *regs, unsigned long error_code, unsigned long address){.... printk(KERN_ALERT "BUG: una.........【阅读全文】
发布时间:2019-06-03 15:11:15
1、Unable to handle kernel paging request at virtual address 00000000 =====》越出内核地址空间范围,原因是由于使用空NULL指针2、Unable to handle kernel paging request at virtual address 20100110 =====》越出内核地址空间范围.........【阅读全文】