摘要:
硬链接有点类似于复制的概念。 ln 源文件 目的文件 ln不加-s,则默认是硬链接。例如,ln script script-hard,ls命令显示,script*显示硬链接有两个。我任意删除其中一个,ls命令显示剩下的文件硬链接为1;当创建script-hard时,linux会为其分配...
阅读全文
posted @ 2016-12-27 12:41
C语言答疑课堂
阅读(244)
推荐(0)
摘要:
vmware出了点问题,在控制面板里或者是360都没法删除干净。在网上搜了点资料,找到一些删除的方法,参考链接如下:http://zhidao.baidu.com/question/309029922.html更简单的方法,找到原先的安装程序,重新运行,里面会有一个repair选项,即可删除。
阅读全文
posted @ 2016-12-27 12:39
C语言答疑课堂
阅读(146)
推荐(0)
摘要:
vmware我还是比较偏向7.1.4版本,其他版本装在win7上似乎有点问题。windows平台下,使用vmware + opensuse的网络配置过程如下: 1. 装完vm后,会在本地连接新创建两个新连接vm1和vm8,vm8属性中设置为自动获取IP;2. 启动suse后,在network...
阅读全文
posted @ 2016-12-27 12:37
C语言答疑课堂
阅读(155)
推荐(0)
摘要:
不希望出现断层,在此将在新浪博客上写的一些文章链接到这里:http://blog.sina.com.cn/s/articlelist_1736782070_0_1.html
阅读全文
posted @ 2016-12-10 15:29
C语言答疑课堂
阅读(102)
推荐(0)
摘要:
Introduction:-------------This document describes the syntax of Android.mk build filewritten to describe your C and C++ source files to the AndroidN...
阅读全文
posted @ 2016-12-10 15:29
C语言答疑课堂
阅读(130)
推荐(0)
摘要:
Android NDK OverviewIntroduction:The Android NDK is a set of tools that allows Android application developersto embed native machine code compiled fr...
阅读全文
posted @ 2016-12-10 15:29
C语言答疑课堂
阅读(151)
推荐(0)
摘要:
转载http://www.eoeandroid.com/thread-97477-1-1.html小知识点:UDP协议和TCP协议的不同。UDP是把数据都打成数据包,数据包上自带通信的地址,但是数据包发出去之后UDP协议不能保证你能否收到。而TCP协议要求接收方收到数据后给个回应,当发送重要数据的时...
阅读全文
posted @ 2016-12-10 15:28
C语言答疑课堂
阅读(280)
推荐(0)
摘要:
转载http://www.eoeandroid.com/thread-61727-1-1.html一、Socket通讯机制1. TCP连接:面向连接的可靠传输协议,具有数据确认和数据重传机制,保证了发送数据一定能到达通信的对方。对数据完整性要求比较高的场合使用。手机能够使用联网功能是因为手机底层实现...
阅读全文
posted @ 2016-12-10 15:28
C语言答疑课堂
阅读(231)
推荐(0)
摘要:
This lesson describes how to write applications that have fine-grained control over their usage of network resources. If your application performs a l...
阅读全文
posted @ 2016-12-10 15:28
C语言答疑课堂
阅读(187)
推荐(0)
摘要:
This lesson shows you how to implement a simple application that connects to the network. It explains some of the best practices you should follow in ...
阅读全文
posted @ 2016-12-10 15:28
C语言答疑课堂
阅读(279)
推荐(0)