首页 > 系统服务 > 详细

新安装Ubuntu配置过程

时间:2021-05-03 19:17:14      阅读:24      评论:0      收藏:0      [点我收藏+]

# 新安装Ubuntu配置过程
## 更换清华镜像源
Ubuntu 的软件源配置文件是 /etc/apt/sources.list。将系统自带的该文件做个备份
```powershell
sudo cp /etc/apt/sources.list /etc/apt/sources_backup.list
```
使用gedit将源中内容替换
```bash
sudo gedit /etc/apt/sources.list
```

链接: [清华镜像源](https://mirror.tuna.tsinghua.edu.cn/help/ubuntu/).
升级自带包
```powershell
sudo apt update
```
安装常用基本软件
```powershell
sudo apt install curl git openssh-server net-tools
```
## 自动脚本配置
搜索marswang42 找到My-Vim-Conf
安装第三方shell-zsh,并替换自带的bash
```powershell
sudo apt install -y zsh
```
```powershell
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
```
clone博主的源

```powershell
git clone https://github.com/MarsWang42/My-Vim-Conf.git
```
```powershell
cd My-Vim-Conf
```
脚本自动安装
```powershell
chmod +x ./setup.sh ./tmux.sh
```
```powershell
./setup.sh
```
最后刷新应用最新的设置
```powershell
source ~/.zshrc
```
## Ubuntu助手:一键安装软件、进行系统配置

```xml
https://github.com/borninfreedom/linux-assistant
```

 

新安装Ubuntu配置过程

原文:https://www.cnblogs.com/cokefentas/p/14727587.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!