
Linux C
文章平均质量分 77
surpass1026
朴实
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
vbox虚拟机ubuntu与windows设置目录共享
vbox虚拟机ubuntu与windows设置目录共享 1. vbox中设备(Devices)" -> 分配数据空间(Shared Folders)菜单,添加一个共享文件夹,如E:\share 2. 进入ubuntu系统,root身份登录,mount 共享目录: su - root password mdkir /share mount -t vboxsf share /share原创 2012-12-09 00:25:34 · 613 阅读 · 0 评论 -
code style
http://www.freebsd.org/cgi/man.cgi?query=style&apropos=0&sektion=9&manpath=FreeBSD+6.2-RELEASE&format=html原创 2013-08-18 20:11:37 · 515 阅读 · 0 评论 -
ubuntu ip internet setting after installation
root@fred-Vostro-2420:/etc/network# vi /etc/network/interfaces root@fred-Vostro-2420:/etc/network# more /etc/network/interfaces #auto lo #iface lo inet loopback auto eth0 iface eth0 inet dhcp原创 2014-08-23 16:22:50 · 655 阅读 · 0 评论 -
makefile sample in Eclipse
Makefile A makefile is a text file that is referenced by the make command that describes the building of targets, and contains information such as source-level dependencies and build-order dependen原创 2014-10-08 16:57:22 · 557 阅读 · 0 评论 -
c->asm汇编
1. fred@fred-Vostro-2420:~/myspace/sets/test$ more test_asm.c #include #include int swap(int *a, int *b) { int middle = *a; *b = *a; *a = middle; return 0; } int main(i原创 2014-10-08 16:44:29 · 807 阅读 · 0 评论