摘要: 最近正在学习Nginx,对于我这样没有基础的来讲,真的是举步维艰。但是每每我都鼓励自己勇敢的去接受新知识,相信一分耕耘一分收获! 刚看到的一则新闻:From version 207 on, systemd will not apply the settings from /etc/sysctl.conf anymore: it will only apply those from /etc/sysctl.d/*.其实这对于我学习sysctl并无影响。因为/etc/下同时保留了sysctl.conf和sysctl.d。 /proc/sys目录下存放着大多数内核参数,并且可以在系统运行时进行更改. 阅读全文
posted @ 2013-11-27 22:16 七年之后 阅读(7495) 评论(0) 推荐(2) 编辑
摘要: 之前都在虚拟机下面捣鼓Linux,有种隔靴搔痒的感觉。为了更快地熟悉Linux系统,重新安装了Ubuntu,首先就是配置vim。 下面是我的vim配置,为了方便,我在代码后添加注释说明。 1.配置C/C++风格编程方式。 sudo vi /etc/vim/vimrc,在末尾添加如下代码:""""""""""""""""文本格式和排版""""""""" 阅读全文
posted @ 2013-11-27 17:54 七年之后 阅读(330) 评论(0) 推荐(0) 编辑
摘要: Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.If such arrangement is not possible, it must rearrange it as the lowest possible order (ie, sorted in ascending order).The replacement must be in-place, do not allocate extra memory.He 阅读全文
posted @ 2013-11-27 10:38 七年之后 阅读(306) 评论(0) 推荐(0) 编辑