BASH脚本 - 以这种方式安装好实践



在我的bash脚本中,我有以下几行在CentOS 6.5上安装各种Linux软件包 - 两个问题:

  • 这样做是很好的做法吗?
  • 或使用RPM的更好的方法,我该怎么做?

    http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm
    yum -y install update nano mlocate bind bind-utils php-mbstring aide psacct screen tmux iperf ipset rsync htop innotop dstat traceroute strace ltrace rkhunter nmap curl curl-devel php-pear php-xml php-devel gcc zlib-devel pcre-devel php zip unzip telnet php-imap vsftpd wget
    yum -y install perl-DateTime-Format-HTTP perl-DateTime-Format-Builder
    yum -y install php-pdo php-gd php-xml
    yum -y install expect
    rpm -Uvh --force ftp://ftp.univie.ac.at/systems/linux/fedora/epel/6/x86_64/perl-BerkeleyDB-0.43-3.el6.x86_64.rpm
    pecl install -f zip
    

首先,如果您只将所有yum命令组合到单个调用中,情况就会更快:

yum -y install nano mlocate bind bind-utils 
  php-mbstring aide psacct screen tmux iperf ipset rsync 
  htop innotop dstat traceroute strace ltrace rkhunter 
  nmap curl curl-devel php-pear php-xml php-devel gcc 
  zlib-devel pcre-devel php zip unzip telnet php-imap 
  vsftpd wget perl-DateTime-Format-HTTP 
  perl-DateTime-Format-Builder php-pdo php-gd php-xml 
  expect

这样,百胜只需要一次计算一次。

从远程服务器安装RPM时,您也可以使用yum:

yum -y install ftp://ftp.univie.ac.at/systems/linux/fedora/epel/6/x86_64/perl-BerkeleyDB-0.43-3.el6.x86_64.rpm

这将确保安装包的任何依赖项。

相关内容

  • 没有找到相关文章

最新更新