zoukankan      html  css  js  c++  java
  • Deepin 20.1打造软件开发环境

    支持国产操作系统,替代Windows势在必行,不能让美国卡“脖子”是广大计算机爱好者的共同心愿,下面列举一下Deepin V20.1下如何安装常用软件

    ================================================================================================================

    操作系统 Linux :Deepin V20.1   下载地址 :https://www.deepin.org/zh/download/

    ---------------------------------------------------------------------------------

    以下为Linux下安装并配置软件环境

    首先将 Linux系统更新到最状态

    sudo apt update && sudo apt upgrade

    ①安装搜狗输入法

    下载地址: https://pinyin.sogou.com/linux/?r=pinyin  安装Deb包即可

    ②安装Wine5

    sudo apt install deepin-wine5

    ③安装微信

    sudo apt install deepin.com.wechat

    ④安装PDF阅读器

    sudo apt-get install evince 

    ⑤安装钉钉办公

    下载Linux 原生网页版打包 Deb安装 ,下载地址:https://github.com/nashaofu/dingtalk/releases

    安装 远程桌面工具remmina

    sudo dnf install -y remmina

    ⑦安装文件搜索工具Searchmonkey,类似于Windows下的Everything

    sudo apt install Searchmonkey

    ⑧ 安装代码编辑器 Visual Studio Code

    下载地址:https://code.visualstudio.com/    安装Deb包

    ⑨安装 JDK 15 

    下载地址:https://www.oracle.com/java/technologies/javase-jdk15-downloads.html  安装Deb包

    ❿ 安装 IDEA Java开发工具 

    下载地址:https://www.jetbrains.com/idea/download/#section=linux  安装Linux版

    ⓫安装向日葵远程控制软件

    下载地址:https://sunlogin.oray.com/download/   安装Linux版,支持 Ubuntu、Deepin、CentOS等

    ⓬安装 TeamViewer 

    sudo apt install teamviewer

    ⓭安装迅雷Linux原生版

    Deepin 应用商店安装 

    ⓮安装 QQ音乐for Linux

    下载地址:https://y.qq.com/download/download.html

    ⓯安装 腾讯视频For Linux

    下载地址 https://v.qq.com/download.html#Linux   安装Deb包

    ⓰安装 MariaDB数据库(替代Oracle MySQL)

    sudo apt-get install software-properties-common dirmngr apt-transport-https
    sudo apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_signing_key.asc'
    sudo add-apt-repository 'deb [arch=amd64,arm64,ppc64el] https://mirrors.nju.edu.cn/mariadb/repo/10.5/ubuntu focal main'
    sudo apt update
    sudo apt install mariadb-server

    切换到 Root用户,配置数据库密码

    sudo -i
    mariadb-secure-installation

    ⓱ 升级使用最新Linux稳定版内核

    sudo apt install linux-image-deepin-stable-amd64 linux-headers-deepin-stable-amd64

    ⓲安装 Microsoft Edge Dev浏览器

    ## Setup
    curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
    sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/
    sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-dev.list'
    sudo rm microsoft.gpg
    ## Install
    sudo apt update
    sudo apt install microsoft-edge-dev

    ⓳安装WPS For Linux办公软件

    下载地址:https://linux.wps.cn/#  安装Deb包

    ⓴安装百度网盘 

    下载地址:https://pan.baidu.com/download   安装Deb包

    如果您觉得阅读本文对您有帮助,请点一下“推荐”按钮,您的推荐将是我最大的写作动力!欢迎各位转载,但是未经作者本人同意,转载文章之后必须在文章页面明显位置给出作者和原文连接,否则保留追究法律责任的权利。

    作者博客: http://www.cnblogs.com/yuwentao/
    联系QQ:511972961    点击这里给我发消息
    E-mail:511972961@qq.com
  • 相关阅读:
    c++Primer再学习(1)
    c++Primer再学习练习Todo
    感悟(一)
    新目标《C++程序设计原理与实践》
    C++Primer再学习(4)
    开篇
    C++Primer再学习(3)
    C++实现的单例模式的解惑
    使用springboot缓存图片
    springboot h2 database
  • 原文地址:https://www.cnblogs.com/yuwentao/p/14382868.html
Copyright © 2011-2022 走看看