我在 Linux Mint 15 上使用软件管理器 (mintInstall) 安装了 Eclipse。我正在尝试通过终端在我的桌面上创建一个 Eclipse 快捷方式。我查了一下,发现了 mkshct 命令。但是,我有以下问题:
软件管理器在哪里安装 Eclipse?(在这个主题上也有其他应用程序)
我是否在使用 mkshct 的正确轨道上?
我在 Linux Mint 15 上使用软件管理器 (mintInstall) 安装了 Eclipse。我正在尝试通过终端在我的桌面上创建一个 Eclipse 快捷方式。我查了一下,发现了 mkshct 命令。但是,我有以下问题:
软件管理器在哪里安装 Eclipse?(在这个主题上也有其他应用程序)
我是否在使用 mkshct 的正确轨道上?
我是如何解决这个问题的:
eclipse
、eclipse.ini
、epl-v10.html
等)icon.xpm
如果您想更改链接/桌面图标,Eclipse 包还包含。
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.
也许它在 /opt/eclipse/ 中。
PS 从 eclipse.org 下载新版本,无需从文件夹安装即可运行 eclipse。
首先检查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
使其可执行
chmod u+x eclipse.desktop
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 安装在哪里