Calmisi Lee

Never like what you think.


  • Home

  • Archives

  • Tags

  • Categories

  • About

  • Search

re-init hexo-blog project from github

Posted on 2018-08-08 | Edited on 2018-09-16 | In Hexo&NEXT | Views:
Symbols count in article: 572 | Reading time ≈ 1 mins.

当换了新电脑后,如何将以前基于Hexo搭建的blog重新搭建呢。

之前的Hexo放在github上,并使用github.io展示。
其中项目名字为calmisi.github.io,包含两个branch: hexo和master
hexo为默认的branch,其保存hexo项目的文件,
master为展示branch,which holds the html codes that generates by hexo generate

  • 安装Hexo环境
  1. 首先安装Node.js,去官方下载安装,
  2. 安装Hexo, npm install -g hexo-cli
  3. 安装hexo-server, npm install hexo-server --save
  4. 安装hexo-deploy-git, npm install hexo-deploy-git --save
  • 克隆github上的blog项目

    1
    git clone git@github.com:calmisi/calmisi.github.io.git
  • 初始化子模块,NEXT主题以子模块的形式放在另一个仓库

    1
    2
    3
    cd calmisi.github.io
    git submodule init
    git submodule update
  • 初始化Hexo项目

    1
    npm install

Latex编译pdf后的字体嵌入问题

Posted on 2018-04-27 | Edited on 2018-09-16 | In LuanQiBaZao | Views:
Symbols count in article: 772 | Reading time ≈ 1 mins.

最近在提交论文的camera ready版本的时候需要在IEEE PDF-eXpress中检测。
结果检查结果提示Font Arial, Arial, Italic is not embedded (18x on page 3)问题。
就是一些字体没有embedded。

Read more »

centos安装与配置原版texlive

Posted on 2018-04-25 | Edited on 2018-09-16 | In Linux | Views:
Symbols count in article: 1.8k | Reading time ≈ 2 mins.

以前一直是在windows系统上编译论文,
现在想在服务器的centos系统上修改论文终稿,于是就探索了一下。

使用yum安装

尝试的第一种方法是yum安装

1
2
3
4
yum install texlive-latex
#安装texlive-latex
yum install texmaker
#安装tex文件编辑器

使用yum很方便,当使用texmaker编译之前论文的源文件的时候,提示好多包无法识别,
没有办法,还是觉得像windows那样,安装原版TEXLIVE

Read more »

NVIDIA dirver is incompatible with GNOME desktop in vncserver

Posted on 2017-11-21 | Edited on 2018-09-16 | In Linux | Views:
Symbols count in article: 708 | Reading time ≈ 1 mins.

之前一直是用的Centos自带的nouveau,
但是自从接了个2k屏幕后,经常待机锁屏后无法恢复,屏幕黑屏。
遂装了显卡NVIDIA的驱动。

在 Linux 操作系统下,NVIDIA 显卡的驱动需要手动安装,而且需要手动设置,其中有几步需要注意的地方,
详见 NVIDIA 显卡驱动安装教程 。

Read more »

DPDK的makefile学习

Posted on 2017-11-09 | Edited on 2019-02-01 | In DPDK | Views:
Symbols count in article: 5.6k | Reading time ≈ 5 mins.

本文介绍一下DPDK的makefile架构。

Read more »

centos7中安装shadowsocks客户端并通过firefox进行智能代理

Posted on 2017-10-31 | Edited on 2018-09-16 | Views:
Symbols count in article: 2k | Reading time ≈ 2 mins.

由于把台式机搬回寝室了,只能用实验室的服务器,
服务器是Centos7的系统,有很多东西没有windows习惯。
这里讲以下如何在Centos上翻墙。

Read more »

设置iptables的NAT转发,让内网的服务器通过NAT服务器访问外网

Posted on 2017-09-07 | Edited on 2018-09-16 | In Networking | Views:
Symbols count in article: 4.2k | Reading time ≈ 4 mins.

小组有了10台冷板式服务器(node1-node10),和一台浸没式液冷服务器(node0)。
但是网络中心只分配了一个公网ip给我们。
我们把公网IP配置给了node0的ens5, node0的ens6为内网ip: 192.168.0.100
node1-node10的IP为eth0: 192.168.0.101-192.168.0.110

为了使node1-10能够上外网,并且外网能够访问node1-10的服务,比如ssh,vnc等。
我们使用iptables进行NAT转发。

Read more »

numactl of centos

Posted on 2017-09-06 | Edited on 2018-09-16 | In Linux | Views:
Symbols count in article: 198 | Reading time ≈ 1 mins.

今天编译最新的DPDK,出现了没有<numa.h> <numaif.h>等错误,
最后上网查,和查看最新的DPDK文档,发现是需要libnuma-devel的库,可是用
yum install libnuma-devel发现没有这个库。

Read more »

Xeon CPU命名规则

Posted on 2017-08-21 | Edited on 2018-09-16 | In CPU | Views:
Symbols count in article: 1.4k | Reading time ≈ 1 mins.

我们以新发布的E3-1220来对这个图表进行一个详细解析。

首先,Intel E3,E5,E7代表了3个不同档次的至强CPU,至强“E系列”的这种命名方式有些类似桌面上的Core i3,i5,i7;
比较通俗易懂的解释就是可以对应我们的豪华汽车生产商宝马3系,5系和7系。分别对应好,更好和最好。

Read more »

dpdk_l3fwd-源码解析

Posted on 2017-05-10 | Edited on 2019-02-01 | In DPDK | Views:
Symbols count in article: 9.5k | Reading time ≈ 9 mins.

本文对DPDK17.02自带的example l3fwd进行走读解析。
该sample application基于DPDK进行3层包转发。该application展示了使用DPDK中hash库和LPM库来实现包转发。
初始化和runtime的过程很像l2fwd,主要区别就是l2fwd只是简单的将一个port的包全部转发到另一port,而l3fwd则是根据收到的包的information来决定转发到哪个port。

Read more »
1234…7
Calmisi Lee

Calmisi Lee

Pas de regrets

67 posts
19 categories
52 tags
GitHub E-Mail
0%
© 2015.6 – 2019 Calmisi Lee | Symbols count total: 319k | Reading time total ≈ 4:50
Powered by Hexo
|
Theme – NexT.Pisces v7.0.0