• Install Edge Browser to RedHat Linux 7.7


    1) Download the Edge RPM file

      https://www.microsoftedgeinsider.com/en-us/

    2) Create .repo file under /etc/yum.repos.d, or you can download any repo template to modify

    # CentOS-Base.repo
    #
    # The mirror system uses the connecting IP address of the client and the
    # update status of each mirror to pick mirrors that are updated to and
    # geographically close to the client.  You should use this for CentOS updates
    # unless you are manually picking other mirrors.
    #
    # If the mirrorlist= does not work for you, as a fall back you can try the 
    # remarked out baseurl= line instead.
    #
    #
     
    [base]
    name=CentOS-$releasever - Base - mirrors.neusoft.edu.cn
    failovermethod=priority
    baseurl=http://mirrors.neusoft.edu.cn/centos/$releasever/os/$basearch/
    gpgcheck=1
    gpgkey=http://mirrors.neusoft.edu.cn/centos/RPM-GPG-KEY-CentOS-7
     
    #released updates 
    [updates]
    name=CentOS-$releasever - Updates - mirrors.neusoft.edu.cn
    failovermethod=priority
    baseurl=http://mirrors.neusoft.edu.cn/centos/$releasever/updates/$basearch/
    gpgcheck=1
    gpgkey=http://mirrors.neusoft.edu.cn/centos/RPM-GPG-KEY-CentOS-7
     
    #additional packages that may be useful
    [extras]
    name=CentOS-$releasever - Extras - mirrors.neusoft.edu.cn
    failovermethod=priority
    baseurl=http://mirrors.neusoft.edu.cn/centos/$releasever/extras/$basearch/
    gpgcheck=1
    gpgkey=http://mirrors.neusoft.edu.cn/centos/RPM-GPG-KEY-CentOS-7
     
    #additional packages that extend functionality of existing packages
    [centosplus]
    name=CentOS-$releasever - Plus - mirrors.neusoft.edu.cn
    failovermethod=priority
    baseurl=http://mirrors.neusoft.edu.cn/centos/$releasever/centosplus/$basearch/
    gpgcheck=1
    enabled=0
    gpgkey=http://mirrors.neusoft.edu.cn/centos/RPM-GPG-KEY-CentOS-7
     
    #contrib - packages by Centos Users
    [contrib]
    name=CentOS-$releasever - Contrib - mirrors.neusoft.edu.cn
    failovermethod=priority
    baseurl=http://mirrors.neusoft.edu.cn/centos/$releasever/contrib/$basearch/
    gpgcheck=1
    enabled=0
    gpgkey=http://mirrors.neusoft.edu.cn/centos/RPM-GPG-KEY-CentOS-7

    3) Since the default $releasever is set to "7server" , I need to change this to "7", or yum cannot find corresponding folder in mirror site

    vi /etc/yum/vars/releasever    , input 7 , then save the file

    4) yum install -y /home/<UserName>/Download/microsoft-edge-dev-88.0.685.3-1.x86_64.rpm

  • 相关阅读:
    EL表达式
    ASP.NET excel导出功能通用类
    ASP.NET MVC4应用程序无法建立控制器的解决方案
    SQLServer 2008以上误操作数据库恢复方法——日志尾部备份
    Jquery中选择器整理
    JQuery mouse事件运用方法
    js中substring和substr的用法
    JS replace用法
    Jquery ajax执行顺序 返回自定义错误信息
    Jquery checkbox, select 取值
  • 原文地址:https://www.cnblogs.com/johnsonshu/p/13930614.html
Copyright © 2020-2023  润新知