Install eclipse ns3 in ubuntu 14.04

5427 단어 eclipse
1. NS3 install
NS3 tutorial 을 참고 하면 됩 니 다.
2.eclipse
2.1 다운로드
다운로드 주소: http://www.eclipse.org/downloads/
              Eclipse IDE for C/C++ Developers
NOTE: you can know whether your ubuntu is 32-bit or 64-bit by executing the command "uname -m".
i686 이 표시 되면 32 비트 운영 체 제 를 설치 하 였 습 니 다.
하면, 만약, 만약...64, 당신 은 64 비트 운영 체 제 를 설치 하 였 습 니 다.
2.2 jre jdk 설치
두 가지 방식, 개인 용 첫 번 째, 쓸 수 있 으 면 되 지, 중요 한 게 아니 라:
첫 번 째 종류:
Installing default JRE/JDK
This is the recommended and easiest option. This will install OpenJDK 6 on Ubuntu 12.04 and earlier and on 12.10+ it will install OpenJDK 7.
Installing Java with apt-get is easy. First, update the package index:
sudo apt-get update 

Then, check if Java is not already installed:
java -version 

If it returns "The program java can be found in the following packages", Java hasn't been installed yet, so execute the following command:
sudo apt-get install default-jre 

This will install the Java Runtime Environment (JRE). If you instead need the Java Development Kit (JDK), which is usually needed to compile Java applications (for example Apache Ant , Apache Maven , Eclipse and IntelliJ IDEA execute the following command:
sudo apt-get install default-jdk 

That is everything that is needed to install Java.
두 번 째:
Step 1: Install Java 8 (JDK 8)
Add the webupd8team java PPA repository in our system and install Oracle java8 using following set of commands.
$ sudo add-apt-repository ppa:webupd8team/java

$ sudo apt-get update

$ sudo apt-get install oracle-java8-installer


Step 2: Verify JAVA Version
After successfully installing oracle java using above step verify installed version using following command.
$ java -version



java version "1.8.0_25"

Java(TM) SE Runtime Environment (build 1.8.0_25-b17)

Java HotSpot(TM) 64-Bit Server VM (build 25.25-b02, mixed mode)


Step 3: Setup JAVA Environment
Webupd8team is providing a package to set environment variables, Install this package using following command.
$ sudo apt-get install oracle-java8-set-default


References: https://launchpad.net/~webupd8team/+archive/java
2.3 이 클립 스 설치
압축 해제 Eclipse
Ctrl + Alt + T 를 사용 하여 터미널 을 열 고 다음 명령 을 사용 하여 이 클립 스 를 / opt / 디 렉 터 리 에 압축 해제 하여 전역 적 으로 사용 합 니 다.
cd / opt / & sudo tar - zxvf ~ / 다운로드 / eclipse - *. tar. gz
압축 해제 가 완료 되면 / opt / 디 렉 터 리 에서 Eclipse 를 볼 수 있 습 니 다.
2.4. Eclipse 단축 키 만 들 기
1. 터미널 에서 다음 명령 을 수행 합 니 다.
gksudo gedit /usr/share/applications/eclipse.desktop
2. 다음 내용 을 붙 여 넣 고 저장
[Desktop Entry] Name=Eclipse 4 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
이로써 최신 버 전의 이 클립 스 케 플 러 를 우 분투 14.04 에 설치 해 사용 할 수 있 게 됐다.
3. 이 클립 스 NS3 설정
2 편의 글 참고:
http://blog.sina.com.cn/s/blog_5d2054d901019vcj.html
https://www.nsnam.org/wiki/HOWTO_configure_Eclipse_with_ns-3
공식 문 서 는 그림 을 잘 보고 자신의 ns3 프로젝트 이름 도 주의 하 세 요.
단계:
3.1 Configure Waf Builder
3.2 Configure Debugger
3.3 Configure To Run From Eclipse
  • Add an external builder (Run->External Tools->External Tools Configuration) and add a new Program. Then you can configure it:
  • Location = your waf location (i.e. /home/x/workspace/ns-3-dev/waf)
  • Working Directory = your ns3 directory (i.e. /home/x/workspace/ns-3-dev/)
  • Arguments = --run "${string_prompt}"

  • Then you can run your program (with arguments) with the new created external builder.

    4. 종결 어
    마지막 으로 명령 줄 에 파 라 메 터 를 가지 고 프로그램 을 실행 할 때 프로그램 이름과 파 라 메 터 를 작은 따옴표 로 포함 시 켜 야 합 니 다. 예 를 들 어... / waf -- run "RPS 4"  (설명: RPS 는 프로그램 이름 이 고 "4" 는 매개 변수 입 니 다)
    프로그램 이름과 그 매개 변수 설정 을 직접 입력 하면 됩 니 다.
    myfirst – XX = XX
    따옴표 붙 이지 마.

    좋은 웹페이지 즐겨찾기