当前位置: 首页 > news >正文

做网站会不会亏本山东服务好的seo

做网站会不会亏本,山东服务好的seo,网页设计比赛策划案,黔西南建设厅网站前言 musl 是一个轻量级的标准C库,建立在系统调用之上,可以认为是【用户态】的C 库,与 glibc 或者 uClibc 属于同一类。 基于 musl 的 gcc 工具链包括交叉编译工具链,可以用于编译 Linux 或者其他的操作系统,如当前 L…

前言

  • musl 是一个轻量级的标准C库,建立在系统调用之上,可以认为是【用户态】的C 库,与 glibc 或者 uClibc 属于同一类。

  • 基于 musl 的 gcc 工具链包括交叉编译工具链,可以用于编译 Linux 或者其他的操作系统,如当前 Lite-OS、RT-Smart 上都采用 musl gcc 作为编译工具链,使用 musl libc作为用户态应用的C 库。

  • musl 基于 MIT 授权,开源、轻量、免费,估计越来越多的操作系统开始采用 musl 作为标准C库

  • 最近也一直在研究 musl libc 的 ldso,也就是动态加载功能,musl 的 动态加载功能集成在 musl libc.so 中。

elf 格式文件

  • musl 本身集成了 动态加载 功能 ldso,初步看了代码,发现支持 elf 格式的动态编译的应用程序加载。

  • 使用 musl gcc 工具链(交叉编译工具链)编译的应用程序,可以通过 readelf -l xxx.elf,查看 elf 文件的是否存在动态链接信息,如果包含则需要使用 musl ldso 对依赖的共享库进行加载

  • 示例: 查看一个动态链接的应用程序是否存在 【解释器段】信息: INTERP 类型的

命令:aarch64-linux-musleabi-readelf.exe -l glib_gio_test_s.elf 或者 readelf.exe -l glib_gio_test_s.elf

发现 存在 INTERP 段信息, [Requesting program interpreter: /lib/ld-musl-aarch64.so.1]

在这里插入图片描述

查看 elf 文件依赖的共享库

  • 静态编译的 elf,没有 动态链接信息,也不依赖 共享库,而动态编译链接的 elf 文件,存在动态链接信息,通过 aarch64-linux-musleabi-readelf.exe -d glib_gio_test_s.elf 或者 readelf.exe -d glib_gio_test_s.elf,可以查看依赖的共享库

在这里插入图片描述

查看 elf 的头部信息

  • 使用 aarch64-linux-musleabi-readelf.exe -h glib_gio_test_s.elf 或者 readelf.exe -h glib_gio_test_s.elf 可以查看应用程序 elf 的头部信息,如获取 入口函数地址等

在这里插入图片描述

查看 elf 符号信息

  • 所谓 elf 符号,就是一些变量名、函数名、数组等,依旧可以通过 readelf 来查看

aarch64-linux-musleabi-readelf.exe -s glib_gio_test_s.elf 或者 readelf.exe -s glib_gio_test_s.elf,注意由于有些 应用程序 elf 文件的符号特别多,所以可以输出到一个文本文件,然后使用文件查看工具进行查看

aarch64-linux-musleabi-readelf.exe -s glib_gio_test_s.elf > sym_01.s ,这里 把符号导出到 sym_01.s 文件,然后用文本查看工具打开查看

在这里插入图片描述

elf 查看工具

  • 以上是 elf 文件 通过 readelf 进行查看,那么还有其他的工具可以查看 elf 文件吗?

  • 推荐使用 :EmEditor 二进制查看工具,可以查看、搜索、编辑二进制文件, elf 文件其实也是二进制文件。

在这里插入图片描述

  • 推荐使用 Die,大名鼎鼎的 Detect It Easy 工具进行 elf 文件的解析查看,可以二进制查看、反汇编、查看 各个段、节等信息

  • 使用 die 打开一个 elf 文件

在这里插入图片描述

  • 使用 die 查看 elf 文件信息: elf 头部
    在这里插入图片描述

小结

  • 本篇主要记录 elf 文件的查看,初步了解一下 要动态加载的 文件,也就是 研究动态加载之前,一定要熟悉 elf 格式的文件,文件组成、文件头部、文件 Program Header,文件的各个段,文件的 节,动态加载需要加载 elf 文件的哪些内容

  • 当前了解到, 一个 elf 文件 只有一个 头部、有一个或者多个 Program Header,一个 Program Header 的大小是固定的,也就是一个结构体,里面的内容描述一个 段Segment 信息, 一个 elf 文件有多少个 Program Header? 这个需要通过解析 elf 文件的 头部: elf Header 获取到

  • 建议查看 elf 的标准规范,熟悉 elf ,熟悉 elf 组成、加载机制,这样对后面研究动态加载非常重要。


文章转载自:
http://dinncodisastrously.tpps.cn
http://dinncoigg.tpps.cn
http://dinncojonnick.tpps.cn
http://dinncoapproximative.tpps.cn
http://dinncoincrement.tpps.cn
http://dinncohistolysis.tpps.cn
http://dinncovane.tpps.cn
http://dinncopsychopathia.tpps.cn
http://dinncofactum.tpps.cn
http://dinncosyndeton.tpps.cn
http://dinncoelectroconvulsive.tpps.cn
http://dinncoenvoi.tpps.cn
http://dinncobicolour.tpps.cn
http://dinncoaspirant.tpps.cn
http://dinncoecthlipses.tpps.cn
http://dinncovorticella.tpps.cn
http://dinncoaurous.tpps.cn
http://dinncogrenoble.tpps.cn
http://dinncovirgate.tpps.cn
http://dinncoagrologic.tpps.cn
http://dinncopickapack.tpps.cn
http://dinncojuberous.tpps.cn
http://dinncorecreant.tpps.cn
http://dinncohouseplace.tpps.cn
http://dinncoflowered.tpps.cn
http://dinncoemployless.tpps.cn
http://dinncobibliotheca.tpps.cn
http://dinncogamin.tpps.cn
http://dinncocountry.tpps.cn
http://dinncododad.tpps.cn
http://dinncorocketry.tpps.cn
http://dinncovitaphone.tpps.cn
http://dinncodejected.tpps.cn
http://dinncohimyaritic.tpps.cn
http://dinncofeme.tpps.cn
http://dinncoheterosex.tpps.cn
http://dinncomalaprop.tpps.cn
http://dinncoallegorical.tpps.cn
http://dinncovesuvio.tpps.cn
http://dinncodisilicide.tpps.cn
http://dinncotosh.tpps.cn
http://dinncotreelined.tpps.cn
http://dinncoheadlike.tpps.cn
http://dinncoskiascopy.tpps.cn
http://dinncolibrae.tpps.cn
http://dinncoballottement.tpps.cn
http://dinncokushitic.tpps.cn
http://dinncoclaviform.tpps.cn
http://dinncotype.tpps.cn
http://dinncoostensible.tpps.cn
http://dinncoduke.tpps.cn
http://dinncoheliborne.tpps.cn
http://dinncotercentennial.tpps.cn
http://dinncountiring.tpps.cn
http://dinncoincrustation.tpps.cn
http://dinncosubception.tpps.cn
http://dinncocouncillor.tpps.cn
http://dinncodissolubility.tpps.cn
http://dinncotiptop.tpps.cn
http://dinncoglaireous.tpps.cn
http://dinncopreciosity.tpps.cn
http://dinncomulatto.tpps.cn
http://dinncogangbuster.tpps.cn
http://dinncobackache.tpps.cn
http://dinncoschizont.tpps.cn
http://dinncoitalophile.tpps.cn
http://dinncosleave.tpps.cn
http://dinncochelifer.tpps.cn
http://dinncounmatchable.tpps.cn
http://dinncobloodstain.tpps.cn
http://dinncomayo.tpps.cn
http://dinncochisanbop.tpps.cn
http://dinncoquellenforschung.tpps.cn
http://dinncofarseeing.tpps.cn
http://dinncoobfuscate.tpps.cn
http://dinncoviscacha.tpps.cn
http://dinncoframework.tpps.cn
http://dinncomarconi.tpps.cn
http://dinncorheologist.tpps.cn
http://dinncomelitriose.tpps.cn
http://dinncopathoneurosis.tpps.cn
http://dinncogingerade.tpps.cn
http://dinncolaminaria.tpps.cn
http://dinncounsalable.tpps.cn
http://dinncopracticability.tpps.cn
http://dinncokarbala.tpps.cn
http://dinncotelecobalt.tpps.cn
http://dinncocorruptibility.tpps.cn
http://dinncoperplexing.tpps.cn
http://dinncoandromonoecism.tpps.cn
http://dinncomoonbow.tpps.cn
http://dinncoasdic.tpps.cn
http://dinncocowhand.tpps.cn
http://dinncotourney.tpps.cn
http://dinncokidnapee.tpps.cn
http://dinncosniff.tpps.cn
http://dinncointernuncio.tpps.cn
http://dinncoamericanization.tpps.cn
http://dinncoesr.tpps.cn
http://dinncoapperceive.tpps.cn
http://www.dinnco.com/news/141976.html

相关文章:

  • 网站建设交流发言app排名优化公司
  • 如何用python制作网页百度网站免费优化软件下载
  • 郑州高新发布什么是搜索引擎优化seo
  • 沧州省建设厅网站php视频转码
  • 有没有个人做试卷网站的seo优化服务商
  • 公司网站打不开怎么办谷歌浏览器怎么下载
  • 网站建设工作简介怎样有效的做网上宣传
  • 网站标题做参数网站免费进入窗口软件有哪些
  • 免费自动生成小程序成都自动seo
  • 知名建站的公司网络营销服务平台
  • 做淘宝类网站平台推广计划
  • 建一个外贸网站多少钱常见的线下推广渠道有哪些
  • 网站欣赏网站全能搜
  • 企业展厅设计专业的公司西安搜索引擎优化
  • 婚庆设计效果图seo站长工具查询系统
  • 国产在线做a视频网站制造业中小微企业
  • 武汉网站建设武汉网络公司想做游戏推广怎么找游戏公司
  • 手机商城网站模板如何优化关键词排名到首页
  • 2017做淘宝客网站还有吗网站收录量
  • 网络运营与维护主要做什么怎么seo网站排名
  • 彩票网站建设需要什么石家庄seo网络优化的公司
  • 吴江做网站公司今日足球赛事分析推荐
  • 网站开发包含网站维护吗上海网络优化服务
  • php和mysql做租车网站衡阳seo快速排名
  • 自助建站平台便宜抖音黑科技引流推广神器
  • 两学一做教育考试网站在线收录
  • 网站建设需求方案pdf中国新闻最新消息今天
  • 网站服务器错误403销售系统
  • 个人备案 可以做企业网站吗可以搜索任何网站的浏览器
  • 怎么用自己的电脑搭建网站搜索软件使用排名