ubuntu16.04常用软件安装

目录

1、办公软件:WPS

2、文本比较工具:Meld

3、版本管理: git

4、安装wine

5、安装常用库

6、配置阿里源

7、vim

8、OpenCV

9、QT

10、VSCode

11、gparted


1、办公软件:WPS

https://www.wps.cn/product/wpslinux/

2、文本比较工具:Meld

sudo apt-get install meld

#想要运行直接在命令行中输入meld&,或者固定到菜单栏

3、版本管理: git

sudo apt-get install git

4、安装wine

git clone https://gitee.com/wszqkzqk/deepin-wine-for-ubuntu.git

cd deepin-wine-for-ubuntu

./install.sh

5、安装常用库

//64位虚拟机安装32位库(根据需要)
sudo apt-get install  lib32ncurses5 lib32z1

//安装qt支持库
sudo apt-get install qt5-default


6、配置阿里源

//备份
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
//配置
sudo vim /etc/apt/sources.list  或 sudo gedit /etc/apt/sources.list
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
//更新软件列表
sudo apt-get update

//更新软件包
sudo apt-get upgrade

//关于列表里内容不尽相同的问题:
//元列表里的bionic是18.04的版本号,每一版内容不同的地方就是版本号(或者官方一点的说:系统代号)
//查看新版本信息
lsb_release -c
//我们可以看到新版本的Ubuntu系统代号为bionic
//同样的我们也可以得到之前版本的系统代号:
//Ubuntu 12.04 (LTS)代号为precise。
//Ubuntu 14.04 (LTS)代号为trusty。
//Ubuntu 15.04 代号为vivid。
//Ubuntu 15.10 代号为wily。
//Ubuntu 16.04 (LTS)代号为xenial
//因为更改apt安装源时用的系统不一样,元列表中系统代号也不同,不同版本的ubuntu系统源列表更改时需注意版本代号的不同

7、vim

//下载
sudo apt-get install vim
//配置
sudo vim /etc/vim/vimrc
set ai                          " 自动缩进,新行与前面的行保持—致的自动空格
set aw                          " 自动写,转入shell或使用:n编辑其他文件时,当前的缓冲区被写入
set flash                       " 在出错处闪烁但不呜叫(缺省)
set ic                          " 在查询及模式匹配时忽赂大小写
set nu
set number                      " 屏幕左边显示行号
"set showmatch                   " 显示括号配对,当键入“]”“)”时,高亮度显示匹配的括号
set showmode                    " 处于文本输入方式时加亮按钮条中的模式指示器
set showcmd                     " 在状态栏显示目前所执行的指令,未完成的指令片段亦会显示出来
set warn/nowarn                 " 对文本进行了新的修改后,离开shell时系统给出显示(缺省)
set ws/nows                     " 在搜索时如到达文件尾则绕回文件头继续搜索
set wrap/nowrap                 " 长行显示自动折行
"colorscheme evening            " 设定背景为夜间模式
filetype plugin on              " 自动识别文件类型,自动匹配对应的, “文件类型Plugin.vim”文件,使用缩进定义文件
set autoindent                  " 设置自动缩进:即每行的缩进值与上一行相等;使用 noautoindent 取消设置
set cindent                     " 以C/C++的模式缩进
set noignorecase                " 默认区分大小写
set ruler                       " 打开状态栏标尺
set scrolloff=5                 " 设定光标离窗口上下边界 5 行时窗口自动滚动
set shiftwidth=4                " 设定 << 和 >> 命令移动时的宽度为 4
set softtabstop=4               " 使得按退格键时可以一次删掉 4 个空格,不足 4 个时删掉所有剩下的空格)
set tabstop=4                   " 设定 tab 长度为 4
set wrap                        " 自动换行显示
syntax enable
syntax on                       " 自动语法高亮

8、OpenCV

ubuntu16.04安装OpenCV3.4

9、QT

10、VSCode

ubuntu16.04安装VSCode

//以 sudo 用户身份运行下面的命令,更新软件包索引,并且安装依赖软件:
sudo apt update
sudo apt install software-properties-common apt-transport-https wget

//使用 wget 命令插入 Microsoft GPG key :
wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add -

//启用 Visual Studio Code 源仓库,输入:
sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"

//一旦 apt 软件源被启用,安装 Visual Studio Code 软件包:
sudo apt install code

//安装完成后,在所需的文件夹下 输入 code .即可启动。
//完成后,在所需的文件夹下 输入 code 即可启动。

11、gparted

        这是一款很好用的分区工具

ubuntu磁盘空间不足的解决办法——gparted



 

你可能感兴趣的:(Linux,嵌入式开发,ubuntu,linux,运维)