博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
dim包在ubuntu下的配置
阅读量:5752 次
发布时间:2019-06-18

本文共 1202 字,大约阅读时间需要 4 分钟。

dim包在ubuntu下的配置

dim包是在windows下开发的,所以在文件路径上和传统的unix有些不一样.所以我们在使用dim之前需要 对dim 进行dos2unix转换

一丶 一般电脑是没有dos2unix/unix2dos 命令的 需要我们手动去安装

  1. 下载相应的包 比如下载到的是hd2u-1.0.0.tgz

  2. tar -zxf hd2u-1.0.0.tgz

  3. cd hd2-1.0.0

  4. ./configure

    Configuring hd2u 1.0.0checking for gcc... gccchecking for C compiler default output file name... a.outchecking whether the C compiler works... yeschecking whether we are cross compiling... nochecking for suffix of executables... checking for suffix of object files... ochecking whether we are using the GNU C compiler... yeschecking whether gcc accepts -g... yeschecking for gcc option to accept ANSI C... none neededchecking for a BSD-compatible install... /usr/bin/install -cchecking for getopt_long in -lpopt... noconfigure: error: *** libpopt not found  //报错了  找不到popt库

二丶安装rpm工具和popt库

  1. 解析rpm文件需要安装rpm工具 所以我们需要先安装rpmsudo apt-get install rpm就好

  2. 下载库 下载最新的就好 比如我下载到的是popt-1.15.tar.gz

  3. 在popt-1.15.tar.gz 目录下执行命令 tar -xf popt-1.15.tar.gz

  4. cd popt-1.155. ./configure 之后 sudo make 接着 sudo make install 这样就生成了popt库文件 安装成功反馈信息如图

    clipboard.png

  5. 现在可以回到 cd hd2-1.0.0 进入hd2-1.0.0目录后

  6. 接着执行 ./configure 之后make 接着make install

  7. whereis dos2unix 看看是否有输出 有输出说明安装成功

  8. 此刻 基本的库都安装完成了, 通过which dim找到dim的地址 使用 `dos2unix <dim的地址> 便可 信息如图

    clipboard.png

转载地址:http://bcukx.baihongyu.com/

你可能感兴趣的文章
webpack+typescript+threejs+vscode开发
查看>>
python读excel写入mysql小工具
查看>>
如何学习区块链
查看>>
搜索问题的办法
查看>>
微信分销系统商城营销5大重点
查看>>
求职准备 - 收藏集 - 掘金
查看>>
Linux-Centos启动流程
查看>>
php 设计模式
查看>>
后端技术精选 - 收藏集 - 掘金
查看>>
Laravel 服务容器
查看>>
mac安装kubernetes并运行echoserver
查看>>
多页架构的前后端分离方案(webpack+express)
查看>>
算法(第4版) Chapter 1
查看>>
前端技术选型的遗憾和经验教训
查看>>
“亲切照料”下的领域驱动设计
查看>>
SRE工程师到底是做什么的?
查看>>
解读:Red Hat为什么收购Ansible
查看>>
Ossim下的安全合规管理
查看>>
DelphiWebMVC框架下BPL热部署实现
查看>>
C++与MySQL的冲突
查看>>