摘要: brew install xar假设当前有一个 pkg 文件"filename.pkg",先使用以下命令解开 pkg:$ xar -xf filename.pkg解压后发现其解开了N个".pkg"后缀的文件夹,进入其中一个文件夹后可以看到其文件如下:BomPackageInfoPayload其中的"Payload"文件中真正保存了我们需要的文件,需要使用以下命令对其进行处理:$ mv Payload Payload.gz$ gunzip Payload.gz$ ls即可找到mach_kernel文件。 阅读全文
posted @ 2013-12-19 15:15 Martin2 阅读(499) 评论(0) 推荐(0) 编辑
摘要: PyOpenSSL是OpenSSL的python接口,用于提供加密传输支持(SSL),如果没用该模组,会导致goagent无法生成证书而影响使用。若系统没有openssl,先安装openssl,****一般系统都已安装,可以忽略此步****wget http://www.openssl.org/source/openssl-1.0.1c.tar.gztar zxvf openssl-1.0.1c.tar.gzcd openssl-1.0.1c#设定Openssl 安装,( --prefix )参数为欲安装之目录,也就是安装后的档案会出现在该目录下./config --prefix=/root/ 阅读全文
posted @ 2013-12-16 15:31 Martin2 阅读(2001) 评论(0) 推荐(0) 编辑
摘要: 今天早晨给 TabBar.vim 的作者Groleo发了个邮件询问这个tabbar关闭失败的问题。得到的答复是"you can use :bd instead of :close"试了下,果然管用,能够正常关闭当前标签页了,这样用起来就很顺手了 阅读全文
posted @ 2013-12-15 18:16 Martin2 阅读(808) 评论(0) 推荐(0) 编辑
摘要: Hi Ludovic,Ludovic Lebègue wrote:> While using zsh shell trying to autocomplete with tab key display the following> message instead of showing the files in the current directory :> > ludo@leonardo ~ % vi> _arguments:450: _vim_files: function definition file not foundI just tried 阅读全文
posted @ 2013-12-11 14:57 Martin2 阅读(683) 评论(0) 推荐(0) 编辑
摘要: taglisttagbar.vimNERD_commenter --注释/反注释DoxygenToolkit.vim --添加doxygen注释snipMate --提供快速生成代码段的功能mark.vim --给不同的单词高亮authorinfo --自动生成/更新文件的作者信息omnicppco... 阅读全文
posted @ 2013-12-10 17:45 Martin2 阅读(611) 评论(0) 推荐(0) 编辑
摘要: 来源:http://www.ccvita.com/24.html1.登录工作站1.1 透过 PC 登录工作站执行格式:telnet hostname (在 dos 下执行)telnet ip-addressExample:telnet doc telnet 140.122.77.120注: 可利用指... 阅读全文
posted @ 2013-12-09 21:41 Martin2 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 来源:http://maoxian.blog.51cto.com/4227070/1203768linux下安装vim自动补全插件snipMate环境:ubuntu下载snipMate 官方网站:http://www.vim.org/scripts/script.php?script_id=2540... 阅读全文
posted @ 2013-12-09 21:08 Martin2 阅读(587) 评论(0) 推荐(0) 编辑
摘要: 解决 .#2002 无法登录 MySQL 服务器将config.sample.inc.php复制成config.inc.php出现这个错误,表示没有连接到数据库。修改config.inc.php文件,将$cfg['Servers'][$i]['host'] = 'localhost';改为$cfg[... 阅读全文
posted @ 2013-12-09 10:36 Martin2 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 来源:http://timtang.me/blog/2011/12/07/mac-homebrew-mysql/使用MBP有一年了,开始想在工作中使用mac由于各种不习惯最终失败,导致自己使用了一年多的ubuntu,最近把ubuntu升级到了11.10,新版本的unity界面,和程序之间的切换缓慢让我决定强制切换到mac os 来开发,为将来尝试textmate做准备,没想到刚切到mac os 安装mysql就遇到了问题,下面介绍下在osx下brew安装mysql的过程:安装homebrew比较简单:/usr/bin/ruby -e "$(curl -fsSL https://raw 阅读全文
posted @ 2013-12-09 10:28 Martin2 阅读(806) 评论(0) 推荐(0) 编辑
摘要: chsh命令用于修改你的登录shell。1 我想知道我机器安装了哪些shell?两种方法可以查看:第一种:[rocrocket@wupengchong ~]$ chsh -l/bin/sh/bin/bash/sbin/nologin/bin/zsh第二种:[rocrocket@wupengchong... 阅读全文
posted @ 2013-12-08 15:25 Martin2 阅读(222) 评论(0) 推荐(0) 编辑