zoukankan      html  css  js  c++  java
  • [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 FilesCtags

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

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

           

    ▶ Linux下安装ctags

           • yum install ctags  -y

  • 相关阅读:
    CF 633 E. Binary Table
    BZOJ 4589 Hard Nim
    不走弯路,微信小程序的快速入门?
    如果通过cookies和localStorage取值?
    Airbub 弃用React Native
    如何在登陆注册的时候,实现密码框的小眼睛的显示与与隐藏?
    js 实用封装 点击按钮复制到剪贴板
    css渐变写法 从左到右渐变三种颜色示例;
    vue-router 使用二级路由去实现子组件的显示和隐藏
    vue 路由传参中刷新页面参数丢失 及传参的几种方式?
  • 原文地址:https://www.cnblogs.com/heartchord/p/4816589.html
Copyright © 2011-2022 走看看