GitHub basic tutorial
  • Introduction
  • Khởi động hệ thống Ground station computer - Companion computer (Odroid) - Pixhawk
  • Tao 1 private Folder tu public Folder
  • Tạo folder dev PX4 code
  • PX4 modification
  • MAVROS modification
  • Tạo node I3S_receiver
  • Kết nối đọc dữ liệu trong Pixhawk
  • Terminal Linux Ubuntu
  • Kết nối ROS hai máy tính
  • Build ros package in Odroid
  • Pressure sensor
  • Kết nối camera oCAM trên ROS
  • Cài đặt và sử dụng Matlab 2017b trên Linux Ubuntu
  • Một vài vấn đề trên Windows 7
  • Terminator
  • Upload compiled firmware of Pixhawk from odroid
  • Kết nối internet và Ethernet với Odroid (qua Switch) và 1 card mạng kết nối internet
  • IMU, Camera, Pixhawk connection to odroid
  • Kết nối ssh
  • Tham khao code homography cua Ninad
  • Matlab_2017b_problems
  • Eigen library - Mathematical toolbox for C++
  • Kinh nghiệm chuẩn bị presentation
  • Tap lenh lam viec voi Pixhawk px4
  • Offboard mode in PX4
  • P51 Lenovo, trackpad and trackpoint
  • P51 Lenov, Install Quadro M2200 graphic card
  • Gilab
  • Tao 1 private Folder tu public Folder
  • Ubuntu tips: show desktop by pressing Super + D
  • Install eclipse
  • Windows error
  • How to update Sublime Text 3 in ubuntu 16.04
  • PX4 Pixhawk hardfault
  • Install CUDA for computer with NVIDIA graphic card
  • Install openCV after installing CUDA
  • Meld - tool for file or folder comparison
  • GIT - move a full git repository from one remote sever to another one
  • Jetson Nano Installation
  • Working in Jetson Nano
  • Backup and Restore micro sd card
Powered by GitBook
On this page
  • Installation des dernières versions disponibles sans l'outil "Eclipse Installer"
  • Créer un lanceur
  • Installing Eclipse the hard way

Was this helpful?

Install eclipse

PreviousUbuntu tips: show desktop by pressing Super + DNextWindows error

Last updated 5 years ago

Was this helpful?

  1. Download from

2.

tar xvfz eclipse-inst-linux64.tar.gz

cd eclipse-installer/

./eclipse-inst

======================================*

If download

eclipse-cpp-2019-03-R-linux-gtk-x86_64.tar.gz

Créez un dossier où vous voulez : /opt/eclipse

Décompressez l'archive précédemment téléchargée dans ce dossier

Lancer Eclipse en le situant bien dans son répertoire d'installation : /opt/eclipse/eclipse

Créer un lanceur

Pour les dernières versions, et si ce lanceur n'a pas été créé par l'installation Snap ou Deb, il peut être utile de créer un lanceur pour lancer Eclipse depuis son bureau préféré.

Pourdans votre menu Application afin de lancer le fichier

eclipse.desktop

ou en ligne de commande

gksudo gedit /usr/share/applications/eclipse.desktop

et copiez-y le texte suivant dans le fichier eclipse.desktop (en supposant que votre répertoire eclipse se trouve sous /opt)

[Desktop Entry]
Name=Eclipse 
Type=Application
Exec=/opt/eclipse/eclipse
Terminal=false
Icon=/opt/eclipse/icon.xpm
Comment=Integrated Development Environment
NoDisplay=false
Categories=Development;IDE
Name[en]=Eclipse

Donnez les droits en lecture à tous les utilisateurs au fichier eclipse.desktop créé.

sudo chmod a+r /usr/share/applications/eclipse.desktop

===================================================

A better instruction is follows

Installing Eclipse the hard way

Usually, extracting the Eclipse Luno into your home directory shall be enough to allow you to work with it. But sometimes the package requires to be installed into "/opt" and refuses to work properly or to work at all when installed elsewhere. In that case (if you are not a Linux guru) it is often easier to just reinstall the OS from scratch (remember to back up your data first). However sometimes reinstallation of the OS is not feasible.

The following workflow was used to install Eclipse Luno on one such misbehaving system, however it is not guaranteed that this type of misbehavior will be exactly the same in your case so your mileage may vary. These instructions assume you already have the JDK and Maven packages installed and the installation package downloaded as described in the "easy way" installation instructions.

  1. Open a terminal (Ctrl-Alt-T) and switch it to root permissions by entering:

$ sudo su

  1. Extract the Eclipse installation package into /opt:

# cd /opt

# sudo tar -xzvf

<

path_to_the_downloaded_package

>

  1. Increase the memory for the Eclipse installation by modifying the

file. See the "easy way" for instructions.

Create a startup script for the Eclipse:

# cd /usr/local/bin

# echo 'ECLIPSE=/opt/eclipse/eclipse'

>

eclipse

# echo 'exec $ECLIPSE "$@"'

>

>

eclipse

# chmod +x eclipse

  1. Now exit the root mode and start the installed eclipse:

    # exit

    $ eclipse

***

We can simply copy eclipse folder to /opt, then

open~/.bashrcwith your favourite editor and add the following lines to the end of the file:

if [ -d "/opt/eclipse" ] ; then
    PATH="/opt/eclipse:$PATH"
fi

Close and open the terminal.

eclipse:

créer le fichier
/opt/eclipse/eclipse.ini
Eclipse website
Installation des dernières versions disponibles sans l'outil "Eclipse Installer"
Créez un lanceur