zoukankan      html  css  js  c++  java
  • Ubuntu14.04 安装Source Insight

    在Ubuntu中,安装Windows程序用wine,然后用wine安装Windows软件即可。

    1、安装wine

    在终端输入以下命令:

    sudo apt-get install wine

    2、用wine安装Source Insight

    http://www.sourceinsight.com/ 下载exe文件

    在终端中输入以下命令:

    wine ~/SourceInsight/InsightSetup.exe

    注:SourceInsight的安装包要自行下载,跟windows下的安装一样。

    导入工程即可,跟windows无异。

    附图:

    Ubuntu下安装 Source insight

    3、如何打开SourceInsight?

    项目导入之后,把sourceInsight关闭之后,怎么再把SourceInsight打开?这时发现在终端不知道wine安装到哪了,还有SourceInsight的安装目录又在哪里?

    先在终端中输入命令

    cd ~

    ll

    发现多了个隐藏目录:

    .wine/

    进去看看:

    cd .wine/

    ll

    发现有以下目录:

    dosdevices  drive_c  system.reg  userdef.reg  user.reg

    其中drive_c默认为windows下C盘,打开进到该目录看看:

    cd drive_c

    ls

    Ubuntu下安装 Source insight

    这时基本上都能明白怎么回事了,打开Program Files:

    cd Program Files/

    我的机子是 cd Program Files (x86)/

    ls

    Ubuntu下安装 Source insight

    cd Source Insight 3/

    ls

    在终端输入命令:

    wine Insight3.exe

    成功打开Source Insight

    注册码是SI3US-361500-17409

    设置字体:

    Options——>Document options——>Screen Fonts 字体大小

    Options——>Style properties 字体颜色

    ALT+F12  增大/缩小函数名的字体大小

  • 相关阅读:
    sql server 辅助工具
    visual studio 辅助工具
    c# socket 判断端口是否被占用
    Socket 学习(三).1 tcp 通讯
    Socket 学习(三)
    c# 文件同步服务器,iis 集群 ,代码同步(二)
    免费3节精彩课程
    c# p2p 穿透(源码加密)
    互联网点对点通讯(P2P)
    文件同步服务器,iis 集群 ,代码同步(一)
  • 原文地址:https://www.cnblogs.com/maxiaodoubao/p/4424298.html
Copyright © 2011-2022 走看看