安装Ubuntu下应用软件

安装应用软件

 

1 安装chromium浏览器

火狐虽然好用,但个人感觉chromium更快些。虽然可以通过ubuntu software center来安装,但上面的版本都比较旧。通过添加ppa源来获取比较新的版本。

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 安装JDK

 

3 安装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 安装Git Atom

sudo add-apt-repository ppa:webupd8team /atom
sudo apt-get update
sudo apt-get install atom
 
  5 安装Eclipse
下载最新的eclispe,
cd /opt && sudo tar zvxf ~/Downloads/eclipse*.tar.gz -C ./
sudo apt-get install gksu
gksudo gedit /usr/share/applications/eclipse.desktop

粘贴并保存如下内容

[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

 制定eclipse的jvm:
cd eclipse
mkdir jre && ln -s $JAVA_HOME/bin
删除多余的ln:sudo ln -rf -s lib
或者:修改eclipse.ini  添加-vm $JAVA_HOME/bin/java
6 安装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 的可视化工具

猜你喜欢

转载自gavin2lee.iteye.com/blog/2291863