2

我在 Linux Mint 15 上使用软件管理器 (mintInstall) 安装了 Eclipse。我正在尝试通过终端在我的桌面上创建一个 Eclipse 快捷方式。我查了一下,发现了 mkshct 命令。但是,我有以下问题:

软件管理器在哪里安装 Eclipse?(在这个主题上也有其他应用程序)

我是否在使用 mkshct 的正确轨道上?

4

5 回答 5

2

我是如何解决这个问题的:

  1. 打开下载的文件(它将有eclipseeclipse.iniepl-v10.html等)
  2. 右键单击 eclipse 文件(与启动 Eclipse 相同的文件)并单击Make a Link,然后将链接拖到桌面。

icon.xpm如果您想更改链接/桌面图标,Eclipse 包还包含。

于 2013-12-05T00:56:52.860 回答
0

If you open the Start Menu option on the bottom right, search for Eclipse.

Once you find it (normally found under 'Development') just drag the icon to the desktop and a shortcut will be made for it.

于 2013-11-14T18:41:51.950 回答
0

也许它在 /opt/eclipse/ 中。
PS 从 eclipse.org 下载新版本,无需从文件夹安装即可运行 eclipse。

于 2013-07-26T07:57:31.207 回答
0

首先检查Eclipse路径$ which eclipse

1. $ sudo apt install gedit
2. $ cd Desktop
3. $ touch eclipse.desktop
4. $ gedit eclipse.desktop
5. 

句法:

    [Desktop Entry]
    Type=Application
    Name=Name of your application 
    Icon=/path/to/icon
    Exec=/path/to/application

您必须编辑名称、图标和执行

[Desktop Entry]
Type=Application
Name=eclipse
Icon=/home/mypc/SOFTWARES/eclipse/icon.xpm
Exec=/home/mypc/SOFTWARES/eclipse/eclipse
  1. 使其可执行

    chmod u+x eclipse.desktop

于 2021-05-23T17:47:42.437 回答
0

CLI 方法:

% which eclipse

% /xxxxxx/xxxxx/xxxxx/xxxx/eclipse

% ln -s /xxxxxx/xxxxx/xxxxx/xxxx/eclipse /yyyy/yyyy/yyyy

哪里/xxxxxx/xxxxx/xxxxx/xxxx/eclipse是输出% which eclipse并且/yyyy/yyyy/yyyy是你想要的符号链接(快捷方式)

我们输入“which eclipse”来知道你的 Eclipse 安装在哪里

于 2016-07-27T06:58:18.320 回答