微录 2014-11-12

先来一首自己喜欢的音乐:



博客 2014-05-04

1.设置静态IP
root@mfleat-K43SJ:~# cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.100.6
gateway 192.168.100.1
netmask 255.255.255.0

2.网关设置(最后发现网络不通是没有网关,不知道怎么没的。。)
route add default gw 192.168.100.1
route -n / netstat -r

3.设置DNS
root@mfleat-K43SJ:~# cat /etc/resolvconf/resolv.conf.d/base
nameserver 8.8.8.8

博客 2013-12-08

1.download opensuse  iso

2.use windows tool of author of opensuse to make a start usb

or under linux

 umount /dev/sdb
dd if=opensuse-12.3.iso of=/dev/sdb bs=4M

 3.partition customize

 4.install

network setup
vi /etc/sysconfig/network/ifcfg-eth0
  BOOTPROTO='static'
  IPADDR=192.168.0.7/24
  BROADCAST='192.168.0.255'
  STARTMODE='onboot'
 
vi /etc/sysconfig/network/routes
default 192.168.0.1
vi /etc/resolv.conf
nameserver 192.168.0.1
nameserver 8.8.8.8
/etc/init.d/network restart
ping www.baidu.com

 5.setup language ,add repositories from the list of communication

 *opensuse autologin root

 vim /etc/sysconfig/displaymanager

 DISPLAYMANAGER_AUTOLOGIN="root"

 *setup login as root

 vim /usr/share/kde4/config/kdm/kdmrc

 AllowRootLogin=true

or

 yast--安全-用户组--专家选项--登陆设置

 *or not under root

博客 2013-12-04

今天收到softlayer 平台的服务器漏洞提醒,说有Ebury SSH Rootkit
(这个是2013/2月的病毒)

https://www.cert-bund.de/ebury-faq

http://www.welivesecurity.com/2014/02/21/an-in-depth-analysis-of-linuxebury/

依据:

a. ipcs -m       如果 有 root 666 可能被感染

博客 2013-11-04

        要把公司的apache 换为 tengine(淘宝优化后的nginx),用几天的时间,写了一个详细的文档,共享给大家,

转载请注明出处: blog.mreald.com    or     www.mreald.com


1.节点初始化

yum -y install  nfs-utils portmap rpcbind vim crontab chkconfig \
initscripts gcc-c++ libstdc++-devel zlib  zlib-devel glib glib-devel \
libxml2 libxml2-devel make bzip2-devel  pcre pcre-devel libjpeg libjpeg-devel \
libpng libpng-devel freetype  freetype-devel gmp gmp-devel unixODBC \
unixODBC-devel gcc g++ make autoconf automake libxml2 libxml2-devel vsftpd \
pcre  pcre-devel iptraf   aspell aspell-devel screen hwinfo hdparm varnishd memcached


2.安装需要的包

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 pcre-devel libxslt \
libxslt-devel  libtool-ltdl libtool-ltdl-devel


博客 2013-05-25

1.早就听说《大国崛起》值得一看,上周,用一周 晚上的时间看完了12集的纪录片,
本来这些观后感是写在日志里面的,现在把其拿出来,与大家一起分享,当然也欢迎,你们发表自己的看法

2.概述:
本片讲述了500年来9个世界大国的相继崛起,从历史的角度精细的分析了崛起的原因、可能、影响…。
看完本片之后,

博客 2011-12-04
1 * * * * flock -xn /var/run/rsync.lock -c ‘rsync -avlR /data/files/ 172.16.xxx.xxx:/data/files/’


flock (util-linux 2.13-pre7)
Usage: flock [-sxun][-w #] fd#
flock [-sxon][-w #] file [-c] command…
-s –shared Get a shared lock
-x –exclusive Get an exclusive lock
-u –unlock Remove a lock
-n –nonblock Fail rather than wait
-w –timeout Wait for a limited amount of time
-o –close Close file descriptor before running command
-c –command Run a single command string through the shell
-h –help Display this text
-V –version Display version
比如在rsync定时同步某文件夹的时候,可能担心上一次任务还没执行完,下一次就开始了。于是可以采用如下方式:

1 * * * * flock -xn /var/run/rsync.lock -c ‘rsync -avlR /data/files 172.16.xxx.xxx:/data’
对照usage,x创建一个独享锁,n是如果已存在就退出,然后一个lock文件,c是shell命令,具体内容就是rsync。

博客 2011-11-27

经常查询,在这里做个记录:

memory_limit = 246M
post_max_size = 80M
upload_max_filesize = 200M



还不行,再做如下更改:


file_uploads = on (linux下 /etc/php.ini)

max_execution_time = 600

记着重启apache

博客 2011-11-11

    第一次写内容,挺开心的,希望以后要走下去!


    话说CMS系统千万个,为什么还要开发 “一书”?  因为有本地化的特殊需要,WordPress太庞大,反映太迟钝,本地化做的不理想,用一个月的业余时间开发了这个雏形,以后还会做后期开发。如果有朋友需要,之后会开源出来。


主要有以下几块:

URL重写

URL路由

表单

文章分类

文章关键字

分页

主题

数据库的操作

表的设计

文章摘要的截取

搜索功能

评论功能

sitemap.xml

i-- 9/10 i++