一/首先安装:wine
下载依赖包并按照
下载wine主题包
sudo apt-get install flex bison
sudo apt-get install wine
一般人都很顺畅地安装完毕了。
二/使用wine安装SourceInsight
1/首先自然要下载SourceInsight,下载网址为:这里
下载之后为091116201710.tar,解压出来就是:InsightSetup.exe
2/安装
xuyuefei@ubuntu:~/下载$ wine InsightSetup.exe
安装方法与在 windows一样,序列号(任选其一,来源于网络):
SI3US-956386-80191
SI3US-840598-11493
SI3US-404808-04697
SI3US-510811-93484
SI3US-343066-11287
三、卸载
解决办法:
到程序的目录里面
~/.wine/drive_c/Program Files/*****
wine 卸载程序.exe
或者, 终端执行:wine uninstaller
问题:
【ubuntu10.04下】Source Insight中文显示乱码,不支持UTF-8字符编码
可以参考:http://www.crifan.com/source_insight_chinese_char_messy_code_not_support_utf8_unicode/
三/其他
以下转自:http://www.cnblogs.com/eddy-he/archive/2012/03/08/ubuntu_wine_sourceInsight.html
4. 编写脚本快速启动
在终端上输入 wine "c:\Program Files\Source Insight 3\Insight3.exe" 即可启动 SourceInsight。但是每次启动都需要输入这一大串字符,是一件非常让人恼火的事,所以需要编写一个脚本来直接启动它,就像普通命令一样。
建立 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