windows下的unix like commands

习惯了*nix下的命令行,相信回到windows的命令行窗口后还是有些不习惯,没关系,现在可以用unix like commands工具包了,呵呵。

我自己也从各个地方收罗了其他命令行工具,打成一个包了,欢迎下载。比较有用的命令有:ls, bzip2, cat, cp, cut, diff, fping, (e)grep, gzip, md5, ps等等。

友情提示:想要下载本站的附件,必须注册账号,然后登录才行,这么做是为了防止被某些流氓工具盯上。

用fping取代ping吧

最重要的就是方便,可以支持一下子ping多个ip。

linux版本的自己找个安装包或者源码编译一下,windows下也有哦,看这里。 enjoy it :)

my.cnf自动生成器[试用版]

my.cnf 自动生成器,当前处于试用版本阶段,欢迎大家提出宝贵建议,谢谢。
本工具产生的配置文件仅作参考用途,对此带来的后果本站不符任何责任,请注意使用。

  • 服务器简短主机名:
  • 服务器最大内存: Gb
  • 服务器处理器类型:
    i686
    x86_64
  • 是否专用MySQL DB 服务器:

如何给grub加密码

目的是为了防止他人修改grub,用单用户模式启动。

grub加密码只需要修改grub启动文件,增加一行 password 关键字,可以采用明文存储或者 MD5 加密后存储。下面我们介绍一下用 MD5 加密的方式。

1、先用 /sbin/grub-md5-crypt 产生一个 MD5 密码串

/sbin/grub-md5-crypt
Password: 
Retype password: 
$1$oWpTe$/MWUUYbBlF.2RUZK8nbWU0

原始密码是 "abc"。

现场看女排vs日本了

现场气氛就是好吖,中国观众真是热情,日本人特别被安排在我们后方不远的地方,不过加油声音远比我们小多了。最后女排不负众望,3:0完美拿下。开局差点大比分落后,还好追上来了,没让我的手掌白白拍红了,欧耶。

Percona RPMS for RedHat 5 / CentOS 5 x86_64

原文出自: http://www.mysqlperformanceblog.com/2008/07/31/percona-rpms-for-redhat-5-centos-5-x86_64/

经过测试,和官方的发行版相当,性能略有下降。但是新增了microsecond slow query log和innodb index statistic对很多人来说都很有帮助,还是值得的。有兴趣的朋友可以试试看。

让linux内核支持xfs文件系统

XFS 简介

XFS 最初是由 Silicon Graphics,Inc. 于 90 年代初开发的。那时,SGI 发现他们的现有文件系统(existing
filesystem,EFS)正在迅速变得不适应当时激烈的计算竞争。为解决这个问题,SGI 决定设计一种全新的高性能 64
位文件系统,而不是试图调整 EFS在先天设计上的某些缺陷。因此,XFS 诞生了,并于 1994 年随 IRIX 5.3
的发布而应用于计算。它至今仍作为 SGI 基于 IRIX 的产品(从工作站到超级计算机)的底层文件系统来使用。现在,XFS 也可以用于
Linux。XFS 的 Linux 版的到来是激动人心的,首先因为它为 Linux
社区提供了一种健壮的、优秀的以及功能丰富的文件系统,并且这种文件系统所具有的可伸缩性能够满足最苛刻的存储需求。

上面介绍转自:http://www.ibm.com/developerworks/cn/linux/filesystem/l-fs9/index.html,更多关于其他文件系统的介绍请看ibm的系列文章:文件系统系列

[InnoDB系列] - InnoDB VS PBXT实测

1、前言

PBXTPrimeBase 公司推出的MySQL插件引擎,其功能和 InnoDB 类似,主要特性如下:

  • MVCC Support:
    MVCC stands for Multi-version Concurrency Control. MVCC allows reading the database without locking.
  • Fully ACID complient:
    This means that transactionally safe, and able to handle multiple concurrent transactions.
  • Row-level locking:
    When updating, PBXT uses row-level locking. Row-level locking is also used during SELECT FOR UPDATE.
  • Fast Rollback and Recovery:
    PBXT
    uses a specialized method to identify garbage which makes "undo"
    unncessary. This make both rollback of transactions and recovery after
    restart very fast.
  • Deadlock Detection:
    PBXT identifies all kinds of deadlocks immediately.
  • Write-once:
    PBXT
    uses a log-based storage which makes it possible to write transactional
    data directly to the database, without first being writen to the
    transaction log.
  • Referential Integrity:
    PBXT supports foreign key definitions, including cascaded updates and deletes.
  • BLOB streaming:
    In combination with the BLOB Streaming engine PBXT can stream binary and media directly in and out of the database.

About Drizzle

原文来自  http://openquery.com.au/products/about-drizzle

About Drizzle

Drizzle is described as a "Lightweight SQL Database for Cloud and Web".
The project is about building a database designed for the typical Web
usage patterns for a database. It is being designed for massive
concurrency on modern multi-cpu/core architecture. The code is
originally derived from MySQL.

聚合内容