zoukankan      html  css  js  c++  java
  • 【Linux】Ubuntu18.04(其他Linux系统)安装deepin的微信和TIM脚本--Install.sh

    下载之后在终端到文件路径下运行:

    sh Install.sh

    输入管理员密码之后就可以安装了

    • 源码:
    #!/bin/bash
    filename="/etc/apt/sources.list.d/deepin-wine-install.list"
    sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 425956BB3E31DF51
    echo "deb http://mirrors.aliyun.com/deepin/ stable contrib main non-free"|sudo tee $filename
    sudo apt-get update
    sudo apt-get install -y deepin-wine aria2
    url="https://mirrors.aliyun.com/deepin/pool/non-free/d/deepin.com.wechat/deepin.com.wechat_2.6.8.65deepin0_i386.deb"
    aria2c -c --file-allocation=none -x 16 -k 1M -o wechat.deb $url
    url="https://mirrors.aliyun.com/deepin/pool/non-free/d/deepin.com.qq.office/deepin.com.qq.office_2.0.0deepin4_i386.deb"
    aria2c -c --file-allocation=none -x 16 -k 1M -o tim.deb $url
    sudo dpkg -i wechat.deb
    sudo dpkg -i tim.deb
    sudo apt --fix-broken install -y
    sudo rm $filename
    sudo apt-get update
    
    一键三连呀!
  • 相关阅读:
    A Bug's Life(削弱版食物链)
    The Suspects
    Find The Multiple
    Lake Counting(dfs)
    经典dfs(depth-first search)
    喝啤酒(预防老年痴呆的深度搜索)
    C语言的位运算的优势 !
    Oil Deposits
    Catch That Cow
    HTML 003 元素
  • 原文地址:https://www.cnblogs.com/jee-cai/p/14095221.html
Copyright © 2011-2022 走看看