上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 117 下一页
摘要: 查找matlab有关的函数,还得是matlab的官网给力 https://ww2.mathworks.cn/help/control/ref/tf.html?searchHighlight=tf&s_tid=srchtitle_support_results_1_tf,内容如下: 阅读全文
posted @ 2024-01-02 11:23 叕叒双又 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1 --archive-headers 2 -a 3 显示档案库的成员信息,类似ls -l将lib*.a的信息列出。 4 5 -b bfdname 6 --target=bfdname 7 指定目标码格式。这不是必须的,objdump能自动识别许多格式,比如: 8 9 objdump -b oasy 阅读全文
posted @ 2024-01-02 10:11 叕叒双又 阅读(156) 评论(4) 推荐(0) 编辑
摘要: 一种是颜色突出显示,原文见:https://www.cnblogs.com/guochaoxxl/p/6823135.html 另一种是借助工具,manpage的pager命令是借助less命令完成的,如果将pager借助most命令,由于most的自动着色功能就可以使page页面彩色了。 1 安装 阅读全文
posted @ 2024-01-02 08:44 叕叒双又 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 出现问题的地方;加载小部件 装入 QML 文件出错,file:///home//.local/share/plasma/plasmoids/com.github.zren.todolist/contents/ui/main.qml:10:2: Type NoteItem unavailable fi 阅读全文
posted @ 2024-01-01 19:14 叕叒双又 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 一种解决方法:https://blog.csdn.net/qq_23274715/article/details/104710448 具体方法ubuntu: 1、安装软件包 sudo apt update sudo apt install manpages-zh.使用此命令安装中文manpages库 阅读全文
posted @ 2023-12-31 22:07 叕叒双又 阅读(107) 评论(1) 推荐(0) 编辑
摘要: 原文:https://www.51cto.com/article/720922.html 1. 背景 长期以来只知道 ELF 是一种广泛使用的文件格式规范,常指动态库、bin等,一直没动力深入研究。出于业务需求,我花了好些天仔细分析 RTOS Bin 的 Section 和 Symbol 。也是趁着 阅读全文
posted @ 2023-12-31 20:36 叕叒双又 阅读(22) 评论(1) 推荐(0) 编辑
摘要: hd study objdum -D study readelf -X study X可以是(h, l, S, g, t, e, s)等,前两者差不多,只不过是前者更加真实,后者更加容易理解而已。后面的就可以分块了。 阅读全文
posted @ 2023-12-31 18:06 叕叒双又 阅读(3) 评论(0) 推荐(0) 编辑
摘要: address:https://www.opensourceforu.com/2020/02/understanding-elf-the-executable-and-linkable-format/ Whenever we compile any code, the output that we 阅读全文
posted @ 2023-12-31 18:03 叕叒双又 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 话不多说,直接上代码,为了验证elf的,编了了示例代码study.c 1 #include <stdio.h> 2 3 #define NUMBER_1 1 4 #define NUMBER_2 2 5 6 int main(int argc, char **argv) 7 { 8 int a; 9 阅读全文
posted @ 2023-12-30 21:39 叕叒双又 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 代码如下program8_6.c: 1 #include <stdio.h> 2 3 int a = 0x55555555; 4 int b = 0x66666666; 5 int c = 0x77777777; 6 int d = 0x88888888; 7 8 int main() 9 { 10 阅读全文
posted @ 2023-12-30 17:52 叕叒双又 阅读(67) 评论(2) 推荐(0) 编辑
摘要: 使用命令readelf -l /usr/bin/chmod,结果: Elf file type is DYN (Position-Independent Executable file) Entry point 0x41e0 There are 13 program headers, startin 阅读全文
posted @ 2023-12-30 17:08 叕叒双又 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 1 主要包括如下程序: sudo apt install lolcat aewan cowsay jp2a linuxlogo neoftechfortune pv cmatrix cbonsai 2 fortune:人们喜欢阅读随机的预测或说法,该工具用来缓解无聊的时光。 上边是没有lolcat的 阅读全文
posted @ 2023-12-30 11:24 叕叒双又 阅读(29) 评论(0) 推荐(0) 编辑
摘要: ffmpeg -i input.mp4 output.gif 输入文件:input.mp4,不止这种,可以是其他视频文件 输出文件:output.gif 阅读全文
posted @ 2023-12-30 10:48 叕叒双又 阅读(7) 评论(0) 推荐(0) 编辑
摘要: plugin=org.kde.plasma_applet_dict https://develop.kde.org/docs/plasma/scripting/keys/ org.kde.plasma_applet_dict General dictionary: (String, default: 阅读全文
posted @ 2023-12-29 15:48 叕叒双又 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 前提条件就是已经安装了zotero软件。 1 下载zotero的翻译插件,网络可以的童鞋到这里下载,至于怎么才能下载,自己解决吧。 https://github.com/windingwind/zotero-pdf-translate/releases/tag/v1.0.25 2 安装插件,菜单中工 阅读全文
posted @ 2023-12-29 10:09 叕叒双又 阅读(649) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 117 下一页