两侧同时换到之前的修订记录 前一修订版 后一修订版 | 前一修订版 |
public:it:linux:start [2021/04/06 15:47] – [Linux] oakfire | public:it:linux:start [2024/09/18 14:32] (当前版本) – [Linux] oakfire |
---|
* [[linux-program]] | * [[linux-program]] |
* [[shell]] | * [[shell]] |
| * [[.: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]] |
* MATE: [[https://zh.wikipedia.org/wiki/MATE|zh wiki]], [[https://mate-desktop.org/zh_cn/|mate-desktop.org]] | * MATE: [[https://zh.wikipedia.org/wiki/MATE|zh wiki]], [[https://mate-desktop.org/zh_cn/|mate-desktop.org]] |
* Budgie: [[https://zh.wikipedia.org/wiki/Budgie_(%E6%A1%8C%E9%9D%A2%E7%8E%AF%E5%A2%83)|zh wiki]] | * Budgie: [[https://zh.wikipedia.org/wiki/Budgie_(%E6%A1%8C%E9%9D%A2%E7%8E%AF%E5%A2%83)|zh wiki]] |
* Xfce: [[https://www.xfce.org/|xfce.org]] 轻量 | * Xfce: [[https://www.xfce.org/|xfce.org]] [[https://wiki.archlinux.org/title/xfce|archlinux wiki]]轻量 |
* 获取桌面环境 | * 获取桌面环境 |
* 桌面环境中可用''echo $XDG_CURRENT_DESKTOP''或''echo $DESKTOP_SESSION'' 查看 | * 桌面环境中可用''echo $XDG_CURRENT_DESKTOP''或''echo $DESKTOP_SESSION'' 查看 |
</code> | </code> |
* 一个图形信息软件 ''sudo apt install hardinfo'' | * 一个图形信息软件 ''sudo apt install hardinfo'' |
| * 桌面图标设置 [[https://wiki.deepin.org/wiki/Desktop_Entry_%E6%96%87%E4%BB%B6|Desktop Entry]] |
===== Package manager ===== | ===== Package manager ===== |
* debian 系用dpkg/APT,//.deb// ''dpkg'', ''apt-get'', ''aptitude'' | * debian 系用dpkg/APT,//.deb// ''dpkg'', ''apt-get'', ''aptitude'' |
===== 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 查看说明. |