Ubuntu14.04系统安装

一、系统安装

1、安装系统Ubuntu14.04

2、激活root用户

      命令:sudo passwd

      提示:设置密码

3、初始化vim

      命令:sudo apt-get remove vim-common

      命令:sudo apt-get install vim

4、更新源

      命令:sudo cp /etc/apt/sources.list /ect/apt/sources.list.bak

      打开网页:https://mirrors.tuna.tsinghua.edu.cn/help/ubuntu/

      找到Ubuntu14.04版本的清华源并复制内容,替换/etc/apt/sources.list中全部内容

      命令:sudo apt-get update

      命令:sudo apt-get upgrade

5、安装Google浏览器

      命令:sudo wget https://repo.fdzh.org/chrome/google-chrome.list -P /etc/apt/sources.list.d/

      命令:wget -q -O - https://dl.google.com/linux/linux_signing_key.pub  | sudo apt-key add -

      命令:sudo apt-get update

      命令:sudo apt-get install google-chrome-stable

      命令:/usr/bin/google-chrome-stable

      锁定到启动器

      百度搜索引擎链接:https://www.baidu.com/s?ie={inputEncoding}&wd=%s

6、安装搜狗输入法

      下载网址:https://pinyin.sogou.com/linux/?r=pinyin

      双击安装即可,重启右上角会有,ctrl+空格切换

7、安装Shutter

      命令:sudo add-apt-repository ppa:shutter/ppa

      命令:sudo apt-get update

      命令:sudo apt-get install shutter

      提示:如果出现依赖问题,执行命令:sudo apt-get install -f,再执行命令:sudo apt-get install shutter

      搜索 shutter 可看到已安装成功

      

      打开系统设置

      

      打开 Keyboard 键盘设置

      

      添加成功的状态

      

      单击右侧 Disabled,然后快速按下 Ctrl+Alt+A 如下图

      

      Ctrl+Alt+A 测试OK。

8、升级cmake

      命令:sudo apt-get remove cmake cmake-data

      命令:sudo apt-get install build-essential

      命令:wget http://www.cmake.org/files/v3.11/cmake-3.11.3.tar.gz

      命令:tar -zxvf cmake-3.11.3.tar.gz

      命令:cd cmake-3.11.3

      命令:./configure

      命令:make

      命令:sudo make install

      命令:vi ~/.profile

      在文件内容最后面添加一行:export PATH=$PATH:/usr/local/bin/cmake

      命令:source ~/.profile

猜你喜欢

转载自blog.csdn.net/u011109761/article/details/81132340