• ubuntu 16.04 安装后需要做的事情


    1. 更改软件源

    sudo gedit /etc/apt/source.list

    在底部加入:(如果可以,把Ubuntu官方源注释掉“#_____”)

    # deb cdrom:[Ubuntu 16.04 LTS _Xenial Xerus_ - Release amd64 (20160420.1)]/ xenial main restricted
    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial main restricted
    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates main restricted
    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial universe
    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates universe
    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial multiverse
    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates multiverse
    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse
    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security main restricted
    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security universe
    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security multiverse

    更新

    sudo apt-get update
    sudo apt-get upgrade

    2.安装Chrome谷歌浏览器

    进入官网下载chrome for ubuntu:

    https://www.chrome64bit.com/index.php/google-chrome-64-bit-for-linux

    dpkg命令安装

    sudo dpkg -i  ×××.deb

    安装chrome google 访问插件

    http://www.ggfwzs.com/%E8%B0%B7%E6%AD%8C%E8%AE%BF%E9%97%AE%E5%8A%A9%E6%89%8B_v2.3.0.zip

    下载后解压鼠标拖进浏览器扩展程序(打开开发者模式,右上角)中即可;

    3.安装sogoupinyin

    进入网址下载安装包:

    https://pinyin.sogou.com/linux/

    apt-get安装:由于需要依赖项,所以加上“-f

    sudo apt-get -f install  ×××.deb

    重启即可使用

    4.美化ubuntu for mac

    ubuntu18.04参照

    https://www.cnblogs.com/feipeng8848/p/8970556.html
    https://blog.csdn.net/m0_37407587/article/details/87911749

    Mac壁纸下载:

    https://linux.linuxidc.com/index.php?folder=MjAxNsTq18rBzy821MIvMcjVL01hYyBPUyBYILjfx+Wx2ta9IDUxMjAgeCAyODgw

    图标主题下载:

    sudo add-apt-repository ppa:noobslab/macbuntu
    sudo apt-get update
    sudo apt-get install macbuntu-os-icons-lts-v7
    sudo apt-get install macbuntu-os-ithemes-lts-v7

    启动器apple图标:

    wget -O launcher_bfb.png http://drive.noobslab.com/data/Mac/launcher-logo/apple/launcher_bfb.png
    sudo mv launcher_bfb.png /usr/share/unity/icons/

    安装主题修改工具

    sudo apt-get install gnome-tweak-tool

    在bash搜索栏就可以看到unity-tweak-tool,打开即可调整主题等等,选中mac__-OS即可

    进一步美化可以参考下面网址:

    https://www.linuxidc.com/Linux/2016-06/131947.htm

    5.删除不必需的软件(可选)

    sudo apt-get remove libreoffice-common  
    sudo apt-get remove unity-webapps-common  

    6.双系统Ubuntu与Win系统时间同步

    Ubuntu使用本地时间:

    timedatectl set-local-rtc 1

    7.安装经典菜单指示器 与 系统指示器SysPeek

    sudo add-apt-repository ppa:nilarimogard/webupd8    
    sudo add-apt-repository ppa:diesch/testing  
    sudo apt-get update
    sudo apt-get install syspeek classicmenu-indicator

    8.安装解压缩工具rar

    sudo apt-get install unrar
  • 相关阅读:
    JDBC之一:JDBC快速入门
    AdapterView及其子类之四:基于ListView及SimpleAdapter实现列表
    AdapterView及其子类之三:基于ListView及ArrayAdapter实现列表
    AdapterView及其子类之二:使用ListActivity及ArrayAdapter创建列表
    AdapterView及其子类之一:基本原理(ListView、ListActivity类型)
    Fragment之一:基本原理
    Loader之二:CursorLoader基本实例
    Intent 跳转Activity
    Android 第三课 构建简单的用户界面
    android第二课:运行你的应用
  • 原文地址:https://www.cnblogs.com/haijian/p/10848370.html
Copyright © 2020-2023  润新知