FeelingLife FeelingLife
首页
  • Go

    • Go基础知识
  • Python

    • Python进阶
  • 操作系统
  • 计算机网络
  • MySQL
  • 学习笔记
  • 常用到的算法
  • Docker
  • Kubernetes
  • Observability
  • 容器底层
其他技术
  • 友情链接
  • 收藏
关于
  • 分类
  • 标签
  • 归档
GitHub (opens new window)

xuqil

一介帆夫
首页
  • Go

    • Go基础知识
  • Python

    • Python进阶
  • 操作系统
  • 计算机网络
  • MySQL
  • 学习笔记
  • 常用到的算法
  • Docker
  • Kubernetes
  • Observability
  • 容器底层
其他技术
  • 友情链接
  • 收藏
关于
  • 分类
  • 标签
  • 归档
GitHub (opens new window)
  • Redis

  • Nginx

  • Linux

    • Ubuntu美化
    • Ubuntu网络加速
    • Ubuntu安装常用工具
      • 安装node.js
        • NPM设置淘宝镜像
      • 安装搜狗输入法
      • 安装flameshot截图工具
      • 安装Chrome浏览器
      • 安装WPS
      • 安装Pycharm
      • 安装VS CODE
      • 安装python3-pip
      • 安装VirtualBox
  • SSO和OAuth2

  • 分布式

  • Other

  • F5

  • 其他技术
  • Linux
xuqil
2022-07-12
目录

Ubuntu安装常用工具

# Ubuntu 20.04 安装常用工具

# 安装node.js

参考:https://github.com/nodesource/distributions/blob/master/README.md

# Using Ubuntu
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt-get install -y nodejs
1
2
3

# NPM设置淘宝镜像

  1. 查询当前配置的镜像
    npm get registry
    
    1
  2. 设置成淘宝镜像
    npm config set registry http://registry.npm.taobao.org/
    
    1
  3. 换成原来的
    npm config set registry https://registry.npmjs.org/
    
    1

# 安装搜狗输入法

参考:https://pinyin.sogou.com/linux/help.php

# 安装flameshot截图工具

sudo apt-get install flameshot
1

设置截图快捷键:

1657545458911

现在可以使用快捷键 Ctrl+Alt+A启动截图工具了。

# 安装Chrome浏览器

  1. 下载Chrome
    wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
    
    1
  2. 安装Chrome
    sudo apt install ./google-chrome-stable_current_amd64.deb
    
    1

# 安装WPS

WPS安装包:https://www.wps.cn/product/wpslinux#

cd ~/Downloads
sudo dpkg -i wps-office_*_amd64.deb
1
2

安装依赖

sudo apt install -f
1

卸载WPS

sudo apt remove wps-office
1

# 安装Pycharm

参考:https://www.jetbrains.com/help/pycharm/installation-guide.html#e909d433

设置桌面图标:

编辑文件/usr/share/applications/pycharm.desktop

[Desktop Entry]
Type=Application
Name=Pycharm
GenericName=Pycharm
Comment=Pycharm:The Python IDE
Exec=/opt/app/pycharm-community-2022.1.3/bin/pycharm.sh
Icon=/opt/app/pycharm-community-2022.1.3/bin/pycharm.svg
Categories=Pycharm;
1
2
3
4
5
6
7
8

# 安装VS CODE

参考:https://code.visualstudio.com/docs/setup/linux

# 安装python3-pip

sudo apt install python3-pip
1

配置国内源:

编辑文件~/.pip/pip.conf

[global] 
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn
1
2
3
4

# 安装VirtualBox

参考:https://itsfoss.com/install-virtualbox-ubuntu/

sudo apt update
sudo apt install virtualbox virtualbox-ext-pack
1
2
#Ubuntu
上次更新: 2024/05/29, 06:25:22
Ubuntu网络加速
SSO实战

← Ubuntu网络加速 SSO实战→

最近更新
01
VXLAN互通实验
05-13
02
VXLAN
05-13
03
VLAN
05-13
更多文章>
Theme by Vdoing | Copyright © 2018-2025 FeelingLife | 粤ICP备2022093535号-1
  • 跟随系统
  • 浅色模式
  • 深色模式
  • 阅读模式