08 2018 档案

摘要:操作系统在做硬件适配时,经常会检查系统内核是否支持硬件的显卡;如果不支持,则一般是通过升级内核或者该型号对应品牌的显卡驱动来解决(开源或者闭源); 操作流程如下 1> 查询本机的显卡型号 因显卡一般是PCI接口,可以通过lspci查询显卡相关信息,下图可以看出有两张显卡, 集成显卡 硬件厂商 Int 阅读全文
posted @ 2018-08-30 17:31 无边身尊者 阅读(6174) 评论(0) 推荐(0)
摘要:部分参考链接: 2.4+ httpd最简单example.conf, 存放目录:/etc/httpd/conf.d/example.conf # # AllowOverride controls what directives may be placed in .htaccess files. # 阅读全文
posted @ 2018-08-23 16:50 无边身尊者 阅读(1778) 评论(0) 推荐(0)
摘要:问题描述: 1.编译某qt工程的32位架构二进制包时,出现了上面错误,具体错误信息如下 但是编译64位架构的rpm包时并没有报错,网上查询了标题bug相关信息,https://forum.qt.io/topic/56552/solved-pi2-qt5-4-1-std-errors-configur 阅读全文
posted @ 2018-08-16 11:50 无边身尊者 阅读(5826) 评论(0) 推荐(0)
摘要:#include #include #define ElemType int #define Status int #define OK 0 #define ERROR -1 typedef struct Node { ElemType data; struct Node * next; }Node; typedef... 阅读全文
posted @ 2018-08-13 00:10 无边身尊者 阅读(1917) 评论(0) 推荐(0)
摘要:#include #include #define ElemType int #define Status int #define OK 0 #define ERROR -1 typedef struct { ElemType data; struct Node *next; }Node; typedef struct No... 阅读全文
posted @ 2018-08-12 11:48 无边身尊者 阅读(226) 评论(0) 推荐(0)
摘要:方法1:更改全局配置文件/etc/profile 方法2:仅针对Gnome或MATE桌面系统, 根据GSetttings配置原理添加override文件 note:命令行下查询Gsetting数据库键值的方法 [cxy@localhost-live x86_64]$ gsettings用法: gse 阅读全文
posted @ 2018-08-02 15:11 无边身尊者 阅读(11267) 评论(0) 推荐(0)