两侧同时换到之前的修订记录 前一修订版 后一修订版 | 前一修订版 |
public:it:linux:start [2022/01/12 11:26] – oakfire | public:it:linux:start [2024/09/18 14:32] (当前版本) – [Linux] oakfire |
---|
* [[shell]] | * [[shell]] |
* [[.:gsettings]] | * [[.:gsettings]] |
| * [[network]] |
| * [[https://paper.seebug.org/779/|驱动开发入门]]这个技术博客其他文章也很不错=) |
| * [[wp>Direct_Rendering_Manager|DRM 子系统]]: Direct Rendering Manager(DRM)是linux内核子系统,负责与显卡交互 |
| * [[https://blog.csdn.net/weixin_41028621/article/details/110202300|libdrm]] |
| * [[https://unix.stackexchange.com/questions/33596/no-framebuffer-device-how-to-enable-it| 关于显示 framebuffer]] |
===== Fun ===== | ===== Fun ===== |
* [[cmatrix]] | * [[cmatrix]] |
* [[https://www.ibm.com/developerworks/cn/linux/l-cn-dumpanalyse/index.html|使用 Crash 工具分析 Linux dump 文件]] | * [[https://www.ibm.com/developerworks/cn/linux/l-cn-dumpanalyse/index.html|使用 Crash 工具分析 Linux dump 文件]] |
* ''/proc''下的信息:[[http://man7.org/linux/man-pages/man5/proc.5.html]] | * ''/proc''下的信息:[[http://man7.org/linux/man-pages/man5/proc.5.html]] |
| * linux 怎么添加i2c设备的方法:https://www.kernel.org/doc/Documentation/i2c/instantiating-devices |
===== Desktop ===== | ===== Desktop ===== |
* [[X11]] | * [[X11]] |
===== Tips ===== | ===== Tips ===== |
==== 文件查找 ==== | ==== 文件查找 ==== |
| * https://www.madebygps.com/an-intro-to-finding-things-in-linux/ |
* **which** : 查看命令关联之文件(或link) | * **which** : 查看命令关联之文件(或link) |
* **locate** : 该命令需要索引数据库作为支撑,在 Ubuntu 中数据库文件位于 ''/var/cache/locate/locatedb''。一般来说,这个数据库文件每天通过 cron 自动更新。可执行 ''sudo updatedb'' 来手动更新。 假如想要查找一个名为 linux.html 的文件,可以执行:''locate linux.html''。locate 选项 ''-r''即可使用正则表达式。具体 man locate 查看说明. | * **locate** : 该命令需要索引数据库作为支撑,在 Ubuntu 中数据库文件位于 ''/var/cache/locate/locatedb''。一般来说,这个数据库文件每天通过 cron 自动更新。可执行 ''sudo updatedb'' 来手动更新。 假如想要查找一个名为 linux.html 的文件,可以执行:''locate linux.html''。locate 选项 ''-r''即可使用正则表达式。具体 man locate 查看说明. |