月度归档: 2016 年 7 月

  • Centos查看端口占用情况和开启端口命令

    Centos查看端口占用情况命令,比如查看80端口占用情况使用如下命令:
    lsof -i tcp:80
    列出所有端口
    netstat -ntlp

    1、开启端口(以80端口为例)

    方法一:
    /sbin/iptables -I INPUT -p tcp –dport 80 -j ACCEPT ? 写入修改
    /etc/init.d/iptables save ? 保存修改
    ?service iptables restart ? ?重启防火墙,修改生效
    方法二:
    ?vi /etc/sysconfig/iptables ?打开配置文件加入如下语句:
    -A INPUT -p tcp -m state –state NEW -m tcp –dport 80 -j ACCEPT ? 重启防火墙,修改完成

    2、关闭端口

    方法一:
    ?/sbin/iptables -I INPUT -p tcp –dport 80 -j DROP ? 写入修改
    /etc/init.d/iptables save ? 保存修改
    ?service iptables restart ? ?重启防火墙,修改生效
    方法二:
    vi /etc/sysconfig/iptables ?打开配置文件加入如下语句:
    -A INPUT -p tcp -m state –state NEW -m tcp –dport 80 -j DROP ? 重启防火墙,修改完成

    3、查看端口状态

    /etc/init.d/iptables status
  • BuyVM 2GB内存KVM VPS仅需7美元

    BuyVM是一家老牌的国外主机商,因提供便宜VPS而出名。其VPS主机价格虽然便宜,但性能非常不错,性价比高。因此,在国内外站长圈里面口碑非常不错。目前,BuyVM推出了KVM VPS,2GB内存方案月付只需7刀,性价比不错。

    buyvm

    BuyVM特价VPS方案如下,还有年付15美金的廉价VPS:

    • 核心:1核CPU
    • 内存:2GB
    • 硬盘:40GB ssd
    • 流量:2TB
    • 端口:1Gbps
    • 架构:KVM
    • 系统:windows2008/2012
    • 价格:$7/month
    • 传送:购买链接
    • 核心:1核CPU
    • 内存:128MB
    • 硬盘:15GB hdd
    • 流量:500GB
    • 端口:1Gbps
    • 架构:OpenVZ
    • 系统:Linux
    • 价格:$15/year
    • 传送:购买链接

    BuyVM官网:http://buyvm.net/

    附上测速信息:

    IPv4 Test IP Address > 209.141.56.135
    Test Files > http://speedtest.lv.buyvm.net/100MB.test

  • 华为云免费无限领取云服务器 图文教程 每天数量有限

    华为云推出了免费的云服务器,不过每天都有限额。最好是每天早上的0:00去抢,不然名额很快没有。hwclouds 支持 windows(可挂机) 及 linux系统。有兴趣的小伙伴赶快抢吧~

    6.6元服务器地址:http://activity.hwclouds.com/monkey_spring/index.html

    免费服务器地址:http://activity.hwclouds.com/tryfree/index.html

  • Centos 5.x或6.x上安装RHEL EPEL Repo 图文教程

    RHEL EPEL(Extra Packages for Enterprise Linux) Repo是Linux发行版中最大的软件仓库之一,免费,丰富的软件包更新。

    安装步骤
    Centos 5.x

    wget http://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
    wget http://rpms.famillecollet.com/enterprise/remi-release-5.rpm
    rpm -ivh epel-release-5-4.noarch.rpm
    rpm -ivh remi-release-5.rpm

    Centos 6.x

    wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
    wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
    rpm -ivh epel-release-6-8.noarch.rpm
    rpm -ivh remi-release-6.rpm

    完成后的设置

    ls -1 /etc/yum.repos.d/epel* /etc/yum.repos.d/remi.repo

    返回

    /etc/yum.repos.d/epel.repo
    /etc/yum.repos.d/epel-testing.repo
    /etc/yum.repos.d/remi.repo

    允许remi repository

    vi /etc/yum.repos.d/remi.repo

    编辑[remi]下的enabled选项从0设为1

    [remi]
    name=Les RPM de remi pour Enterprise Linux 6 - $basearch
    #baseurl=http://rpms.famillecollet.com/enterprise/6/remi/$basearch/
    mirrorlist=http://rpms.famillecollet.com/enterprise/6/remi/mirror
    enabled=1
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi

    至此,安装完成。

    安装完运行yum报错:

    Error: Cannot retrieve metalink for repository: epel. Please verify its path and try again

    解决办法:

    vi /etc/yum.repos.d/epel.repo

    编辑[epel]下的baseurl前的#号去掉,mirrorlist前添加#号。正确配置如下:

    [epel]
    name=Extra Packages for Enterprise Linux 6 - $basearch
    baseurl=http://download.fedoraproject.org/pub/epel/6/$basearch
    #mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-6&arch=$basearch
    failovermethod=priority
    enabled=1
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6

    再运行

    yum makecache
  • wordpress博客迁移中文出现乱码解决方法 图文教程

    今天做了wordpress博客迁移,打算使用新的地址:https://www.jiloc.com

    但是迁移以后中文出现了乱码??? ,是问号。如下图所示:

    QQ截图20150623151659

     

    通过phpmyadmin打开数据库一看,数据库是OK的,中文显示正常

    QQ截图20150623151821

     

    根据经验来说,那么肯定是wordpress程序出了问题。

    打开 wp-config.php 查看,果然是这样的。

    define(‘DB_CHARSET’, ‘utf8mb4’);

    我们默认编码设置的是UTF8,但是wordpress配置文件使用的是utf8mb4 。

    QQ截图20150623151941

     

    修改一下,改成:

    define(‘DB_CHARSET’, ‘utf8’);

    即可恢复正常了。

  • MySQL的replace函数批量替换的用法

    MySQL的批量替换,可以使用 REPLACE 函数,下面是具体用法:

    REPLACE(field,find_str,replace_str): 字段field的内容中的find_str 将被 替换为 replace_str

    例如:

    update wp_posts set post_content=replace(post_content,'www.jjhr.net','jiloc.com');
  • 搬瓦工BandwagonHost VPS 使用Putty连接SSH图文教程

    前面我们介绍了搬瓦工BandwagonHost 海外便宜VPS

    由于这里的搬瓦工VPS只能使用Linux系统,但是很大一部分小伙伴不知道如何使用它。下面我们介绍一下通过ssh连接Linux系统的最基本方法:

    一,什么是ssh

    二,如何使用putty通过ssh登陆vps进行管理

    一,什么是ssh

    SSH 为 Secure Shell 的缩写,由 IETF 的网络工作小组(Network Working Group)所制定;SSH 为建立在应用层和传输层基础上的安全协议。

    传统的网络服务程序,如FTP、POP和Telnet其本质上都是不安全的;因为它们在网络上用明文传送数据、用户帐号和用户口令,很容易受到中间人(man-in-the-middle)攻击方式的攻击。就是存在另一个人或者一台机器冒充真正的服务器接收用户传给服务器的数据,然后再冒充用户把数据传给真正的服务器。

    而 SSH 是目前较可靠,专为远程登录会话和其他网络服务提供安全性的协议。利用 SSH 协议可以有效防止远程管理过程中的信息泄露问题。透过 SSH 可以对所有传输的数据进行加密,也能够防止 DNS 欺骗和 IP 欺骗。

    SSH 之另一项优点为其传输的数据是经过压缩的,所以可以加快传输的速度。SSH有很多功能,它既可以代替 Telnet,又可以为FTP、POP、甚至为 PPP 提供一个安全的“通道”。

    (其实上面都是废话,你不看也没关系,你只需要知道,我们如果要从电脑连接到我们的vps需要通过走ssh这条路就可以了)

    二,如何使用putty通过ssh登陆vps进行管理

    Putty是一个免费的、Windows 32平台下的telnet、rlogin和ssh客户端,我们有的时候想要在搬瓦工上安装点什么,就会通过putty连接我们的vps。Putty功能丝毫不逊色于商业的telnet类工具。用它来远程管理Linux VPS十分好用,其主要优点如下:

    ◆?完全免费;

    ◆?在Windows 下运行的都非常好;

    ◆?全面支持ssh1和ssh2;

    ◆?绿色软件,无需安装,下载后在桌面建个快捷方式即可使用;

    ◆?体积很小;

    ◆?操作简单,所有的操作都在一个控制面板中实现。

    putty下载地址: http://rj.baidu.com/soft/detail/15699.html?ald

    下载完成,解压,即可使用。

    以下是使用putty 登录Linux VPS进行远程(SSH)管理?的图片教程:




    提示:输入密码是不显示的!!


  • 搬瓦工BandwagonHost vps 重装系统图文教程

    前面我们写了新手用户搬瓦工VPS购买图文指导教程便宜VPS 搬瓦工bandwagonhost 优惠码

    下面我们写一下重装系统的图文教程~

    第一、登录当前的VPS主机

    登录当前的VPS主机

    我们可以看上图,在Services – My Services,中找到当前我们已经开通的VPS(Active状态),看到激活状态之后,我们可以直接点击KiWiVM Control Panel进入面板管理页面。

    第二、关闭当前VPS

    我们在重新安装系统之前,需要先STOP当前VPS系统。

    关闭当前VPS

    因为只有先STOP之后,才可以安装新的环境。

    第三、选择Linux版本重新安装系统

    选择Linux版本重新安装系统

    看到上图,我们点击INSTALL NEW OS菜单,然后选择右侧的系统版本,(个人推荐 centos os 6 x86 minimal;debian系统是占用系统资源最少的,建议想建站的朋友使用)点击下面那一行红字表示知道后果,然后点reload重装。

    第四、获取新系统信息

    这里我们就可以得到最新的VPS端口和ROOT密码,我们再去检查一下当前系统是不是RUNNING状态,如果不是可以点击START启动。

    就这样,我们新购买的搬瓦工VPS,就可以重新安装了新的系统,可以自己任意使用。如果我们需要自己购买,那就到这里,选择当前6个方案其中之一,自己购买。

  • PC挂机赚钱 百度众测 网赚项目 图文教程

    现在推荐给大家的是 百度众测,用PC挂机,同样的可以赚钱。

    百度众测官方地址:https://www.jiloc.com/go/baidu-crowdtest

    请使用我们的AFF尾巴,谢谢!

    电脑挂机是众测PC客户端上的一种挂机任务。

     

    众测客户端

    http://bs.baidu.com/online-crowdtest/%2F431795_%D6%DA%B2%E2%BF%CD%BB%A7%B6%CB%CF%C2%D4%D8.jpg

    众测PC客户端是百度众测在PC端的用户体验收集工具,只需安装并保持软件在运行状态就可以坐着、躺着、睡着数礼券啦~

     

    下载安装

    项目地址:http://test.baidu.com/crowdtest/n/bug/index/proid/15287

    点击项目中的【立即下载>>】即可下载安装

     

    任务攻略

    众测PC客户端上可以进行两种任务哦,分别是电脑挂机和手机挂机。

    这里是电脑挂机的攻略。

    完成安装后,双击众测图标 ?? http://bs.baidu.com/online-crowdtest/%2F431806_%D6%DA%B2%E2%BF%CD%BB%A7%B6%CB%B5%C7%C2%BD.jpg???? 输入自己的百度账号

    在桌面右下角找到众测客户端图标???? ,? 确保客户端在运行状态,就可以开始赚钱啦~

     

  • 搬瓦工VPS续费、自动续费、取消续费几个问题

    我们在购买海外VPS/服务器的时候最为担心就是资金的安全问题,尤其是使用PAYPAL、信用卡等付款方式的时候,因为有一些商家虽然是告知会自动续费的,但是因为我们语言不通问题不清楚在购买VPS主机之后是协议自动续费的,很多朋友没有及时的删除取消订单,导致被扣款。

    在我们搬瓦工VPS主机中,关于续费问题还是有一些疑问的,比如是否会自动续费问题,比如我们取消订单之后是否可以继续激活让我们继续续费。在这篇文章中,我们将会分享关于搬瓦工VPS主机续费的官方解答,可以解决我们的疑惑问题。
    Tip:目前搬瓦工VPS支持支付宝、PAYPAL、信用卡付款。

    第一、关于自动续费问题

    从上图中,我们可以看到在VPS列表中默认都是有一个ON的状态,很多人以为是自动开启自动续费的,其实根据官方的解读任何机器都不会自动扣费的,全部采用用户自主付款模式。这个ON仅仅代表账单到期的时候会通过邮件,以及后台提醒我们需要续费而已,会产生一个续费付款工单。如果我们点击OFF,那就不会给我们推送续费工单。


    Tip:我们购买之后就是ON状态,没有必要关闭,即便我们不续费也不要紧。

    第二、是否可以提前续费

    搬瓦工VPS不可以提前续费,必须在产品到期前7天,官方会推送邮件、后台推送续费付款工单在BILLING中,我们看到未付款账单在会后再去付款,我们有12天的续费时间,如果我们担心会出现忘记续费的问题,我们可以在账户后台ADD FUNDS进行充值到账户中,然后再去让系统自动从余额中扣费。

    第三、如何重启提醒续费工单问题

    我们有一些网友,包括我自己在开始购买搬瓦工VPS之后,担心会自动续费,所以会OFF掉账单提醒选项,如果我们还希望续费,那可以在账单到期前8天,通过提交TICKET工单,申请需要激活账单我们需要续费的事情,官方会给我们重新开启账单给我们续费的。
    Tip:关于续费问题,我们只要记住几个时间就可以,官方不会自动续费扣费,需要我们提前6-7天才会看到续费工单,我们再去付款。

  • 搬瓦工VPS主机调整付款周期及说明 图文教程

    如果我们是搬瓦工VPS老用户,肯定比较清楚开始我们购买方案的时候有月付、年付、半年付款方式,一旦选择是不可以更改的。不过,这样的设置对于一些新用户是有些牵强,因为很多人都希望尝试一个月,如果好用会继续续费使用,这个也是情理之中的。所以,官方准备调整后台设置,我们可以自己选择和调整付款周期。

    在这篇文章中,我们将会演示给大家看看,如何调整搬瓦工VPS主机的付款周期,这里我在购买机器的时候选择的是月付方案,比如我现在需要更换年付或者半年方案。
    Tip:对于陌生的VPS主机商,我们一直建议采用月付方式,或者不满意就退款。

    第一、登录VPS列表界面

    这里我们需要先登入当前后台所有VPS主机列表,位置在”Serices”-“My Services”。

    如上图所示,看到当前已经ACTIVE激活状态的机器,看到箭头指向的Modify,当前机器我是采用月付方式的。如果需要修改就点击链接。
    Tip:有些低配置套餐是不可以修改的,比如早期年付方案是不可以修改。

    第二、修改付款周期

    我们可以修改成年付、半年或者季度。

    我们看到上图 ,比如选择年付方案之后,我们补差价付款就可以。这样,我们当前机器就年付方案,而且依旧可以享受优惠活动的。

  • Debian7 apt-get wheezy sources.list

    Debian7 apt-get wheezy sources.list

    本文中,我们记录一下Debian7 wheezy的apt源,以下源只适用 debian 7 wheezy:

    Security Updates

    # /etc/apt/sources.list :
    deb http://security.debian.org/ wheezy/updates main contrib non-free
    deb-src http://security.debian.org/ wheezy/updates main contrib non-free

    Australia Mirror

    # /etc/apt/sources.list :
    deb http://ftp.au.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.au.debian.org/debian/ wheezy main contrib non-free
    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Austria Mirror

    # /etc/apt/sources.list :
    deb http://ftp.at.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.at.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Belarus Mirror

    # /etc/apt/sources.list :
    deb http://ftp.by.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.by.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Belgium Mirror

    # /etc/apt/sources.list :
    deb http://ftp.be.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.be.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Bosnia and Herzegovina Mirror

    # /etc/apt/sources.list :
    deb http://ftp.ba.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.ba.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Brazil Mirror

    # /etc/apt/sources.list :
    deb http://ftp.br.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.br.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Bulgaria Mirror

    # /etc/apt/sources.list :
    deb http://ftp.bg.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.bg.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Canada Mirror

    # /etc/apt/sources.list :
    deb http://ftp.ca.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.ca.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Chile Mirror

    # /etc/apt/sources.list :
    deb http://ftp.cl.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.cl.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Croatia Mirror

    # /etc/apt/sources.list :
    deb http://ftp.hr.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.hr.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Czech Republic Mirror

    # /etc/apt/sources.list :
    deb http://ftp.cz.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.cz.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Denmark Mirror

    # /etc/apt/sources.list :
    deb http://ftp.dk.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.dk.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Estonia Mirror

    # /etc/apt/sources.list :
    deb http://ftp.ee.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.ee.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Finland Mirror

    # /etc/apt/sources.list :
    deb http://ftp.fi.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.fi.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    France Mirror 1

    # /etc/apt/sources.list :
    deb http://ftp.fr.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.fr.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    France Mirror 2

    # /etc/apt/sources.list :
    deb http://ftp2.fr.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp2.fr.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Germany Mirror 1

    # /etc/apt/sources.list :
    deb http://ftp.de.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.de.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Germany Mirror 2

    # /etc/apt/sources.list :
    deb http://ftp2.de.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp2.de.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Great Britain Mirror

    # /etc/apt/sources.list :
    deb http://ftp.uk.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.uk.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Greece Mirror

    # /etc/apt/sources.list :
    deb http://ftp.gr.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.gr.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Hong Kong Mirror

    # /etc/apt/sources.list :
    deb http://ftp.hk.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.hk.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Hungary Mirror

    # /etc/apt/sources.list :
    deb http://ftp.hu.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.hu.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Iceland Mirror

    # /etc/apt/sources.list :
    deb http://ftp.is.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.is.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Ireland Mirror

    # /etc/apt/sources.list :
    deb http://ftp.ie.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.ie.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Italy Mirror

    # /etc/apt/sources.list :
    deb http://ftp.it.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.it.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Japan Mirror 1

    # /etc/apt/sources.list :
    deb http://ftp.jp.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.jp.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Japan Mirror 2

    # /etc/apt/sources.list :
    deb http://ftp2.jp.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp2.jp.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Korea Mirror

    # /etc/apt/sources.list :
    deb http://ftp.kr.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.kr.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Lithuania Mirror

    # /etc/apt/sources.list :
    deb http://ftp.lt.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.lt.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Mexico Mirror

    # /etc/apt/sources.list :
    deb http://ftp.mx.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.mx.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Netherlands Mirror

    # /etc/apt/sources.list :
    deb http://ftp.nl.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.nl.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    New Caledonia Mirror

    # /etc/apt/sources.list :
    deb http://ftp.nc.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.nc.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    New Zealand Mirror

    # /etc/apt/sources.list :
    deb http://ftp.nz.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.nz.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Norway Mirror

    # /etc/apt/sources.list :
    deb http://ftp.no.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.no.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Poland Mirror

    # /etc/apt/sources.list :
    deb http://ftp.pl.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.pl.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Portugal Mirror

    # /etc/apt/sources.list :
    deb http://ftp.pt.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.pt.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Romania Mirror

    # /etc/apt/sources.list :
    deb http://ftp.ro.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.ro.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Russia Mirror

    # /etc/apt/sources.list :
    deb http://ftp.ru.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.ru.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Slovakia Mirror

    # /etc/apt/sources.list :
    deb http://ftp.sk.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.sk.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Slovenia Mirror

    # /etc/apt/sources.list :
    deb http://ftp.si.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.si.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Spain Mirror

    # /etc/apt/sources.list :
    deb http://ftp.es.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.es.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Sweden Mirror

    # /etc/apt/sources.list :
    deb http://ftp.se.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.se.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Switzerland Mirror

    # /etc/apt/sources.list :
    deb http://ftp.ch.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.ch.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Taiwan Mirror

    # /etc/apt/sources.list :
    deb http://ftp.tw.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.tw.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Thailand Mirror

    # /etc/apt/sources.list :
    deb http://ftp.th.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.th.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Turkey Mirror

    # /etc/apt/sources.list :
    deb http://ftp.tr.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.tr.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    Ukraine Mirror

    # /etc/apt/sources.list :
    deb http://ftp.ua.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.ua.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

    United States Mirror

    # /etc/apt/sources.list :
    deb http://ftp.us.debian.org/debian/ wheezy main contrib non-free
    deb-src http://ftp.us.debian.org/debian/ wheezy main contrib non-free

    Architecture:
    alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc s390 sparc

WeChat