标签:
wine安装SourceInsight
1. 环境:ubuntu10.04 2. 安装 wine
关于 wine ,请参考这里。通过网络安装:
$ apt-get install wine
3. 安装 SourceInsight 在这里下载 SourceInsight 安装包。下载完成后,用 wine 安装。
$ wine InsightSetup.exe
安装方法与在 windows 一样,序列号(任选其一,来源于网络):
SI3US-956386-80191
SI3US-840598-11493
SI3US-404808-04697
SI3US-510811-93484
SI3US-343066-11287
4. 编写脚本快速启动 在终端上输入 wine "c:\Program Files\Source Insight 3\Insight3.exe" 即可启动 Source Insight 。但是每次启动都需要输入这一大串字符,是一件非常让人恼火的事,所以需要编写一个脚本来直接启动它,就像普通命令一样。 建立 SourceInsight.sh 脚本:
$ cat ~/.SourceInsight.sh function SourceInsight() { wine "c:\Program Files\Source Insight 3\Insight3.exe" }
修改 ~/.bashrc ,添加下面内容到文件末尾:
$ cat ~/.bashrc # Add by Eddy for using SourceInsight, + source ~/.SourceInsight.sh # Add by Eddy for using SourceInsight, -
这样每次登陆终端都可以直接使用命令 SourceInsight 来启动 source insight 了,非常方便。
$ SourceInsight
参考资料: http://zh.wikipedia.org/wiki/Wine http://bbs.ednchina.com/BLOG_ARTICLE_2097734.HTM http://blog.csdn.net/liushaogeng/article/details/5853665 http://www.linuxidc.com/Linux/2010-07/27137.htm
标签:
原文地址:http://www.cnblogs.com/x113/p/4371882.html