zoukankan      html  css  js  c++  java
  • 解决64位debian下无法安装ia32库的问题

    原文地址:http://crunchbang.org/forums/viewtopic.php?pid=277918

    因为64位debian源中并没有包括32位的软件包,所提安装ia32会提示依赖无法解决之类的问题,下面是解决方法

    # dpkg --add-architecture i386 //添加386支持(个人理解哈)

    编辑/etc/apt/source.list
    在每个deb源中添加

    [arch=amd64,i386]

    添加后的效果是这样的

    deb [arch=amd64,i386] http://mirrors.163.com/debian wheezy main non-free contrib
    deb [arch=amd64,i386] http://mirrors.163.com/debian wheezy-proposed-updates main contrib non-free
    deb-src http://mirrors.163.com/debian wheezy main non-free contrib
    deb-src http://mirrors.163.com/debian wheezy-proposed-updates main contrib non-free
    deb [arch=amd64,i386] http://mirrors.163.com/debian-security wheezy/updates main contrib non-free
    deb-src http://mirrors.163.com/debian-security wheezy/updates main contrib non-free


    更新缓存

    #apt-get update

    然后安装就OK了

  • 相关阅读:
    两数之和
    Go网络编程UDP
    Go网络编程TCP
    Go_json
    Iris_xorm
    Go初始化结构体数组/切片
    Iris_xorm
    pyhon之函数参数
    python之深浅拷贝
    python作业之用户管理程序
  • 原文地址:https://www.cnblogs.com/imoing/p/3406613.html
Copyright © 2011-2022 走看看