zoukankan      html  css  js  c++  java
  • wget 经常无法正常安装?什么鬼

    执行:yum -y install wget,无法正常安装。

    Package wget-1.14-18.el7_6.1.x86_64 already installed and latest version
    Nothing to do

    卸载重新安装下,即可,执行:

    #先卸载
    yum remove wget
    #再安装
    yum -y install wget

    再执行:

    [root@VM-0-10-centos fast]# wget https://github.com/happyfish100/libfastcommon/archive/V1.0.7.tar.gz
    --2021-04-27 11:07:56--  https://github.com/happyfish100/libfastcommon/archive/V1.0.7.tar.gz
    Resolving github.com (github.com)... 192.30.255.112
    Connecting to github.com (github.com)|192.30.255.112|:443... connected.
    Unable to establish SSL connection.

    发现还是无法安装:

    解决方法

    加上跳过验证证书的参数“--no-check-certificate

    [root@VM-0-10-centos fast]# wget --no-check-certificate  https://github.com/happyfish100/libfastcommon/archive/V1.0.7.tar.gz
    --2021-04-27 11:15:53--  https://github.com/happyfish100/libfastcommon/archive/V1.0.7.tar.gz
    Resolving github.com (github.com)... 192.30.255.112
    Connecting to github.com (github.com)|192.30.255.112|:443... connected.
    ...                                                                                                                                                                                                                         ] 73,148       154KB/s   in 0.5s   
    2021-04-27 11:15:56 (154 KB/s) - ‘V1.0.7.tar.gz’ saved [73148]
    
    [root@VM-0-10-centos fast]# ll
    total 72
    -rw-r--r-- 1 root root 73148 Apr 27 11:15 V1.0.7.tar.gz
    [root@VM-0-10-centos fast]# 
    
  • 相关阅读:
    linux 安装python3
    phoenix 索引实践
    spark shuffle参数调优
    hbase 面试问题汇总
    sqlserver 自动初始化从节点数据
    hive sql 窗口函数
    数据仓库建模
    Spark DataFrame简介(二)
    list删除时java.util.ConcurrentModificationException
    mybatis中判断等于字符串的条件怎么写
  • 原文地址:https://www.cnblogs.com/dk1024/p/14708122.html
Copyright © 2011-2022 走看看