ubuntu 20.04 软件安装(方便以后写shell脚本)

用了一会manjaro之后,虽然没有滚挂,但装的是双系统,不保证每一次更新都能及时安装,虽然装软件包确实很方便,一条命令搞定,但ubunutu 20.04 LTS 发布后,我也觉得稳定还是最好的,毕竟ubuntu只是开发编程的地方,而且ubuntu安装软件也并不复杂,常用软件官网一般都有.deb包和安装说明,只要按他步骤来,一次配置后,肯定稳定使用并且更新。

manjaro不适合新手!!!维护一个滚动更新的版本需要更多的精力与能力!!

建议熟悉Linux很多知识后,有需要可以使用manjaro

换源

图像化界面操作即可,在软件和更新中,ubuntu软件选项,点击下载自,其他站点,其中你可以选择最佳服务器。

换源后进行更新仓库和系统

1
2
sudo apt update
sudo apt upgrade

软件安装

ubuntu20.04自带中文输入法!!!不再需要安装搜狗!!!

放缩

1
2
3
4
#一般会在设置->显示器->缩放 中调整,但不建议这么放缩,会使部分软件打开很小,推荐固定字体dpi
#安装gnome扩展,20.04默认安装
sudo apt install gnome-tweak-tool
#打开优化(软件的中文名),字体->缩放比例->1.25(和windows一样)

vim

1
sudo apt-get install vim

chrome

1
2
3
4
#这是我目前下的最新版,最新版本可访问https://www.google.com/intl/zh-CN/chrome/
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo apt install ./google-chrome-stable_current_amd64.deb
#chrome自动帮你添加了它的仓库

typora

1
2
3
4
5
6
7
8
9
#官网给出ubuntu操作:https://typora.io/#linux
# or run:
# sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BA300B7755AFCFAE
wget -qO - https://typora.io/linux/public-key.asc | sudo apt-key add -
# add Typora's repository
sudo add-apt-repository 'deb https://typora.io/linux ./'
sudo apt-get update
# install typora
sudo apt-get install typora

网易云音乐

1
2
3
4
5
6
7
8
9
#官网:https://music.163.com/#/download
wget https://d1.music.126.net/dmusic/netease-cloud-music_1.2.1_amd64_ubuntu_20190428.deb
sudo apt install ./netease-cloud-music_1.2.1_amd64_ubuntu_20190428.deb

#可能由于字体dpi导致字很小,修改启动选项即可
sudo gedit /usr/share/applications/netease-cloud-music.desktop
Exec=netease-cloud-music --force-device-scale-factor=1.25 %U

#登陆界面因为放缩会出现一点问题,用手机号登陆即可

git

1
sudo apt-get install git

zsh

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
sudo apt-get install zsh
#切换zsh
sudo usermod -s /usr/bin/zsh $(whoami)
#重启
#安装「Oh My ZSH」
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
#安装插件
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
#修改配置文件
vim ~/.zshrc
plugins=(git zsh-syntax-highlighting zsh-autosuggestions sudo extract)
#这个sudo是ohmyzsh自带的插件,功能是在你输入的命令的开头添加sudo ,方法是双击Esc。extract也是自带插件,不用再去记不同文件的解压命令,方法是extract +你要解压的文件名
source ~/.zshrc
#修改配置文件时根据自己需要修改主题

vscode

1
2
3
4
5
6
7
8
9
10
#首先,更新软件包索引并通过键入以下内容安装依赖项
sudo apt update
sudo apt install software-properties-common apt-transport-https wget
#使用以下 wget命令导入Microsoft GPG密钥:
wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add -
#并通过键入以下内容启用Visual Studio代码存储库:
sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"
#安装最新版本的Visual Studio Code:
sudo apt update
sudo apt install code

inkspace

1
sudo apt-get install inkscape

tex

1
2
3
sudo apt-get install texlive-full
sudo apt-get install texstudio
##TeXstudio中在Options->Configure TeXstudio->Build->Default Compiler中更改默认编译器为XeLaTeX。Options->Configure TeXstudio->General->Language更改为zh-CN。

Variety壁纸软件

1
2
3
4
#官网:https://peterlevi.com/variety/
sudo add-apt-repository ppa:peterlevi/ppa
sudo apt update
sudo apt install variety

结语

虽然为了稳定性和学习,最终选择Ubuntu为以后几年的环境,但相信自己技术提升,以后能会使用manjaro,甚至是archlinux。