CentOS7安装IntelliJ IDEA

IntelliJ IDEA是一种商业化销售的Java集成开发环境(Integrated Development Environment,IDE)工具软件,由JetBrains软件公司(前称为IntelliJ)开发,提供Apache 2.0开放式授权的社区版本以及专有软件的商业版本,开发者可选择其所需来下载使用。

下载

https://www.jetbrains.com/idea/download/download-thanks.html?platform=linux

解压运行

#解压
tar -xvf ideaIU-2021.1.3.tar.gz
cd idea-IU-211.7628.21/bin
./idea.sh

CentOS7安装IntelliJ IDEA_第1张图片
就是这么简单,解压后就可以直接运行了!

制作快捷方式

每次启动在命令行中运行./idea.sh,总感觉有些拉垮吧!有没有像其他平台一样的,通过图标运行呢?
于是我就摸索一下,发现很简单,只要随便复制一个图标,然后把内容替换成IDEA的就可以了。

vim ~/Desktop/intellij-idea.desktop

文本内容如下:

[Desktop Entry]
Name[zh_CN]=IntelliJ IDEA
Name=IntelliJ IDEA
GenericName[zh_CN]=idea
GenericName=idea
X-GNOME-FullName[zh_CN]=IntelliJ IDEA
X-GNOME-FullName=IntelliJ IDEA 
Comment[zh_CN]=java IDE 
Keywords[zh_CN]=idea;java;dev;ide;
Keywords=idea;java;dev;ide;
Exec=/home/apex/.soft/idea-IU-211.7628.21/bin/idea.sh
# Translators: Do NOT translate or transliterate this text (this is an icon file name)!
Icon=/home/apex/.soft/idea-IU-211.7628.21/bin/idea.png
Terminal=false
Type=Application
Categories=GNOME;GTK;Utility;Clock;
StartupNotify=true
DBusActivatable=true
X-GNOME-UsesNotifications=true
X-Geoclue-Reason[zh_CN]=Java 

其中Exec=/home/apex/.soft/idea-IU-210.7628.21/bin/idea.shIcon=/home/apex/.soft/idea-IU-211.7628.21/bin/idea.png替换成你真实的路径即可

完成以后,图标并没有正常显示。双击图标后会出现下面的弹框。
CentOS7安装IntelliJ IDEA_第2张图片
点击Trust and Launch就可以了。

CentOS7安装IntelliJ IDEA_第3张图片
搞定!

你可能感兴趣的:(linux,java,linux,idea)