2019第一季全球服务器市场报告,收入198亿美元,出货量260万台 https://www.sohu.com/a/318912573_100159565?spm=smpc.author.fd-d.77.1574127778732l07n8g2 浪潮一个季度出货20万台服务器 总价12亿刀 平均每台 ...
分类:
其他好文 时间:
2019-11-24 09:46:38
阅读次数:
70
1:images全局变量的结构体类型如下 typedef struct bootm_headers { /* * Legacy os image header, if it is a multi component image * then boot_get_ramdisk() and get_fd ...
分类:
其他好文 时间:
2019-11-23 23:45:58
阅读次数:
132
#include <stdio.h>#include <unistd.h>#include <stdbool.h>#include <fcntl.h>#include <sys/epoll.h> #include <main.h> struct event_ext{ int fd; bool epo ...
分类:
其他好文 时间:
2019-11-23 12:25:46
阅读次数:
69
1.管道,pipe()函数 实现最简单,实际为内核缓冲区的环形队列。 用于父子、兄弟等有血缘关系的进程间通信。 单向流动性,只能从管道读端读取,写端写入。 int fds[2]; pipe(fds);//传出参数,fd[0]为读端描述符,类似于stdin;fd[1]为写端描述符,类似于stdout ... ...
分类:
系统相关 时间:
2019-11-19 01:15:36
阅读次数:
115
编者注:Java nio 空轮询bug也就是Java nio在Linux系统下的epoll空轮询问题。 epoll机制是Linux下一种高效的IO复用方式,相较于select和poll机制来说。其高效的原因是将基于事件的fd放到内核中来完成,在内核中基于红黑树+链表数据结构来实现,链表存放有事件发生 ...
分类:
编程语言 时间:
2019-11-16 19:25:41
阅读次数:
105
比较常用的是 git clone git pull git add git commit git push git stash git stash pop git reflog 不常用但非常有用的命令及说明 git clean -fd ///删除无关文件 git branch ///查看分支 git ...
分类:
其他好文 时间:
2019-11-14 09:58:25
阅读次数:
65
题外:本文只是记录自己所学,参考博客:https://ctf-wiki.github.io/ctf-wiki/pwn/linux/glibc-heap/fastbin_attack-zh/ fastbin attack大体思路是修改chunk的fd指针或通过free伪造的chunk,将其添加到fas ...
分类:
其他好文 时间:
2019-11-10 11:38:07
阅读次数:
88
1 #KochDrawV1.py 2 3 importturtle 4 5 defkoch(size, n): 6 7 ifn == 0: 8 9 turtle.fd(size) 10 11 else: 12 13 forangle in [0, 60, -120, 60]: 14 15 turtl ...
分类:
其他好文 时间:
2019-11-08 18:57:24
阅读次数:
73
用 TFDSQLiteBackup 控件, 两三行代码即可完成 Sqlite 数据库的备份. procedure TForm1.Button1Click(Sender: TObject); begin {先初始化目标} FDConnection1.DriverName := 'SQLite'; FD ...
分类:
数据库 时间:
2019-11-06 13:02:42
阅读次数:
93
具体步骤: 假如你修改了admin的密码,然后忘记了,可以尝试以下的步骤,还有切记 不要修改 ExecStart=/usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock,改完以后直接报错账号密码不正确,应该导致了d ...
分类:
其他好文 时间:
2019-11-05 00:37:32
阅读次数:
159