美文网首页
centos8下安装goland并设置桌面图标

centos8下安装goland并设置桌面图标

作者: 牧神_c9dd | 来源:发表于2021-10-27 14:09 被阅读0次

    一、下载

    我用的是Goland-2021.1.2版本的,可以自行去官网下载。
    https://www.jetbrains.com/go/download/download-thanks.html?platform=linux

    二、安装

    1.将刚刚的压缩包放入opt目录下并解压:

    tar xvfz goland-2021.1.2.tar.gz 
    

    2.解压生成相应目录,cd到GoLand-2021.1.2/bin,在终端中运行:

    ./goland.sh
    

    如果可以成功启动,说明安装成功:


    image.png

    3.破解方式自行百度,我用的是一个无限重置使用时间的插件。

    三、设置应用图标

    1.在目录 /usr/share/applications 中新建 Goland.desktop文件:

    #切换到应用图标文件夹
    cd /usr/share/applications
    #创建并编辑Goland.desktop文件
    sudo vim /usr/share/applications/Goland.desktop
    

    2.编辑文件,输入以下内容:

    [Desktop Entry]
    Type=Application
    Name=Goland
    GenericName=Goland
    Comment=Golang IDE
    Exec=sh /opt/GoLand-2021.1.2/bin/goland.sh
    Icon=/opt/GoLand-2021.1.2/bin/goland.png
    Terminal=false
    Categories=Application;Network;
    

    保存并退出。
    一般到这里,图标就已经生成了,如果没有的话,继续下一步:
    3.使图标生效,执行如下指令:

    chmod a+x /usr/share/applications/Goland.desktop
    

    若执行成功,就会在应用图标目录下发现goland图标,相应的应用列表也会展示出来,单击可以打开运行:


    image.png
    image.png

    相关文章

      网友评论

          本文标题:centos8下安装goland并设置桌面图标

          本文链接:https://www.haomeiwen.com/subject/mpysaltx.html