原创 node media server

github上這個項目沒有告知需要npm版本2.1.2 node>8,所以寫下這個避免踩坑系統版本:centos 6系列 yum install epel-release npm wget -ynpm config set strict-

原创 bind9.8搭建dns服務器

系統:Centos6.7 64位內核:2.6.32-573.el6.x86_64軟件:    bind-9.8.2-0.47.rc1.el6_8.2.x86_64    bind-utils-9.8.2-0.47.rc1.el6_8.2.x

原创 docker網絡模型

參考:https://blog.csdn.net/xbw_linux123/article/details/81873490(超詳細,推薦直接看這篇)https://blog.csdn.net/sld880311/article/detai

原创 docker簡介

參考: https://www.cnblogs.com/guarderming/p/9455838.html(docker基礎:隔離機制) https://blog.csdn.net/i042416/article/details/8516

原创 k8s簡介

參考:https://www.cnblogs.com/menkeyi/p/7134460.html(k8s基礎概念)https://my.oschina.net/jamesview/blog/2994112(容器和k8s的區別)https:

原创 python的模塊

參考: https://www.cnblogs.com/bobo0609/p/6938012.html https://docs.python.org/2/tutorial/modules.html1.簡介: 在Python中,一個.py或

原创 第一章

練習1-6:    驗證表達式getchar()!=EOF的值是0還是1#include <stdio.h> main() { int c; while(1) printf("%d",c=getchar()!=EOF); }練習1-

原创 puppet 5.3簡介

參考:https://puppet.com/docs/puppet/5.3/index.html (語法參考官網)https://www.gitbook.com/download/pdf/book/kisspuppet/puppet(實例推

原创 http協議和web處理請求相關

參考:    http://www.ietf.org/rfc/rfc2616.txt (http協議)    https://en.wikipedia.org/wiki/Endianness(大端法和小端法)    http://www.c

原创 kvm tboot和libvirt的安裝

參考:http://www.ibm.com/developerworks/cn/aix/systemmaga/8/New_Way_Secure_Cloud/index.html(tboot) https://en.wikipedia.org

原创 python的數據類型簡介

ipython:原生python不具有命令行補全等功能,這個工具提供了類似shell的功能,方便學習使用安裝:wget https://repo.continuum.io/archive/Anaconda2-5.1.0-Linux-x86

原创 python的閉包、裝飾器和lambda等(筆記)

參考: http://blog.csdn.net/marty_fu/article/details/7679297(閉包,推薦看這個) https://foofish.net/python-decorator.html(裝飾器,推薦) ht

原创 httpd簡介

參考:    http://httpd.apache.org/docs/    http://www.cnblogs.com/huangye-dream/p/3550328.html(nginx和apache優缺點對比)    http:/

原创 httpd 2.4的rpm包製作

參考:        http://rpm-guide.readthedocs.io/en/latest/rpm-guide.html  http://laoguang.blog.51cto.com/6013350/1103628  htt

原创 python 的函數、值傳遞、和作用域(例子)

1.python的函數格式: def FuncName([arg1,arg2,..]): func_suite def: def是函數的關鍵字 FuncNam