You'blog

LNMP 源码安装

技术文章

LNMP 源码安装步骤

在双十一的时候我们部门的一个小朋友买了一台香港的阿里云(300多一年),非常兴奋,自己捣鼓了一个
vpn在上面,后来被问及到有没有安装Lnmp环境,于是踏上了安装Lnmp环境的路,不过他采用的是二进制
包的方式安装,遇到了好多找不到配置文件的情况问我,因此我就写下了这边博客,希望能帮助新入行的
同学。

Linux系统内核升级

1
2
3
4
5
6
7
8
9
10
yum -y install gcc gcc-c++ autoconf libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel zlib zlib-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel krb5 krb5-devel libidn libidn-devel openssl openssl-devel openldap openldap-devel nss_ldap openldap-clients openldap-servers vim-common dos2unix readline readline-devel cmake bison libtool flex pkg-config patch gd gd-devel locate libevent libevent-devel openldap.x86_64 openldap-devel.x86_64 openldap-clients.x86_64 openssh-ldap.x86_64 ncurses  ncurses-devel readline readline-devel lrzsz cmake

yum -y update
yum -y upgrade

echo "alias vi='vim'" >> ~/.bash_profile
source ~/.bash_profile

echo "ulimit -SHn 51200" >> /etc/profile
source /etc/profile
Read more

linux下删除所有.svn目录的shell命令

技术文章
linux下删除所有.svn目录的shell命令 1find . -type d -name ".svn" | xargs rm -rf 转自我的老博客,写于2011-8-23 10:33。
Read more

如何利用多核CPU来加速你的Linux命令 — awk, sed, bzip2, grep, wc等

技术文章

你是否曾经有过要计算一个非常大的数据(几百GB)的需求?或在里面搜索,或其它操作——一些无法并行的操作。数据专家们,我是在对你们说。你可能有一个4核或更多核的CPU,但我们合适的工具,例如 grep, bzip2, wc, awk, sed等等,都是单线程的,只能使用一个CPU内核。借用卡通人物Cartman的话,“如何我能使用这些内核”?要想让Linux命令使用所有的CPU内核,我们需要用到GNU Parallel命令,它让我们所有的CPU内核在单机内做神奇的map-reduce操作,当然,这还要借助很少用到的–pipes 参数(也叫做–spreadstdin)。这样,你的负载就会平均分配到各CPU上,真的。

BZIP2

bzip2是比gzip更好的压缩工具,但它很慢!别折腾了,我们有办法解决这问题。

Instead of this:

1
cat bigfile.bin | bzip2 --best > compressedfile.bz2
Read more

常用数据结构

技术文章

人们常说数据结构,面试的时候也常被问道数据结构相关的问题,到底什么是数据结构?

数据结构是计算机存储、组织数据的方式。数据结构是指相互之间存在一种或多种特定关系的数据元素的集合。通常情况下,精心选择的数据结构可以带来更高的运行或者存储效率。数据结构往往同高效的检索算法和索引技术有关。

Read more

Macbook 巧用delete键

折腾工具
Macbook air上只有一个删除键,但是有其他键的配合能实现好多有用的功能了。 按住(option)键再按(delete)可以删除光标前的一句话或一整个单词 按住(command)再按(delete),可以删除一整行文字 Macbook air上的向后删除(就像PC上键盘的dele ...
Read more

新的起点新的开始,加油!

开始
好久没有写博客了,之前的博客因为种种原因也没有更新现在不能访问了,突然有一天阿里云提示我说如果在不把域名解析到阿里云上面将撤销我的域名备案,我不得不说fuck you,不过因为他我又把我的博客捡了回来,好吧,语文很差,😁。
Read more

Hello World

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer ...
Read more
Prev Next