linux其他
文章平均质量分 85
paomadi
这个作者很懒,什么都没留下…
展开
-
cuteftp nfs cuteftp vmtool fcitx
sudo apt-get install vsftpd sudo chmod 666 /etc/vsftpd.confgedit /etc/vsftpd.conf 确保local_enable=YES write_enable=YESsudo /etc/init.d/vsftpd start cuteftp输入 :虚拟机ip 虚拟机用户名 虚拟机密码原创 2012-12-17 20:46:13 · 1057 阅读 · 0 评论 -
linux下c和c++互相调用
c调用cpp创建个目录 创建4个文件 c.c--c文件 cpp.cpp--c++文件 cpp.hh--c++声明文件 Makefilec.c#include "cpp.hh"int main(){ cpp_fun();}cpp.cpp#include "cpp.hh"#include #ifdef __cplusplusextern "C"原创 2012-12-17 16:15:47 · 1668 阅读 · 0 评论 -
early_param和__setup宏
一.宏的定义在/include/linux/Init.h中#define __setup(str, fn) \ __setup_param(str, fn, fn, 0) #define early_param(str, fn) \__setup_param(str, fn, fn, 1)两个宏都会调用__setup_param跟踪进__setup_p原创 2013-01-23 15:53:23 · 2662 阅读 · 0 评论 -
va_list,va_start,va_arg,va_end可变参数
<!--span {font-family:'Courier New'; font-size:10pt; color:#000000}.sc2 {color:#008000}.sc4 {color:#FF8000}.sc5 {font-weight:bold; color:#0000FF}.sc10 {font-weight:bold; co原创 2013-01-24 21:01:36 · 2534 阅读 · 0 评论 -
linux性能监视和调试工具 top 25
Top 25 Best Linux Performance Monitoring and Debugging ToolsI’ve compiled 25 performance monitoring and debugging tools that will be helpful when you are working on Linux environment. This list is n翻译 2012-12-17 20:31:21 · 2456 阅读 · 0 评论