由于我的网站是海外服务器,经常被联通给k掉,在家里用的长城宽带总是登录不上或者打不开网站,干脆就修改dns,试了试结果很令人满意。软件无意中得到 的来源于dnspod网站,测试本地可建立一个.txt文件,放入自己的顶级域名,打开软件,然后读取域名,就可以检测到域名,解析的dns.
CentOS-6.5-x86_64-LiveCD.iso CentOS-6.5-x86_64-LiveDVD.iso CentOS-6.5-x86_64-bin-DVD1.iso (比较全的系统,有大部分软件) CentOS-6.5-x86_64-bin-DVD2.iso (对上DVD1的补充) 下载:http://yunpan.cn/cgnqyggJJvYaD 提取码 54b2 CentOS-6.5-i386-LiveDVD.iso CentOS-6.5-i386-LiveCD.iso CentOS-6.5-i386-bin-DVD2.iso(对上DVD1的补充) CentOS-6.5-i386-bin-DVD1.iso(比较全的系统,有大部分软件) 下载:http://yunpan.cn/cgnYNATiGayCM 提取码 d567
memcached 高速缓存工具(linux) wget https://sourceforge.net/projects/erik1314/files/memcache/libevent-1.4.14b-stable.tar.gz wget https://sourceforge.net/projects/erik1314/files/memcache/memcached-1.4.20.tar.gz wget https://sourceforge.net/projects/erik1314/files/memcache/memcache-2.2.1.tgz libevent-1.4.14b-stable.tar.gz memcached-1.4.20.tar.gz memcache-2.2.1.tgz
memcached配置好久没怎么搞懂,今天就试试还真弄成了 首先,下载文件 wget http://sourceforge.net/projects/erik1314/files/memcache/libevent-1.4.14b-stable.tar.gz wget http://sourceforge.net/projects/erik1314/files/memcache/memcached-1.4.20.tar.gz wget http://sourceforge.net/projects/erik1314/files/memcache/memcache-2.2.1.tgz 如果新手不太懂命令下载可以直接点击下面的下载到本地。然后再用ftp上传到服务器 libevent-1.4.14b-stable.tar.gz memcached-1.4.20.tar.gz memcache-2.2.1.tgz 因为考虑到文件的完整性建议最好在服务器上解压 解压文件 tar xzfv libevent-1.4.14b-stable.tar.gz 给权限 chmod -R 777 libevent-1.4.14b-stable 进入文件 cd libevent-1.4.14b-stable 一次编译安装 ./configure (这里也可以指定,目录根据自己实际情况来选择) make && make install 笔者默认安装到/usr/local/lib/目录
wordpres断断续续捣鼓了一段时间,总算有自己的网站了,今天算完全能用了,突然发现标签字体很模糊。
从百度得到的答案是:
WordPress 默认标签云的字体最小为8pt,最大为22pt,标签显示数量为45个,按标签名称升序排列。但是用火狐查到是修改style.css样式的,可是怎么找也找不到,怎么办……无奈的百度 修改 WordPress 标签云方法 打开 wp-includes/category-template.php 搜索 wp_tag_cloud 找到 ‘smallest’ => 8, ‘largest’ => 22, ‘unit’ => ‘pt’, ‘number’ => 45,‘format’ => ‘flat’, ‘separator’ => “\n”, ‘orderby’ => ‘name’, ‘order’ => ‘ASC’, 具体的参数说明: smallest – 定义标签的最小字号,默认为 8;largest – 定义标签的最大字号,默认为 22;unit – 设置字号类型,如 “pt” 或 “px” 等,默认为 “pt” 类型; number – 设置标签云数量,默认显示 45 个标签;orderby – 设置按 “name” 或 “count” 排序,默认为 “name” 方式;(注:orderby=count 表示按照标签使用次数排列)order – 设置按 “DESC” 或 “ASC” 升降序排列,默认为 “ASC” 升序。 根据自己需求修改 wp_tag_cloud 函数的具体参数即可实现标签云的自定义,然后把category-template.php文件上传到空间中替换原文件。
(一)安装yum1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16[root@delphi ~\]# cd /etc/yum.repos.d/
[root@delphi yum.repos.d\]# ls
CentOS-Base.repo CentOS-Debuginfo.repo CentOS-Media.repo CentOS-Vault.repo
[root@delphi yum.repos.d\]# vi CentOS-Media.repo
# CentOS-Media.repo
#
# This repo can be used with mounted DVD media, verify the mount point for
# CentOS-6. You can use this repo and yum to install items directly off the
# DVD ISO that we release.
#
# To use this repo, put in your DVD and use it with the other repos too:
# yum --enablerepo=c6-media \[command\]
#
# or for ONLY the media repo, do this:
#
# yum --disablerepo=\\* --enablerepo=c6-media \[command\]
tag:
缺失模块。
1、请确保node版本大于6.2
2、在博客根目录(注意不是yilia根目录)执行以下命令:
npm i hexo-generator-json-content --save
3、在根目录_config.yml里添加配置:
jsonContent: meta: false pages: false posts: title: true date: true path: true text: false raw: false content: false slug: false updated: false comments: false link: false permalink: false excerpt: false categories: false tags: true