sudo apt-get update

sudo apt-get install flashplugin-nonfree

=================

类飞秋软件

sudo apt-get install iptux

===================

1.官网下载

http://www.foxitsoftware.cn/downloads/

2.安装

tar -zxvf FoxitReader1.01.0925_Server_x64_enu_Setup.run.tar.gz
  ./FoxitReader.enu.setup.x64.1.0.1.0925r189237.run

3.优点

能添加bookmark,打开多个文件

===================================

安装lantern

https://github.com/getlantern/lantern

安装: sudo dpkg -i lantern.deb
安装完后要给权限: sudo chmod -R 777 /usr/bin/lantern
lantern生效

卸载

sudo dpkg -P lantern

======================================

安装Python2.7.13

sudo apt-get install build-essential checkinstall
sudo apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev

下载python

chmod 777 /usr/src

cd /usr/src

wget https://www.python.org/ftp/python/2.7.13/Python-2.7.13.tgz

解压并编译安装

tar xzf Python-2.7.13.tgz

cd Python-2.7.13

sudo ./configure

sudo make altinstall

=================================

安装python的numpy,scipy,matplotlib

先安装pip

sudo apt-get update

sudo apt install python-pip

sudo pip install --upgrade pip

安装numpy .....

sudo apt install python-numpy

sudo apt install python-scipy

sudo apt install python-matplotlib

=========================================

安装ipython

sudo apt-get update

sudo apt install ipython

安装 ipython notebook

pip install jupyter

==========================================

安装 Git

sudo apt install git

配置git全局信息:

3.1 设置git的user name和email:
$ git config --global user.name "github帐号"
$ git config --global user.email "注册github帐号时用的邮箱"
3.2 生成SSH密钥

首先察看是否有.ssh文件存在
$cd ~/.ssh
如果有的话,先删除,在生成新的SSH密钥

​ ​ $ssh-keygen -t rsa -C “注册github帐号时用的邮箱”

根据提示 按3个回车
会在~/.ssh/下生成两个文件:id_rsa和id_rsa.pub

=========================================

git 常用命令

 ​ ​初始化git
​ ​ ​ ​$git init
​ ​ ​clone代码到本地
​ ​ ​ ​$git clone
​ ​ ​添加文件到git
​ ​ ​ ​$git add
​ ​ ​查看版本库的状态:
​ ​ ​ ​$ git status
​ ​ ​提交内容到版本库:
​ ​ ​​$git-commit
​ ​ ​比较当前的工作目录和版本库数据库中的差异
​ ​ ​ ​$git-diff
​ ​ ​查看修改、提交记录
​ ​ ​ ​$ git-log
​ ​ ​从仓库到本地
​ ​ ​ ​ $git pull origin master
​ ​ ​从本地到仓库
​ ​ ​ ​ $git push origin master

==============================================

$ sudo apt-add-repository ppa:octave/stable
$ sudo apt-get update
$ sudo apt-get install octave

============================================

内置桌面共享 配置,可以在windows使用vncviewer来连接Ubuntu

1、打开桌面共享

勾选“允许其他人查看您的桌面”,要求远程用户输入此密码:

2、安装dconf-editor 来修改系统参数配置

sudo apt-get update

sudo apt-get install -y dconf-editor

终端输入:

dconf-editor

在 org -> gnome -> desktop -> remote-access 页面中

去掉“prompt-enabled”和“require-encryption”两个勾

3、在windows端,用VNCviewer登陆即可

==============================================

xrdp VNC4server配置,可以在windwos使用mstsc登陆

sudo apt-get update

sudo apt-get install -y xrdp

sudo apt-get install -y vnc4server

sudo apt-get install -y xubuntu-desktop

echo "xfce4-session" >~/.xsession

sudo service xrdp restart

完成!

==========================================

安装 雅黑consolas字体

sudo apt-get update

sudo apt-get install -y unity-tweak-tool

下载字体:http://www.mycode.net.cn/wp-content/uploads/2015/07/YaHeiConsolas.tar.gz

tar -zxvf YaHeiConsolas.tar.gz

sudo mkdir -p /usr/share/fonts/vista

sudo cp YaHeiConsolas.ttf /usr/share/fonts/vista/

sudo chmod 644 /usr/share/fonts/vista/*.ttf

cd /usr/share/fonts/vista/

sudo mkfontscale && sudo mkfontdir && sudo fc-cache -fv

重启系统,然后在unity-tweak-tool中修改字体即可

===========================================

设置代理:

sudo gedit /etc/environment

http_proxy="http://ip:port"

https_proxy="https://ip:port"

no_proxy="10.0.0.0/8, .hello.com.cn"

为终端设置代理:

sudo gedit /etc/apt/apt.conf

添加一行:

Acquire::http::proxy "http://user:passwd@ip.port/";

设置DNS:

sudo gedit /etc/resolv.conf

添加

nameserver 8.8.8.8

Ubuntu14.04常用安装的更多相关文章

  1. [译]How to Install Node.js on Ubuntu 14.04 如何在ubuntu14.04上安装node.js

    原文链接为 http://www.hostingadvice.com/how-to/install-nodejs-ubuntu-14-04/ 由作者Jacob Nicholson 发表于October ...

  2. Ubuntu14.04下安装Hadoop2.5.1 (单机模式)

    本文地址:http://www.cnblogs.com/archimedes/p/hadoop-standalone-mode.html,转载请注明源地址. 欢迎关注我的个人博客:www.wuyudo ...

  3. Ubuntu14.04编译安装mysql5.6.26

    Ubuntu14.04编译安装mysql5.6.26 (1)安装编译源码需要的包 sudo apt-get install make cmake gcc g++ bison libncurses5-d ...

  4. 二、Ubuntu14.04下安装Hadoop2.4.0 (伪分布模式)

    在Ubuntu14.04下安装Hadoop2.4.0 (单机模式)基础上配置 一.配置core-site.xml /usr/local/hadoop/etc/hadoop/core-site.xml ...

  5. Ubuntu14.04 Tomcat 安装过程记录

    Ubuntu14.04 Tomcat 安装过程记录 检查java的版本 zhousp@ubuntu:~$ sudo java -version [sudo] password for zhousp: ...

  6. Ubuntu14.04下安装Flash Player

    Ubuntu14.04下安装Flash Player youhaidong@youhaidong:~$ sudo apt-get install flashplugin-nonfree [sudo] ...

  7. [原]在使用ubuntu14.04,安装devstack的时候报错./stack.sh: line 463: generate-subunit: command not found

    =======在使用ubuntu14.04,安装devstack的时候报错./stack.sh: line 463: generate-subunit: command not found 2016- ...

  8. Ubuntu14.04下 安装p4c

    参考: Github p4c README Ubuntu14.04下 安装p4c 这里提供一个直接安装p4c的脚本:install_p4c.sh. 1.git clone下来p4c: $ git cl ...

  9. Ubuntu14.04下安装Libsvm,并使用Libsvm

    (1)Ubuntu14.04下安装Libsvm 转载:https://blog.csdn.net/katrinawj/article/details/78915874 一.下载: 网址:http:// ...

随机推荐

  1. p1036 选数(不详细勿看,递归)

    题目:传送门 这题,不会做,而且看了好久才看懂题解的,然后在题解的基础上补了一个 if(start>end) return 0 感觉这样对于我更直观 转载自:大神博客的传送门,点击进入 先声明, ...

  2. get、post、put、delete

    form表单有两种提交方式,get和post,get没有请求体, 但是有查询字符串参数拼接在url后面,post有请求体,表单内容对用户不可见. 1.form表单以get请求提交, 2.from表单以 ...

  3. IO之Object流举例

    import java.io.*; public class TestObjectIO { public static void main(String args[]) throws Exceptio ...

  4. django实现github第三方本地登录

    1.安装 pip install social-auth-app-django 2.生成Client ID和Client Secret 3.修改setting.py INSTALLED_APPS = ...

  5. Linux中vim编辑器常用命令

    移动光标 Ctrl+f:屏幕向下移动一页,相当于[Page Down]按键Ctrl+b:屏幕向上移动一页,相当与[PageUp]按键 0或功能键[Home]:数字‘0’:移动到这一行的最前面的字符处$ ...

  6. HTML5新增的主体元素article、section、nav、aside、time元素和pubdate属性

    article artticle元素代表文档.页面或应用程序中独立的.完整的.可以独自被外部引用的内容.它可以是一篇博客或者报刊中的文章,一篇论坛帖子,一段用户评论或者独立的插件或其他任何独立的内容. ...

  7. Python_编程题集_003_递归算法解析

    3.递归算法: 3)传入一个Json串,返回一个字典,字典只取出Json最底层的数据, 中间如果有字符串也要进行处理,请以下面的数据为例,请用递归方法实现 Json:{"a":&q ...

  8. Python 2 和 Python 3 主要区别有哪些(1)

    Guido(Python之父,仁慈的独裁者)在设计 Python3 的过程中,受一篇文章 “Python warts” 的影响,决定不向后兼容,否则无法修复大多数缺陷.---摘录自<流畅的Pyt ...

  9. Spring Boot 集成Angular程序

    假设 1.你已经完成了Spring Boot的示例,在浏览其中输入http://localhost:8080/index,能够返回html页面. 2.你已经完成了Angular程序,名字为quicks ...

  10. HDU 1257 最少拦截系统(最长上升子序列)

    题意: 给定n个数, 然后要求看看有多少对不上升子序列. 分析: 求出最长上升子序列, 那么整个序列中LIS外的数都会在前面找到一个比自己大的数, 所以不上升子序列最多有最长上升子序列个数个. 关于求 ...