Linux学习
tt33415366
这个作者很懒,什么都没留下…
展开
-
sendmail配置学习
错误:启动失败纠错过程:查看系统日志(vim /var/log/maillog)NOQUEUE: SYSERR(root): /etc/mail/sendmail.cf: line 39: unknown configuration line "\n"vim /etc/mail/sendmail.cf按esc :?\n(说明,sendmail.cf文件以回车结尾原创 2011-12-22 15:13:42 · 945 阅读 · 0 评论 -
Fedora16下Grub2的配置
配置文件位于/etc/default/grub我的配置文件GRUB_TIMEOUT=5GRUB_DISTRIBUTOR="Fedora"GRUB_DEFAULT=savedGRUB_SAVEDEFAULT=trueGRUB_CMDLINE_LINUX="rd.md=0 rd.dm=0 rd.lvm.lv=vg_4angel/lv_swap KEYTABLE=us quiet S原创 2011-12-31 09:34:35 · 2288 阅读 · 1 评论 -
关于CreateWindow()设置了WS_MAXIMIZE|WS_VISIBLE样式后,窗口最大化失败(解决)
HWND WINAPI CreateWindow( __in_opt LPCTSTR lpClassName, __in_opt LPCTSTR lpWindowName, __in DWORD dwStyle, __in int x, __in int y, __in int nWidth, __in int nH原创 2012-02-25 15:28:21 · 5395 阅读 · 0 评论 -
思科的模拟器PacketTracer533_setup+汉化包
如题,2月8号更新的,5.3.3版本。带文档的。CSDN上传不了,上传到了115网盘了http://115.com/file/c246thl4#PacketTracer533-setup.exe汉化包http://115.com/file/dpluhjyn#Packet.Tracer5.3.0.0088-汉化包.rar原创 2012-03-11 21:14:34 · 4046 阅读 · 3 评论 -
make&&gcc/g++ 生成 map file
map file 对于嵌入式开发是非常有用的,尤其是当你开发的module引起了 kernel panic 的时候。仅写作Mark用make:$vim makefile(add "LDFLAGS=-Map=your_file.map" to your *makefile* or just add it to your make command every time, it ups原创 2013-08-05 20:27:25 · 3732 阅读 · 0 评论 -
kernel:list LIST_HEAD/LIST_HEAD_INIT/INIT_LIST_HEAD
#define LIST_HEAD_INIT(name) { &(name), &(name) }#define LIST_HEAD(name) \struct list_head name = LIST_HEAD_INIT(name)static inline void INIT_LIST_HEAD(struct list_head *list){list->原创 2013-09-23 09:30:58 · 1371 阅读 · 0 评论 -
Move semantics(C++11)
/* * Compile with: * g++ move_test.c -o move_test -std=c++11 -g -fno-elide-constructors * -fno-elide-constructors disabled the return value optimize. */#include #include class原创 2014-08-04 17:46:37 · 730 阅读 · 0 评论