06 2020 档案

摘要:Using a separate service Tip: These steps can be automated by installing the systemd-numlockonttyAUR package and enabling the numLockOnTty service. Fi 阅读全文
posted @ 2020-06-29 10:13 刘大侠GG_B 阅读(415) 评论(0) 推荐(0)
摘要:系统安装无法找到引导 按下F12,使用一个带有系统的u盘进入救援模式。 进入救援模式 确认引导目录的所在的分区。 挂载引导目录将引导目录名修改为大厂的名字如centos 阅读全文
posted @ 2020-06-24 17:25 刘大侠GG_B 阅读(945) 评论(0) 推荐(0)
摘要:![](https://img2020.cnblogs.com/blog/1859245/202006/1859245-20200624163740040-1713546292.png) 阅读全文
posted @ 2020-06-24 16:38 刘大侠GG_B 阅读(142) 评论(0) 推荐(0)
摘要:D-Bus 1.13.14 Main Page Related Pages Modules Data Structures Files Data Structures | Typedefs | Functions Error reporting D-Bus low-level public API 阅读全文
posted @ 2020-06-11 13:49 刘大侠GG_B 阅读(198) 评论(0) 推荐(0)
摘要:dbus的C API D-Bus 1.13.10 Main Page Related Pages Modules **+**Data Structures **+**Files Data Structures | Typedefs | Enumerations | Functions DBusCon 阅读全文
posted @ 2020-06-11 13:47 刘大侠GG_B 阅读(2157) 评论(0) 推荐(0)
摘要:D-Bus 1.13.14 Main Page Related Pages Modules Data Structures Files Typedefs | Functions Address parsing D-Bus low-level public API Parsing addresses 阅读全文
posted @ 2020-06-11 13:45 刘大侠GG_B 阅读(427) 评论(0) 推荐(0)
摘要:##list.h /******* 链表实现,来自内核 **************************************************/ /** * container_of - cast a member of a structure out to the containin 阅读全文
posted @ 2020-06-11 13:40 刘大侠GG_B 阅读(329) 评论(0) 推荐(0)
摘要:RPM打包浅析 0:需要储备的知识及其教学目的: 需要要储备的知识 对makefile有一定的了解。 C代码的编译及基本的C语法。 注:只需要能基本看懂第二节做好准备打包一个简单程序的内容即可。 教学目的 能将自己编写的程序打包成RPM包,发布到网上供大家下载并安装使用。 一:RPM 基础知识 若要 阅读全文
posted @ 2020-06-11 09:20 刘大侠GG_B 阅读(739) 评论(0) 推荐(0)
摘要:#include "stdafx.h" #include using namespace std; class aa{ int num; public: aa(); void out1(){ cout<<num<<endl; } void out2() const{ cout<<num<<endl; 阅读全文
posted @ 2020-06-09 11:09 刘大侠GG_B 阅读(165) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2020-06-01 16:01 刘大侠GG_B 阅读(7) 评论(0) 推荐(0)
摘要:C语言宏中"#"和"##"的用法 在查看linux内核源码的过程中,遇到了许多宏,这里面有许多都涉及到"#"和"##",因此,在网上搜索了一些资料,整理如下:一、一般用法 我们使用#把宏参数变为一个字符串,用##把两个宏参数贴合在一起. 用法: #include<cstdio> #include<c 阅读全文
posted @ 2020-06-01 15:36 刘大侠GG_B 阅读(191) 评论(0) 推荐(0)