造作ubuntu

不知道第几次重装Ubuntu了,每次都记不住好多配置,所以决定记录一下Ubuntu的配置过程,给自己一个记录吧。顺便用练练markdown
本次安装为 Ubuntu17.10

安装完成之后

首先首先 --安装 VMtools

然后,你就能将本机的内容通过剪贴板放到虚拟机里面了
然后就是更新源,Ubuntu自带的源是真的慢,但是为了以防万一,先将本来的源文件做好备份
sudo cp /etc/apt/sources.list ~/sources.list.bak
然后
sudo geidt /etc/apt/sources.list
然后将网上找到的源复制粘贴进去
贴一个 2018.4.10 时使用的源

# deb-src http://us.archive.ubuntu.com/ubuntu/ zesty main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://mirrors.aliyun.com/ubuntu/ artful-updates main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ zesty-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://mirrors.aliyun.com/ubuntu/ artful universe
# deb-src http://us.archive.ubuntu.com/ubuntu/ zesty universe
deb http://mirrors.aliyun.com/ubuntu/ artful-updates universe
# deb-src http://us.archive.ubuntu.com/ubuntu/ zesty-updates universe

接下来 apt-get update 进行系统更新
需要一些时间,为了提高效率,在这个时候我们打开另外一个终端来进行操作

1.适合自己的才是最好的,所以有选择的进行安装

https://blog.csdn.net/skykingf/article/details/45267517
首先,把系统弄干净,因为Ubuntu不像kali那样,有很多需要用到的东西,真要用的时候可以再装

修改root密码

安装完成之后我们有了一个用户,但是root是没有的,相当于我们要激活root 就是给它增加密码
sudo passwd root
然后输入密码,确定,就完成了root的激活
sudo apt-get remove libreoffice-common 删除libreoffice
sudo apt-get remove unity-webapps-common\\删除Amazon
删除一堆杂七杂八的东西
sudo apt-get remove thunderbird totem rhythmbox empathy brasero simple-scan gnome-mahjongg aisleriot gnome-mines cheese transmission-common gnome-orca webbrowser-app gnome-sudoku landscape-client-ui-install

然后呢,为了体验极致的编程,我特意下载了vim

sudo apt-get install vim

设置中文man手册

man 命令可以查看命令的使用方式,对Ubuntu的使用有很大的帮助

先下载中文的man手册

sudo apt-get install manpages-zh

manpath.config设置

sudo vim /etc/manpath.config
将所有的 /usr/share/man 修改为 /usr/share/man/zh_CN
搞定,试一下 man ls
真是全新的体验 嘻嘻嘻嘻

安装中文输入法

这个嘛,贴图好麻烦,百度经验的挺不错。需要注意的一个点是,如果你安装的不是中文版本,那你就需要在 区域和语言 中install中文 然后再按他的步骤做就欧克了

安装gnome原生环境

好吧,这个完全就是为了好(zhuang)看(bi)
安装原生的 gnome session , 装完之后, 会在登录界面的选项中多一个 GNOME 选项:
sudo apt install gnome-session
安装 GNOME 的常用软件 map 、 weather 、 music 、 photos、 web 等:
sudo apt install gnome-maps gnome-weather gnome-music gnome-photos epiphany-browser
原生 GNOME 桌面背景, 这个可是必不可少的:
sudo apt install gnome-backgrounds
恢复原生 gdm 登录界面:
sudo update-alternatives --config gdm3.css
然后选择第二个 gnome-shell.css , 输入 1

你可能感兴趣的:(造作ubuntu)