Netflix Blog - Tips for High Availability Spinnaker介绍

Netflix Blog - Tips for High Availability Spinnaker介绍 - 这篇文章Tips for High Availability 是出自 Netflix

2019-05-11 · 1 分钟

shell中的 2>&1

strace跟踪应用程序时,有标准输出和错误输出,需要将程序执行的输出标准输出和错误输出重定向到一个日志文件中。

2019-05-11 · 1 分钟

LeetCode - Design Linked List

Photo by Tim Swaan on Unsplash

2019-04-30 · 2 分钟

编程规范问题导致SIGCLD 屏蔽失效

进程出现状态进程,(zombie process )。对于创建多进程的场景, 子进程状态改变产生此信号, 对SIGCLD信号处理不当,会导致僵尸进程。

2019-04-30 · 1 分钟

linux 使用chage 设置密码永不过期

vmware安装的虚拟机, 今天登录忽然提示“You must change your password now and login again!”, 密码过期了, 我登录设置了ssh免密登录, 输入原始密码,输入新密码后解决。修改成功登录后看了下,密码有效期60天。 通过chage 修改应用用户密码永不过期

2019-04-28 · 1 分钟

ramfs, rootfs and initramfs

查找initramfs资料的时候看到了这篇文章 ramfs-rootfs-initramfs.txt,

2019-04-28 · 2 分钟

LeetCode - Palindrome Linked List

Given a singly linked list, determine if it is a palindrome. Example 1: Example 2: Follow up: Could you do it in O(n) time and O(1) space? 找到中间节点后反转判断节点回文

2019-04-27 · 1 分钟

关于鸟哥是如何解开 initramfs 的:)

鸟哥解析 CentOS 7.x 的initramfs 档案内容 文章内容时, 主要疑问是为什么使用的是512bytes去算 “initramfs 档案的前置字元容量 ”的大小

2019-04-26 · 3 分钟

initramfs 解压方法

最近在学习 _鸟哥私房菜第19章_,文章在分析Boot Loader 过程中, 提到到了虚拟档案系统Initial RAM Disk或Initial RAM Filesys

2019-04-23 · 1 分钟

LeetCode - Find Pivot Index

Given an array of integers nums, write a method that returns the "pivot" index of this array. We define the pivot index as the index where the sum of the…

2019-04-22 · 1 分钟