Install application software under Ubuntu

Install application software

 

1 Install Chrome browser

Although Firefox is easy to use, I personally feel that chromium is faster. Although it can be installed through the ubuntu software center, the above versions are relatively old. Get a newer version by adding the ppa source.

sudo add-apt-repository ppa:chromium-daily/ppa

sudo apt-get update

sudo apt-get install chromium-browser webaccounts-chromium-extension unity-chromium-extension adobe-flashplugin

 

----

f you use Chromium and are on 14.04 you can and probably should get the pepper flash plugin by going to your terminal and entering
sudo apt-get install pepperflashplugin-nonfree

then in /etc/chromium-browser/default
add this line at the bottom
. /usr/lib/pepflashplugin-installer/pepflashplayer.sh

I don't think it auto updates like chrome does so to update type
sudo update-pepperflashplugin-nonfree --install
into the terminal

----

 

2 Install JDK

slightly

 

3 Install Git

sudo apt-get install git

git --version

git config --global user.name "name"

git config --global user.email "email"

ssh-keygen -t rsa

 

4 Install Git Atom

sudo add-apt-repository ppa:webupd8team /atom
sudo apt-get update
sudo apt-get install atom
 
  5 Install Eclipse
download the latest eclispe,
cd /opt && sudo tar zvxf ~/Downloads/eclipse*.tar.gz -C ./
sudo apt-get install gksu
gksudo gedit /usr/share/applications/eclipse.desktop

Paste and save the following

[Desktop Entry]
Name=Eclipse 4
Type=Application
Exec=/opt/eclipse/eclipse
Terminal=false
Icon=/opt/eclipse/icon.xpm
Comment=Integrated Development Environment
NoDisplay=false
Categories=Development;IDE;
Name[en]=Eclipse

 Formulate the jvm of eclipse:
cd eclipse
mkdir jre && ln -s $JAVA_HOME/bin
Remove redundant ln: sudo ln -rf -s lib
Or: modify eclipse.ini to add -vm $JAVA_HOME/bin/java
6 Install wireshark

Wireshark设置interface 时提示“There are no interfaces on which a capture can be done ” 

第一种方法:使用root用户登陆
       sudo wireshark 
  第二种方法: 通过guid形式使当前普通用户可以运行此程序。

      groupadd  -g 130  wireshark

       #  新建一个名为wireshark的用户组, 130 是GID,此数字不是固定不变的, 请先查看/etc/group 文件查看最大的GID是多少,然后加1即可。
       usermod  -a -G wireshark  username  
      #  将当前用户添加到wireshark组中。 使之成为新的组员。
    chgrp  wireshark   /usr/bin/dumpcap
     #  将/usr/bin/dumpcap  程序的属组更改为wireshark  。
      chmod  4750 /usr/bin/dumpcap
     修改 /usr/bin/dumpcap  的权限 更改为  4750  添加suid 权限 。 
      setcap cap_net_raw,cap_net_admin=eip /usr/bin/dumpcap 
      
     修改完成还不能直接使用,需要重新登陆一下才可以。需你不想重新登陆可以使用如下命令。
    newgrp wireshark
   完成后就可以使用普通用户执行wireshark 程序了。
 
7 安装uGet
 像迅雷一样的下载工具。
 
8 安装Visual Vm
参考
 9 DiffMerge 文件比较工具
http://www.sourcegear.com/diffmerge/downloads.php
 10 解压缩软件
需要解压缩rar文件,需要安装p7zip
sudo apt-get install p7zip-full
 9 安装UML工具
 umbrello,可以直接在软件中心上搜索安装。
Dia,直接在软件中心上搜做安装。

10 安装MySql

sudo apt-get install mysql-server
sudo service mysql status 
Stop the MySQL server with the following command:
sudo service mysql stop
sudo service mysql start 
安装mysql workbench,mysql 的可视化工具

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326654971&siteId=291194637