• ubuntu必备软件安装


     [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
  • 相关阅读:
    postman获取请求响应值
    http常用状态码说明
    postman的Testing examples(测试脚本示例)
    JMeter 如何把上一个请求的结果作为下一个请求的参数 —— 使用正则提取器
    一个绿色版的正则表达式测试工具
    让TinyXML保存文件为UTF-8格式
    TinyXml2 的使用
    Apache Thrift
    解决sqlserver的sql脚本内存不足问题
    一个表的两个字段具有相同的类型。如何仅用SQL语句交换这两列的数据?
  • 原文地址:https://www.cnblogs.com/10jschen/p/2587344.html
Copyright © 2020-2023  润新知