摘要:
阅读全文
摘要:
Linux描述符表和描述符高速缓存 (摘自http://hengch.blog.163.com/blog/static/107800672009028105929795/)推荐对DOS感兴趣的看一下他的博客 在80x86的CPU里,描述符的概念实在是太重要了。 在实模式下,大家都知道物理地址是由段地 阅读全文
摘要:
Operating Systems Figure2.1 #include<stdio.h>#include<stdlib.h>#include<sys/time.h>#include<assert.h>#include"common.h"int main(int argc,char*argv[]){ 阅读全文
摘要:
su命令不能切换root,提示su: Authentication failure,只要你sudo passwd root过一次之后,下次再su的时候只要输入密码就可以成功登录了。 转载以记录 https://blog.csdn.net/jxaucm/article/details/80194372 阅读全文
摘要:
今天在centOS 7下更改完静态ip后发现network服务重启不了,翻遍了网络,尝试了各种方法,终于解决了。 现把各种解决方法归纳整理,希望能让后面的同学少走点歪路。。。首先看问题:执行service network restart命令后出现下面的错误: 1 Restarting network 阅读全文
摘要:
看csapp时候,看一下char*[8],以为char*也是一字节,但是指针是地址,64位编译器下是8字节,所以sizeof(B)是64字节 后来又看strlen()。 1 #include"stdio.h" 2 #include"string.h" 3 int main(void){ 4 char 阅读全文
摘要:
import java.io.*; public class test13_6 { public static void main(String []args) throws Exception { FileOutputStream output=null; FileInputStream inpu 阅读全文