(2)表示层表示层提供各种用于应用层数据的编码和转换功能,确保一个系统的应用层发送的数据能被另一个系统的应用层识别。如果必要,该层可提供一种标准表示形式,用于将计算机内部的多种数据格式转换成通信中采用的标准表示形式。数据压缩和加密也是表示层可提供的转换功能之一。 在项目开发中,为了方便数据传输,可以 ...
分类:
其他好文 时间:
2021-05-24 06:28:33
阅读次数:
0
前言 部署CentOS7的时候分配的动态扩充虚拟磁盘,共1T大小,在安装Centos时默认分区,系统仅给/分配50G,而大量空间都挂载到/home下,最近CentOS7使用中发现空间已不足够,所以就想如何将/home下的空间重新分配扩容到/下。 配置过程 查看分区大小 df -h 或者lsblk [ ...
分类:
其他好文 时间:
2021-05-24 06:24:49
阅读次数:
0
C语言中申请和释放空间(内置类型) malloc只负责申请空间, 不进行空间初始化 calloc负责申请空间, 并进行零时的初始化, 全部初始化为0 realloc调整生成的空间 void test(){ int* p1 = (int*)malloc(sizeof(int)); free(p1); ...
分类:
编程语言 时间:
2021-05-24 05:53:58
阅读次数:
0
If you are new to YAML, here is a useful link to a blog on YAML. YAML tutorial Here is a free tool that was mentioned in the video that can convert YA ...
分类:
其他好文 时间:
2021-05-04 16:11:49
阅读次数:
0
Trusted Advisor The trusted advisor is an AWS service that evaluates your environment and can provide recommendations for improvement Security improve ...
分类:
其他好文 时间:
2021-05-04 16:11:23
阅读次数:
0
linux Error downloading packages free 0 * needed 71 k 原因:硬盘空间不足 查看磁盘大小 /]# df -hl 从/主目录开始搜索,查看占用磁盘大的 # du -sh * 最后发现jenkins目录下占用过高 cd /var/lib/Jenkins ...
分类:
系统相关 时间:
2021-04-30 12:41:59
阅读次数:
0
linux Error downloading packages free 0 * needed 71 k 原因:硬盘空间不足 查看磁盘大小 # df -hl 从/主目录开始搜索,查看占用磁盘大的 # du -sh * 最后发现jenkins目录下占用过高 # cd /var/lib/jenkins ...
分类:
系统相关 时间:
2021-04-28 12:21:51
阅读次数:
0
几个cpu more /proc/cpuinfo |grep "physical id"|uniq|wc -l 每个cpu是几核(假设cpu配置相同) more /proc/cpuinfo |grep "physical id"|grep "0"|wc -l 查看内存 free -g otps 地址 ...
分类:
其他好文 时间:
2021-04-28 11:49:32
阅读次数:
0
线程 创建线程 #include <pthread.h> int pthread_create(pthread_t *restrict thread,const pthread_attr_t *restrict attr,void *(*start_routine)(void*), void *re ...
分类:
其他好文 时间:
2021-04-26 13:53:31
阅读次数:
0
2020年kali最新国内更新源sources.list 打开sources.list文件 #/etc/apt/sources.list 更新一下内容 #中科大 deb http://mirrors.ustc.edu.cn/kali kali-rolling main non-free contri ...
分类:
其他好文 时间:
2021-04-24 13:53:22
阅读次数:
0