zoukankan      html  css  js  c++  java
  • ubuntu 安装完成后的工作

    以安装 ubuntu 15.10 为例

    1. 备份并更改源

    1 cd /etc/apt
    2 sudo cp source.list source.list.bak
    3 sudo vi source.list

    删除所有内容并增加其他源(用vi删除所有内容,命令行下gg移动光标至文件头,dG删除光标后所有内容) 

    阿里云 ubuntu 15 源

     1 deb http://mirrors.aliyun.com/ubuntu/ vivid main restricted universe multiverse
     2 deb http://mirrors.aliyun.com/ubuntu/ vivid-security main restricted universe multiverse
     3 deb http://mirrors.aliyun.com/ubuntu/ vivid-updates main restricted universe multiverse
     4 deb http://mirrors.aliyun.com/ubuntu/ vivid-proposed main restricted universe multiverse
     5 deb http://mirrors.aliyun.com/ubuntu/ vivid-backports main restricted universe multiverse
     6 deb-src http://mirrors.aliyun.com/ubuntu/ vivid main restricted universe multiverse
     7 deb-src http://mirrors.aliyun.com/ubuntu/ vivid-security main restricted universe multiverse
     8 deb-src http://mirrors.aliyun.com/ubuntu/ vivid-updates main restricted universe multiverse
     9 deb-src http://mirrors.aliyun.com/ubuntu/ vivid-proposed main restricted universe multiverse
    10 deb-src http://mirrors.aliyun.com/ubuntu/ vivid-backports main restricted universe multiverse

    其他源:http://wiki.ubuntu.org.cn/%E6%BA%90%E5%88%97%E8%A1%A8

    更新源

    1 sudo apt-get update

    2 安装vim

    1 sudo apt-get remove vim-common
    2 sudo apt-get install vim

    3 修改时间系统,防止双系统情况下win时间错误

    1 sudo vim /etc/default/rcS   

     将UTC=yes改为UTC=no

    4 卸载不常用自带软件

    1 sudo apt-get  -y remove libreoffice-common  
    1 sudo apt-get -y 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  
    1 sudo apt-get -y remove onboard deja-dup  

    5 安装搜狗输入法

    官网下载,双击安装,安装后注销登录

    http://pinyin.sogou.com/linux/

    6 安装chromium

    chrome只能在官网下载安装,chromium在软件中心安装

    7 安装JDK

    装eclipse C++,开发JAVA都需要JDK

    可以在/usr/lib下mkdir jvm,将下载的JDK解压到此目录

    在/etc/profile或 ~/.bashrc中设置环境变量

    /etc/profile的设置方法对所有登录的用户都有效,~/.bashrc只对当前用户有效

    上面两个都是配置文件,开机后,系统会先读取/etc/profile,再读~/.bashrc。不同的用户~/.bashrc文件可以有不同的设置,而/etc/profile则是共用一个,只有root才能修改。~/.bashrc对/etc/profile有追加覆盖的效果。

    export JAVA_HOME=/usr/lib/jvm/jdk1.……
    export CLASSPATH=.:$JAVA_HOME/lib:$JRE_HOME/lib:$CLASSPATH   
    export PATH=$JAVA_HOME/bin:$JRE_HOME/bin:$JAVA_HOME:$PATH 

    让配置文件生效

    source /ect/profile
    source ~/ .bashrc

    eclipse c++ 解压后直接执行 ./eclipse即可

    8 安装系统指示器SysPeek

    1 sudo add-apt-repository ppa:nilarimogard/webupd8    
    2 sudo apt-get update    
    3 sudo apt-get install syspeek  

    9 安装unrar

    1 sudo apt-get install unrar  
    2 unrar x test.rar  

    其他软件参考:http://blog.csdn.net/skykingf/article/details/45267517

  • 相关阅读:
    TypeError: Iterator operand 0 dtype could not be cast from dtype('<M8[us]') to dtype('<M8[D]') according to the rule 'safe'
    Linux中matplotlib 中文显示问题解决
    自己动手实现爬虫scrapy框架思路汇总
    机器学习算法之多项式回归
    scrapy爬虫--苏宁图书
    Mongodb数据库基本操作
    day04 Python
    day03 Python爬虫
    day02 Python完结
    day01 python基础
  • 原文地址:https://www.cnblogs.com/raichen/p/5135111.html
Copyright © 2011-2022 走看看