偷得浮生半桶水(半日闲), 好记性不如抄下来(烂笔头). 信息爆炸的时代, 学习是一项持续的工作.
全部博文(1747)
2024年(23)
2023年(26)
2022年(112)
2021年(217)
2020年(157)
2019年(192)
2018年(81)
2017年(78)
2016年(70)
2015年(52)
2014年(40)
2013年(51)
2012年(85)
2011年(45)
2010年(231)
2009年(287)
发布时间:2016-05-31 11:22:24
一台双网卡电脑拥有两个网关是不可能的,因为默认网关(default gateway)只能是一个。给Ubuntu Linux服务器安装两块网卡,分别设置不同的ip和网关(内网和外网),外网的通过外网网卡来访问,内网的通过内网网卡来访问,似乎实现起来很简单,但有些问题,因为默认网关(default gateway)只能是一个!解决的办.........【阅读全文】
发布时间:2016-05-30 11:32:01
#include "stdafx.h"#include <Windows.h>#include <iostream>using namespace std; DWORD WINAPI ThreadFuncFirst(LPVOID param){ int iCount = 50; while(iCount--){ cout<<"\nThreadFuncFirst:"<<iCount; } return 0;}DWORD WINAPI ThreadFuncSecond(LPVOID p.........【阅读全文】
发布时间:2016-05-28 09:36:58
https://ruff.io/zh-cn/docs/download.html......【阅读全文】
发布时间:2016-05-19 17:25:49
http://blog.csdn.net/lophyxp/article/details/14228735首先说一下alsa的配置文件。alsa的配置文件是alsa.conf位于/usr/share/alsa目录下,通常还有/usr/share/alsa/card和/usr/share/alsa/pcm两个子目录用来设置card相关的参数,别名以及一些PCM默认设置。以上配置文件,我等凡夫从不用修改,修改它们是大神的工作。.........【阅读全文】