zoukankan      html  css  js  c++  java
  • Debian7系统安装配置手册

    一、安装系统

    系统版本:Debian7

    参考资料:http://www.myhack58.com/Article/48/66/2013/39802.htm

    二、配置源

    vi /etc/apt/sources.list

     1 #163源
     2 
     3 #####################主要,开源,闭源
     4 deb http://mirrors.163.com/debian wheezy main non-free contrib
     5 deb-src http://mirrors.163.com/debian wheezy main non-free contrib
     6 
     7 ###################wheezy-proposed-updates建议更新
     8 deb http://mirrors.163.com/debian wheezy-proposed-updates main contrib non-free
     9 deb-src http://mirrors.163.com/debian wheezy-proposed-updates main contrib non-free
    10 
    11 #wheezy-updates推荐更新
    12 deb http://mirrors.163.com/debian wheezy-updates main contrib non-free
    13 deb-src http://mirrors.163.com/debian wheezy-updates main contrib non-free
    14 
    15 
    16 #wheezy/updates安全更新
    17 deb http://mirrors.163.com/debian-security wheezy/updates main contrib non-free 
    18 deb-src http://mirrors.163.com/debian-security wheezy/updates main contrib non-free 
    19 
    20 deb http://http.us.debian.org/debian wheezy main contrib non-free
    21 deb http://security.debian.org wheezy/updates main contrib non-free
    22 
    23 
    24 #上海交大
    25 deb http://ftp.sjtu.edu.cn/debian wheezy main non-free contrib
    26 deb http://ftp.sjtu.edu.cn/debian wheezy-proposed-updates main non-free contrib
    27 deb http://ftp.sjtu.edu.cn/debian-security wheezy/updates main non-free contrib
    28 deb-src http://ftp.sjtu.edu.cn/debian wheezy main non-free contrib
    29 deb-src http://ftp.sjtu.edu.cn/debian wheezy-proposed-updates main non-free contrib
    30 deb-src http://ftp.sjtu.edu.cn/debian-security wheezy/updates main non-free contrib
    31 
    32 #上海交大 ipv6
    33 deb http://ftp6.sjtu.edu.cn/debian wheezy main non-free contrib
    34 deb http://ftp6.sjtu.edu.cn/debian wheezy-proposed-updates main non-free contrib
    35 deb http://ftp6.sjtu.edu.cn/debian-security wheezy/updates main non-free contrib
    36 deb-src http://ftp6.sjtu.edu.cn/debian wheezy main non-free contrib
    37 deb-src http://ftp6.sjtu.edu.cn/debian wheezy-proposed-updates main non-free contrib
    38 deb-src http://ftp6.sjtu.edu.cn/debian-security wheezy/updates main non-free contrib
    39 
    40 #网易 
    41 deb http://mirrors.163.com/debian/ wheezy main non-free contrib
    42 deb http://mirrors.163.com/debian/ wheezy-proposed-updates main non-free contrib
    43 deb-src http://mirrors.163.com/debian/ wheezy main non-free contrib
    44 deb-src http://mirrors.163.com/debian/ wheezy-proposed-updates main non-free contrib
    45 
    46 #搜狐
    47 deb http://mirrors.sohu.com/debian/ wheezy main non-free contrib
    48 deb http://mirrors.sohu.com/debian/ wheezy-proposed-updates main non-free contrib
    49 deb-src http://mirrors.sohu.com/debian/ wheezy main non-free contrib
    50 deb-src http://mirrors.sohu.com/debian/ wheezy-proposed-updates main non-free contrib
    51 
    52 #中国科技大学
    53 deb http://mirrors.ustc.edu.cn/debian/ wheezy main non-free contrib
    54 deb http://mirrors.ustc.edu.cn/debian/ wheezy-proposed-updates main non-free contrib
    55 deb-src http://mirrors.ustc.edu.cn/debian/ wheezy main non-free contrib
    56 deb-src http://mirrors.ustc.edu.cn/debian/ wheezy-proposed-updates main non-free contrib
    57 
    58 #清华大学 不是很稳定
    59 deb http://mirrors.tuna.tsinghua.edu.cn/debian/ wheezy main non-free contrib
    60 deb http://mirrors.tuna.tsinghua.edu.cn/ wheezy-proposed-updates main non-free contrib
    61 deb-src http://mirrors.tuna.tsinghua.edu.cn/ wheezy main non-free contrib
    62 deb-src http://mirrors.tuna.tsinghua.edu.cn/ wheezy-proposed-updates main non-free contrib
    63 
    64 #北京理工
    65 deb http://mirrors.bit.edu.cn/debian/ wheezy main non-free contrib
    66 deb http://mirrors.bit.edu.cn/ wheezy-proposed-updates main non-free contrib
    67 deb-src http://mirrors.bit.edu.cn/ wheezy main non-free contrib
    68 deb-src http://mirrors.bit.edu.cn/ wheezy-proposed-updates main non-free contrib
    69 
    70 #北京理工(Ipv6)
    71 deb http://mirrors.bit6.edu.cn/debian/ wheezy main non-free contrib
    72 deb http://mirrors.bit6.edu.cn/ wheezy-proposed-updates main non-free contrib
    73 deb-src http://mirrors.bit6.edu.cn/ wheezy main non-free contrib
    74 deb-src http://mirrors.bit6.edu.cn/ wheezy-proposed-updates main non-free contrib
    75 
    76 #清华大学(Ipv6)
    77 deb http://mirrors.6.tuna.tsinghua.edu.cn/debian/ wheezy main non-free contrib
    78 deb http://mirrors.6.tuna.tsinghua.edu.cn/ wheezy-proposed-updates main non-free contrib
    79 deb-src http://mirrors.6.tuna.tsinghua.edu.cn/ wheezy main non-free contrib
    80 deb-src http://mirrors.6.tuna.tsinghua.edu.cn/ wheezy-proposed-updates main non-free contrib

     三、安装浏览器

    sudo apt-get update
    sudo apt-get install chromium chromium-l10n

    四、安装flash

    安装flashplugins
    下载http://get.adobe.com/flashplayer,选择.tar.gz包。

    tar xvf install_flash_player_11_linux.i386.tar.gz
    cp –rv usr /usr
    mkdir –v /usr/lib/iceweasel/plugins
    cp libflashplayer.so /usr/lib/iceweasel/plugins
    cp libflashplayer.so /usr/lib/chromium/plugins
  • 相关阅读:
    netty(八) netty中自带channelhandler
    netty(七) Handler的执行顺序
    netty(六) websocket开发应用
    netty(五) http协议开发应用
    netty(四) 编解码技术
    netty(三) TIP黏包/拆包问题解决之道
    netty(二) 创建一个netty服务端和客户端
    netty(一) netty有哪几部分构成
    使用jsp制作index,可以通过<c:if test==“管理员”>或<c:if test=="客户">来区别展示用户界面
    使用jstl和el表达式来展示request域中存放的user对象的信息
  • 原文地址:https://www.cnblogs.com/xuegqcto/p/3601599.html
Copyright © 2011-2022 走看看