Sign inSign up

alljoynsville/eclipse-cpp-x11

By alljoynsville

Updated over 5 years ago

run linux c++ x11 eclipse from windows

Image
3

10K+

alljoynsville/eclipse-cpp-x11 repository overview

easy linux c++ dev with from your windows/mac/linux machine! linux + x11 + eclipse (cdt) + c++ environment instructions:

  1. install xming on your windows machine / XQuartz for mac
  2. run the image: docker run -d --privileged --name eclipse -p 224:22 -v ~/docker/eclipse-neon/workspace:/home/eclipse/workspace alljoynsville/eclipse-cpp-x11:neon
  3. ssh with putty to the machine, with port 224 and user : password eclipse : changemeonfirstlaunch
  4. change the password on first launch! (the command is: passwd )
  5. run: eclipse &
  • --privileged is for running gdb tip 1: login ======== for passwordless login, use -v ~/.ssh/id_rsa.pub:/home/eclipse/.ssh/authorized_keys:ro docker run -d --privileged --name eclipse -p 224:22 -v ~/.ssh/id_rsa.pub:/home/eclipse/.ssh/authorized_keys:ro -v ~/eclipse/workspace:/home/eclipse/workspace alljoynsville/eclipse-cpp-x11

tip 2: fonts

increase xming font by adding " -dpi 108 " to it's shortcut (credit: https://aufather.wordpress.com/2010/11/21/increasing-font-size-in-xming-server/ )

tip 3: root:

to install stuff as root, use docker exec: docker exec -it -u root eclipse bash

tip 4: ssh:

vim ~/.ssh/config Host eclipse-neon HostName 127.0.0.1 Port 224 User eclipse IdentityFile ~/.ssh/id_rsa

Tag summary

Content type

Image

Digest

sha256:38e2ddef4

Size

602.9 MB

Last updated

over 5 years ago

docker pull alljoynsville/eclipse-cpp-x11