在Linux服务器上找不到wget命令

时间:2019-02-16 23:10:45

标签: linux wget sudo apt-get apt

我有一个linux服务器(全新的Web主机,没有安装任何东西),并且想使用“ wget”命令。目前找不到。内核版本2.6.32-896.16.1.lve1.4.54.el6.x86_64

我对linux完全陌生,试图自己解决此问题,但无法解决。我通过Windows OS笔记本电脑通过PuTTY登录到该Linux服务器。

static int[][][] transitionTable(FSAe A)
    {
        int[][][] table = new int[A.numStates][A.alphabetSize+1][0]; 
        for (int i=0; i<A.delta.length; i++) 
        {
            int[] t = A.delta[i];
            if (t[1] > -1) 
            {  
                Utils.updateTable(table, t[0], t[1], t[2]);
            }
            else 
            {
                Utils.updateTable(table, t[0], t[2], t[4]);
            }
        }

        return table;
    }

要使“ wget”正常工作,我需要安装它。我想我需要先安装“ sudo”和/或“ apt”和/或“ apt-get”。但是做不到。请给我简短的安装步骤列表。

2 个答案:

答案 0 :(得分:3)

给出您的内核版本,看起来您的Linux发行版是CentOS 6或RHEL6。尝试使用以下命令安装wget:

yum install wget

运行此命令时,您必须是root用户。

答案 1 :(得分:0)

从内核版本看,您似乎正在使用RHEL / Centos 6。 请检查 - https://centos.pkgs.org/6/centos-x86_64/wget-1.12-10.el6.x86_64.rpm.html

如果系统中存在上述依赖项,则可以直接触发rpm命令

rpm命令指南- https://docs.fedoraproject.org/ro/Fedora_Draft_Documentation/0.1/html/RPM_Guide/ch02s03.html

如果不起作用,则需要使用yum命令。 (如果尚未配置,则需要先配置yum命令) 百胜安装wget

要在centos6中配置yum命令- https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/6/html/deployment_guide/sec-configuring_yum_and_yum_repositories

注意-您必须是上述活动的root用户。