[Ubuntu小技巧系列之四]系统启动优化之bootchart

ubuntu已经9.10了,我懒得升了,还是9.04,感觉用得还是很顺手的。

1、预备工具 bootchart

$ sudo apt-get install bootchart

2、使用bootchart

安装完后重启系统,即会在/var/log/bootchart目录下生成系统启动过程的时序图我本本的启动时序图见本文最后。

3、禁用bootchart

注意:默认情况下,每次系统启动时bootchartd都会执行,并生成这样一个启动时序图。

禁止自动执行bootchartd的方法很简单,如下:

$ cd /etc/init.d

$ sudo update-rc.d -f stop-bootchart remove

Removing any system startup links for /etc/init.d/stop-bootchart …

/etc/rc2.d/S99stop-bootchart

/etc/rc3.d/S99stop-bootchart

/etc/rc4.d/S99stop-bootchart

/etc/rc5.d/S99stop-bootchart

4、启用bootchart

$ cd /etc/init.d

$ sudo update-rc.d stop-bootchart start 99 2 3 4 5 .

Adding system startup for /etc/init.d/stop-bootchart …

/etc/rc2.d/S99stop-bootchart -> ../init.d/stop-bootchart

/etc/rc3.d/S99stop-bootchart -> ../init.d/stop-bootchart

/etc/rc4.d/S99stop-bootchart -> ../init.d/stop-bootchart

/etc/rc5.d/S99stop-bootchart -> ../init.d/stop-bootchart
[......]

Read more

,

1 Comment

[推荐]基于Windbg的一个漏洞可利用性分析插件

微软在最近的CanSec West 发布了一个开源的WinDBG 插件 !exploitable Crash Analyzer (MSEC.dll),该插件主要用于分析程序崩溃和引起崩溃的程序bug是否可以被漏洞利用之间存在关联,同时,还可以便于微软确认漏洞的唯一性。

MSEC 开源项目的主页: http://msecdbg.codeplex.com/ 上有该插件的下载。 解压之后,把  MSEC.dll 放到 WinDBG 安装目录的的 winext 子目录下。

这个工具的价值和用处我就不加评论了,相关链接我汇聚了一下:

  1. http://www.securityfocus.[......]

Read more

, , ,

No Comments

当Nmap遇到ipod touch?

有图有真相!

ipod-scan-screenshot

继续Hacking into ipod!

,

No Comments

[推荐]一个在线备份和文件同步的网站

 强烈推荐使用牛13的 Dropbox 进行文件同步,注册 Dropbox 并在不同电脑安装 Dropbox 同步程序后,设置一个同步文件夹,就可以让 Dropbox 后台运行了,在该文件夹的任何操作都会同步到其它登录统一帐号的电脑。

Dropbox支持Windows、Linux和Mac OS系统的客户端程序,可以随时随地的同步文件夹,而无需考虑所使用的操作系统。

官方有一个介绍Dropbox功能和使用的短片

修改/etc/apt/source.list,加入以下两行更新源地址:

deb http://linux.getdropbox.com/ubuntu jaunty main
de[......]

Read more

, ,

No Comments

晚餐秀

黄金鸡脆骨+西红柿牛柳

No Comments

milw0rm最后的打包…

最新milw0rm站点数据镜像下载: Security Tools

PoC has gone with wind…

, ,

No Comments

推荐Web界面原型设计工具——Mockups

 前几天在  看到了关于mockups的介绍,正好前段时间有关土鳖的在vim里用DrawIt等脚本十分费力的绘制界面原型的经历,现在用上了mockups才发现,原来自己刚从火星回来~~

废话不多,谈谈mockups的主要特点:

  • 跨平台,Balsamiq Mokups是用Flex和Air实现的,只要有Adobe Air的系统就能用;
  • 操作简单,所有控件都是通过拖拽方式,所见即所得,所想即所得;
  • UI控件丰富,分类齐全
  • 界面元素的修改很简单,选择界面元素,屏幕右上角就会出现相对应的属性编辑框;
  • 使用xml语言来记录和保存界面元素和布局,从而使其能够快速的导入到你所需的任何一个项目中,[......]

Read more

,

No Comments

[Ubuntu小技巧系列之三]跨平台压缩文件解压缩乱码问题的解决

rar格式的比较好办,rar 3.6以后版本对unicode的支持更加智能化。Linux下使用rar进行压缩/解压缩时,可以使用-scuc,来强制指定文件名用unicode编码进行压缩和解压缩。对于zip格式的需要注意,Windows下创建的zip压缩包默认是使用的本地编码。即如果是简体中文的Win系统,则会使用GBK来存储文件名。此时,在Linux下解压缩包含中文文件名的压缩包时,需要在命令行使用参数-O cp936。同理,在Windows下如果用WinRAR来解压缩zip文件倒是没有这个限制,WinRAR会自动检测文件名的编码方式。不建议在Linux下使用gz/tar格式的压缩文件来给Wi[......]

Read more

, , , , , ,

No Comments

[Ubuntu小技巧系列之二]programming in C from scratch

 工具链

  • build-essential              Informational list of build-essential packages

手册页

  • manpages-dev              Manual pages about using GNU/Linux for development
  • glibc-doc                      GNU C Library: Documentation
  • manpages-posix-dev    Manual pages about using a POSIX system for devel[......]

Read more

, , , ,

No Comments

[原创]百度专利搜索结果自动导入Zotero的脚本

用过Firefox+Zotero的都知道,推荐论文写作、信息整理归档必备!

详细信息全在这了:http://code.google.com/p/baiduzhuanli/

, , ,

No Comments