发布时间:2015-02-06 14:30:13
Linux 配置双机SSH信任http://www.cnblogs.com/mchina/archive/2013/03/15/2956017.html一、实现原理使用一种被称为"公私钥"认证的方式来进行ssh登录。"公私钥"认证方式简单的解释是:首先在客户端上创建一对公私钥(公钥文件:~/.ssh/id_rsa.pub;私钥文件:~/.ssh/id_rsa),然后把.........【阅读全文】
发布时间:2015-02-05 16:48:14
/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */#include <alsa/asoundlib.h>#include <getopt.h>#include <math.h>#include <pthread.h>#include <stdio.h>#.........【阅读全文】
发布时间:2015-01-16 12:35:23
Todd.log - a place to keep my thoughts on programmingI/O重定向的原理和实现在Unix系统中,每个进程都有STDIN、STDOUT和STDERR这3种标准I/O,它们是程序最通用的输入输出方式。几乎所有语言都有相应的标准I/O函数,比如,C语言可以通过scanf从终端输入字符,通过printf向终端输出字符。熟悉Shell的朋.........【阅读全文】