Home » All
  • 09
  • 10月

Git 简易指南

Git 是一款免费、开源的分布式版本控制系统, 用于敏捷高效地处理任何或小或大的项目。

Git 是一个开源的分布式版本控制系统, 可以有效、高速的处理从很小到非常大的项目版本管理。 Git 是 Linus Torvalds 为了帮助管理 Linux 内核开发而开发的一个开放源码的版本控制软件。

Read More...

  • 24
  • 10月

Read More...

  • 13
  • 06月

Mercurial (Hg) 简易指南

Mercurial 是一种轻量级分布式版本控制系统,采用 Python 语言实现, 易于学习和使用,扩展性强。其是基于 GNU General Public License (GPL) 授权的开源项目。

Read More...

  • 07
  • 06月

LVM 是 Logical Volume Manager (逻辑卷管理)的简写,它由 Heinz Mauelshagen 在 Linux 2.4 内核上实现。 LVM 将一个或多个硬盘的分区在逻辑上集合,相当于一个大硬盘 来使用,当硬盘的空间不够使用的时候,可以继续将其它的硬盘的分区加入其中,这样可 以实现磁盘空间的动态管理,相对于普通的磁盘分区有很大的灵活性。

Read More...

  • 28
  • 11月

In this guide I will show you how to install Python 2.7 and 3.3 on CentOS 6. The examples below are for Python 2.7.6 and Python 3.3.5, but the procedure is the same for any modern version of Python including the upcoming Python 3 …

Read More...

  • 28
  • 11月

本文介绍如何在Slackware 14系统上安装配置Bind(DNS)服务.

1   安装Bind9

安装比较简单, 找到安装包(bind)安装即可. 不做说明了.

2   配置DNS服务器配置文件

DNS主配置文件是 named.conf, 位于 /etc/named.conf. 修改之前最好先备份.

增加外部的DNS服务器:

options {
directory "/var/named";
/*
* ISP dns server ip address
  */
  forward first;
  forwarders {
  200.188.1 …

Read More...

  • 28
  • 11月

Flask-Cache简明文档

Flask-Cache是一个提供简便缓存支持的Flask扩展。支持memcached, gaememcached,filesystem,simple等缓存类型。

1   安装

安装扩展可通过下列命令之一:

$ easy_install Flask-Cache

或者如果你安装了pip:

$ pip install Flask-Cache

2   设置

缓存通过 Cache 实例进行管理:

from flask import Flask
from flask.ext.cache import Cache

app = Flask(__name__)
# Check Configuring Flask-Cache section for more details …

Read More...

  • 23
  • 10月

构建基于Busybox的Initramfs

Initramfs是一个压缩过的cpio文件,可用于引导Linux系统、引导LIVECD、也可以 用于系统安装等。

本文介绍如何构建基于Busybox的Initramfs。

Busybox 是一个功能强大的工具集,包含了常用的Linux命令,在嵌入式设备上用得 比较多,因为体积小巧。当然,Busybox也可以用来引导Linux系统和LIVECD,不过 不能引导LVM卷,因为mdev识别不了。

1   Busybox

Busybox最新稳定版是1.22.1。

1.1   下载

$ wget http …

Read More...

  • 16
  • 10月

WTXLIVE 2014

本文介绍如何制作Wtxlive 2014 LiveCD系统。

1   内核部分

1.1   下载内核

这里内核使用3.10长期支持版本,最新版本是3.10.58。

$ wget https://www.kernel.org/pub/linux/kernel …

Read More...

  • 06
  • 10月

VIM 配置、插件及使用技巧

Read More...