博客统计信息

用户名:shanker
文章数:36
评论数:6
访问量:26254
无忧币:259
博客积分:384
博客等级:3
注册日期:2010-01-20

转载自网络
运维中关键技术点解剖:1 大量高并发网站的设计方案 ;2 高可靠、高可伸缩性网络架构设计;3 网站安全问题,如何避免被黑?4 南北互联问题,动态CDN解决方案;5 海量数据存储架构
一、什么是大型网站..
 没有多大技术含量,就是将之前的这篇文章http://shanker.blog.51cto.com/1189689/815403写成shell了。
#!/bin/bash #CentOS6.2+PXE+Apache+DHCP+tftp+kickstart #Author:shanker #Date:201..
类别:Shell|阅读(29)|回复(0)|(0)阅读全文>>
 转载老师的文章:http://blog.chinaunix.net/uid-1749708-id-3189315.html

在RHEL6下的Yum软件仓库,可以有效的解决安装RPM分发的软件包在安装时候的依赖问题。下面是Yum数据仓库的配置方法:
1、拷贝..
2012-04-26 12:56:15
转自:http://www.tsnc.edu.cn/tsnc_wgrj/doc/sed.htm
 1. Sed简介
sed是一种在线编辑器,它一次处理一行内容。处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”(pattern space)..
类别:Shell|阅读(435)|回复(0)|(0)阅读全文>>
 转自南非蚂蚁老师的文章, http://www.itlearner.com/article/4553
 
一、影响Linux服务器性能的因素
1. 操作系统级
 

CPU
内存
磁盘I/O带宽
网络I/O带宽

&nb..
2012-04-25 10:44:47
 翻译自: https://www.shell-tips.com/2007/04/15/bash-help-sheet/
 
Forgot a command or a shortcut in your favorite shell ? Here is a small help sheet with most used commands !
I read i..
类别:Shell|阅读(84)|回复(0)|(0)阅读全文>>
 
#!/bin/bash #intruder_detect #author:shanker #date:2012/4/23 #detect the invlaid users AUTHLOG=/var/log/secure if [ -n "$1&q..
类别:Shell|阅读(455)|回复(0)|(0)阅读全文>>
2012-04-18 09:52:45
 
grep 'root' /etc/passwd >/dev/null 2>&1  if [ $? -eq 0 ]   then  ..... 
你还在用这样的判断方式吗?..
类别:Shell|阅读(238)|回复(0)|(0)阅读全文>>
 <<   1   2   3   4   5   >>   页数 ( 1/5 )