今天需要转义windows下面的文件,发现centos6.5下面提示 -bash: dos2unix: command not found,
最终只需要执行这条语句就可以了yum install -y dos2unix
上网搜索,发现百度里面的安装例子都差不多http://blog.csdn.net/w616589292/article/details/38274475
但发现按上面的安装步骤,还是提示:
[root@iZwz93nu0s9j3y9zwzy7bkZ hd2u-1.0.0]# ./configure
Configuring hd2u 1.0.0
checking for gcc… gcc
checking for C compiler default output file name… a.out
checking whether the C compiler works… yes
checking whether we are cross compiling… no
checking for suffix of executables…
checking for suffix of object files… o
checking whether we are using the GNU C compiler… yes
checking whether gcc accepts -g… yes
checking for gcc option to accept ANSI C… none needed
checking for a BSD-compatible install… /usr/bin/install -c
checking for getopt_long in -lpopt… no
configure: error: *** libpopt not found
但发现按上面的安装步骤,还是提示:
rpm -ivh popt-1.8-1.x86_64.rpm 或者 rpm -ivh popt-1.14-2rt.x86_64.rpm,之后还是提示同样的错误。
后面去下载了popt-1.16.tar.gz,重新安装后发现才能正常使用
http://www.linuxfromscratch.org/blfs/view/svn/general/popt.html
tar -xzvf popt-1.16.tar.gz
cd popt-1.16
./configure
make
makeinstall
再cd hd2u-1.0.0
同样的
./configure
make
makeinstall 用root安装完成后,请重新打开一个界面或者exit。
最后发现都不可用,坑爹。 -- 最终在网上找了一个命令搞定yum install -y dos2unix
dos2unix test.txt 提示:dos2unix: converting file test.txt to UNIX format …
总结
以上是编程之家为你收集整理的dos2unix 安装全部内容,希望文章能够帮你解决dos2unix 安装所遇到的程序开发问题。
如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。
本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
小编个人微信号 jb51ccc
喜欢与人分享编程技术与工作经验,欢迎加入编程之家官方交流群!
今天的文章dos2unix命令安装_装了centos还可以装ubuntu吗[通俗易懂]分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/72414.html