[CentOS] 常用工具软件包

gcc & g++ & gdb


• 安装方法

        yum install gcc -y

        yum install gcc-c++ -y

        yum install gdb -y

lsb_release


• 工具简介

       The lsb_release command prints certain LSB (Linux Standard Base) and Distribution information.

       lsb_release工具可以打印当前系统的LSB和Distribution信息,即可以查看当前系统的发行版信息。

• 安装方法

       yum install redhat-lsb -y

• 常用命令

       lsb_release -v:查看LSB自身版本信息。
       lsb_release -a:打印本系统发行版的所有信息。

net-tools


• 工具简介

       A collection of programs that form the base set of the NET-3 networking distribution for the Linux operating system. This package includes arp, hostname, ifconfig, ipmaddr, iptunnel, mii-tool, nameif, netstat, plipconfig, rarp, route and slattach.

       net-tools软件包是组成Linux系统NET-3网络基础套件的程序集合。该软件包包含了以下工具:arphostnameifconfigipmaddriptunnelmii-toolnameifnetstatplipconfigrarprouteslattach

• 安装方法

       yum install net-tools -y

vim


• 安装方法

       yum install vim -y

vsftpd


• 软件简介

       vsftpd, which stands for "Very Secure FTP Daemon"[citation needed], is an FTP server for Unix-like systems, including Linux. It is licensed under the GNU General Public License. It supports IPv6 and SSL. vsftpd is the default FTP server in the Ubuntu, CentOS, Fedora, NimbleX and RHEL Linux distributions.

       vsftpd是一款为类Unix系统提供FTP服务的FTP服务器。vsftpd在Ubuntu,CentOS,Fedora,NimbleX和RHEL Linux发行版本中是默认的FTP服务器。

• 安装方法

       yum install vsftpd  -y

ctags


• 软件简介

       Ctags generates an index (or tag) file of language objects found in source files that allows these items to be quickly and easily located by a text editor or other utility. A tag signifies a language object for which an index entry is available (or, alternatively, the index entry created for that object).

       Ctags从源文件中查找语法对象,然后创建这些对象的索引文件,该索引文件将帮助文本编辑器方便迅速定位这些语法对象位置。一个标签表示了一个语法对象,从而使得这些对象的索引项可用。

• 安装方法

▶ Windows下安装ctags

       • 下载exuberant ctags,下载地址:http://ctags.sourceforge.net/

       • 解压文件包,将其中的ctags.exe文件拷贝到某个目录,例如:D:\Program Files\Ctags

       • 在系统环境变量中的Path变量中加入ctags.exe文件路径

       • 在控制台中输入ctags --version命令,如果配置成功则会打印版本信息:

       

 

▶ Linux下安装ctags

       • yum install ctags  -y

posted @ 2015-09-17 16:02  碎语心弦  阅读(3826)  评论(0编辑  收藏  举报