码迷,mamicode.com
首页 > Windows程序 > 详细

wine安装SourceInsight

时间:2015-04-09 06:17:58      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

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

wine安装SourceInsight

标签:

原文地址:http://www.cnblogs.com/x113/p/4371882.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!