今天,在虚拟机上装了redhat6.4。原是想在win8下安装双系统,由于磁盘分区问题,最后决定在虚拟机上先安装,玩一玩再说。分了3个区,“/”根目录分区20G、“swap”内存交换空间500M、“/boot”目录分区100M。基本服务器。Linux的装机在linux系统中,每个设备都被当成一个文件来..
分类:
系统相关 时间:
2014-11-22 19:03:23
阅读次数:
291
介绍
/dev/shm/是一个使用就是tmpfs文件系统的设备,其实就是一个特殊的文件系统。redhat中默认大小为物理内存的一半,使用时不用mkfs格式化。
tmpfs是Linux/Unix系统上的一种基于内存的虚拟文件系统。tmpfs可以使用您的内存或swap分区来存储文件(即它的存储空间在virtual
memory 中, VM由real
memory...
分类:
系统相关 时间:
2014-11-22 16:07:49
阅读次数:
273
介绍/dev/shm/是一个使用就是tmpfs文件系统的设备,其实就是一个特殊的文件系统。redhat中默认大小为物理内存的一半,使用时不用mkfs格式化。tmpfs是Linux/Unix系统上的一种基于内存的虚拟文件系统。tmpfs可以使用您的内存或swap分区来存储文件(即它的存储空间在virtualmemory中..
分类:
系统相关 时间:
2014-11-22 10:40:51
阅读次数:
222
Swap Nodes in PairsGiven a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2-...
分类:
其他好文 时间:
2014-11-21 18:16:43
阅读次数:
271
今天diocp裙中[珠海]-芒果反应了一个关于SimpleMsgPack的问题 msgPack.AsFloat = 2.507182; 经过编码再解码后,会直接触发异常。 因为msgPack的标准,在打包的数据是大端法IEEE 754 下面是msgPack的标准说明 Float format fam...
分类:
其他好文 时间:
2014-11-21 14:12:45
阅读次数:
124
Given a linked list, swap every two adjacent nodes and return its head. For example,Given 1->2->3->4, you should return the list as 2->1->4->3.Your al...
分类:
其他好文 时间:
2014-11-21 06:55:40
阅读次数:
187
修改虚拟内存大小,关闭Windows8的休眠来增加C盘空间。适合大内存的机器或工作站
swap(int *p1,int *p2){ int temp; temp=*p1; *p1=*p2; *p2=temp;}main(){ int a,b; int *pointer_1,*pointer_2; scanf("%d%d",&a,&b); ...
分类:
其他好文 时间:
2014-11-20 18:25:29
阅读次数:
134
题:即输入的两个整数按大小顺序输出。今用函数处理,而且用指针类型的数据作函数参数。swap(int *p1,int *p2){ int temp; temp=*p1; *p1=*p2; *p2=temp;}main(){ int a,b; int *pointer...
分类:
其他好文 时间:
2014-11-20 13:24:26
阅读次数:
170
1.A yield curve can be built using deposit rates, swap rates, and future/forward rates2.A par-coupon rate is the yield to maturity of a coupon-paying ...
分类:
其他好文 时间:
2014-11-20 07:55:42
阅读次数:
232