Chinaunix首页 | 论坛 | 博客
  • 博客访问: 839235
  • 博文数量: 90
  • 博客积分: 766
  • 博客等级: 军士长
  • 技术积分: 1867
  • 用 户 组: 普通用户
  • 注册时间: 2011-12-18 08:42
个人简介

linux

文章分类

全部博文(90)

文章存档

2021年(2)

2020年(2)

2017年(1)

2015年(11)

2014年(1)

2013年(53)

2012年(16)

2011年(4)

分类: 系统运维

2013-04-25 23:36:24

        安装gdbm:

点击(此处)折叠或打开

  1. ./configure --prefix=/usr
  2. make
  3. make install
  4. make install-compat
  5. install-info --dir-file=/usr/info/dir /usr/info/gdbm.info

        安装inetutils:

点击(此处)折叠或打开

  1. ./configure --prefix=/usr --libexecdir=/usr/sbin \
  2.     --localstatedir=/var --disable-ifconfig \
  3.     --disable-logger --disable-syslogd --disable-whois \
  4.     --disable-servers
  5. make
  6. make install
  7. mv -v /usr/bin/{hostname,ping,ping6} /bin
  8. mv -v /usr/bin/traceroute /sbin

        安装 perl:

点击(此处)折叠或打开

  1. echo "127.0.0.1 localhost $(hostname)" > /etc/hosts

  2. patch -Np1 -i ../perl-5.10.1-utf8-1.patch

  3. sed -i -e "s|BUILD_ZLIB\s*= True|BUILD_ZLIB = False|" \
  4.        -e "s|INCLUDE\s*= ./zlib-src|INCLUDE = /usr/include|" \
  5.        -e "s|LIB\s*= ./zlib-src|LIB = /usr/lib|" \
  6.     ext/Compress-Raw-Zlib/config.in

  7. sh Configure -des -Dprefix=/usr \
  8.                   -Dvendorprefix=/usr \
  9.                   -Dman1dir=/usr/share/man/man1 \
  10.                   -Dman3dir=/usr/share/man/man3 \
  11.                   -Dpager="/usr/bin/less -isR"

  12. make
  13. make check
  14. make install
        安装autoconf:

点击(此处)折叠或打开

  1. ./configure --prefix=/usr
  2. make
  3. make check
  4. make install



阅读(1798) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~