Linuxjournal-The Linux Scheduler

这篇文章 The Linux Scheduler作者Moshe Bar发表在linuxjournal, 是一篇2000年的文章.从L

2019-09-04 · 12 分钟

Linux 与 Windows 文本文件格式转换

由于Windows与Linux对换行的定义不同,导致Windows应用不能正常按行显示Linux文本,Linux显示Windows文本时会带有^M

2019-09-01 · 1 分钟

awk中的'数组'

awk中的'数组'是一种关联数组,又称作maps、字典,他的索引不需要连续, 可以使用字符串、数字做为索引, 此外,不需要事先声明数组的大小 - 数组可以在运行时扩展/收缩。 - 赋值: - 删除: - 多维数组(使用字符串模拟) - 遍历: 数据:Iplogs.txt total.awk: _注意下END后的{需要和…

2019-08-31 · 3 分钟

FTP ASCII上传下载

近期在进行AIX到Linux迁移,发现从windows终端ftp时,客户端设置ASCII传输模式, 服务端并不能自动转换换行符号,脚本出现^M,需要手工删除。 Linux环境为RedHat7.3+vsftpd3.0.2,vsftpd.conf中ascii_download_enable/ascii_u

2019-08-31 · 4 分钟

LeetCode – Binary Tree Inorder Traversal

Given a binary tree, return the _inorder_ traversal of its nodes\\' values. Example: Input: Output: Follow up: Recursive solution is trivial, could you do it…

2019-08-31 · 2 分钟

linux kernel documentation-CFS Scheduler

这篇文章 CFS Scheduler是Linux Kernel文档

2019-08-29 · 8 分钟

LeetCode – Target Sum

You are given a list of non-negative integers, a1, a2, ..., an, and a target, S. Now you have symbols + and -. For each integer, you should choose one from + …

2019-08-20 · 2 分钟

linux-sides-Timers and time management-Introduction to the clocksource framework

这篇文章 Timers and time management in the Linux kernel. Part 2

2019-08-20 · 17 分钟

旧版本应用与win10兼容

大多数早期windows版本创建的应用可以在win10下正常运行,但也有部分程序无法正常运行, 可以尝试通过兼容性设置解决. 在使用一款windows客户端产品时,由于机器分辨率较高导致其中某一个可执行文件无法运行, 通过修改高DPI设置解决,下面是具体的解决方法: - 环境说明: - 操作环境: win10, 屏幕分…

2019-08-20 · 3 分钟

Linux进程创建

以fork函数为例,看下Linux进程创建具体工作流程:

2019-08-18 · 13 分钟