博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ubuntu必备软件安装
阅读量:5090 次
发布时间:2019-06-13

本文共 2107 字,大约阅读时间需要 7 分钟。

 [Shell/批处理]代码

01 #!/bin/bash
02 # Info   : install tools for ubuntu
03 # Author : elain                            
04 # CTime  : 2011.08.01
05  
06 #-------------------------------------------
07 #---------     删除一些没用的软件       ------------
08 #--------------------------------------force-yes  -y-------
09 sudo apt-get remove totem totem-gstreamer totem-mozilla --force-yes  -y
10 sudo apt-get remove rhythmbox evolution bittorrent empathy --force-yes  -y
11  
12  
13 #-------------------------------------------
14 #---------     常用软件     ---------------------
15 #-------------------------------------------
16 #安装vim代替vi
17 sudo apt-get install --force-yes  -y vim
18 echo "alias vi=vim " >> ~/.bashrc
19 source ~/.bashrc
20  
21 #安装压缩类软件
22 sudo apt-get install unace unrar zip unzip p7zip-full p7zip-rar sharutils rar  --force-yes  -y
23 #安装 RSS 新闻阅读器
24 sudo apt-get install akregator  --force-yes  -y
25 #安装互联网常用工具
26 sudo apt-get install filezilla amsn iptux --force-yes  -y
27 #安装emesene
28 sudo add-apt-repository ppa:emesene-team/emesene-stable
29 sudo apt-get update
30 sudo apt-get install --force-yes -y emesene
31 #安装飞信
32 sudo apt-add-repository ppa:happyaron/ppa
33 sudo apt-get update
34 sudo apt-get install --force-yes  -y openfetion
35 #安装影音工具
36 sudo apt-get install --force-yes  -y "gnome-MPlayer"
37 sudo add-apt-repository ppa:nilarimogard/webupd8
38 sudo apt-get update
39 sudo apt-get install audacious -y
40 #安装系统工具
41 sudo apt-get install --force-yes  -y yakuake htop lrzsz sysstat sshpass curl wget nmap nload tree lynx iptraf
42 #安装ubuntu-tweak
43 sudo add-apt-repository ppa:tualatrix/ppa
44 sudo apt-get update
45 sudo apt-get install ubuntu-tweak --force-yes  -y
46 #阅读CHM文件,chmsee对某些不规范的chm文件支持效好, gnochm支持搜索
47 sudo apt-get install chmsee gnochm  --force-yes  -y
48 #和Visio类似的dia(默认只能在命令行启动)
49 #sudo apt-get install dia  --force-yes  -y
50 #画UML图的umbrello
51 #sudo apt-get install umbrello  --force-yes  -y
52  
53 #安装gnome3
54 sudo add-apt-repository ppa:gnome3-team/gnome3
55 sudo apt-get update
56 sudo apt-get dist-upgrade
57 sudo apt-get install --force-yes  -y gnome-shell

转载于:https://www.cnblogs.com/10jschen/archive/2012/07/12/2587344.html

你可能感兴趣的文章