• 在Ubuntu 中安装eclipse, eclipse 文件已经下载好!


    If you've downloaded Eclipse from their official website, follow these steps for the installation.

    1. Extract the eclipse.XX.YY.tar.gz using
    2. tar -zxvf eclipse.XX.YY.tar.gz
    3. Become root.
    4. sudo -i
    5. Copy the extracted folder to /opt
    6. cp -r eclipse.XX.YY /opt
    7. Create a desktop file and install it:
    8. gedit eclipse.desktop

      and copy the following to the eclipse.desktop file.

      [Desktop Entry]

      Name=Eclipse

      Type=Application

      Exec=eclipse

      Terminal=false

      Icon=eclipse

      Comment=Integrated Development Environment

      NoDisplay=false

      Categories=Development;IDE;

      Name[en]=Eclipse

      then execute the following command to automatically install it in the unity:

      desktop-file-install eclipse.desktop

    9. Create a symlink in /usr/local/bin using
    10. cd /usr/local/bin
    11. ln -s /opt/eclipse/eclipse
    12. For eclipse icon to be displayed in dash, eclipse icon can be added as
    13. cp /opt/eclipse/icon.xpm /usr/share/pixmaps/eclipse.xpm

    That's it.

  • 相关阅读:
    DAY7-面向对象之封装
    Java遇到的问题、错误——持续更新
    008单例、继承、final
    java一些使用
    2.1端口扫描器
    PyCharm设置
    常用算法
    PyCharm最新2018激活码,最新方法
    004数组
    042多进程
  • 原文地址:https://www.cnblogs.com/7899-89/p/3446134.html
Copyright © 2020-2023  润新知