Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Oomph » Custom offline installer(How to create offline installer)
Custom offline installer [message #1847369] Mon, 25 October 2021 13:06 Go to next message
Zdeněk Ziegler is currently offline Zdeněk ZieglerFriend
Messages: 22
Registered: November 2019
Junior Member
Hey everyone,
A few days ago I started to create my first installer for our custom Eclipse IDE.

But I have one big problem with future distribution. Our development PCs are not connected to internet, only to our internal network.

Is there process how to mirror/download whole Eclipse distribution with all its dependencies?
For example: Mirror/download Eclipse for C/C++ 2021-03 and then use it inside the installer?

Thanks in advance
Zdenek
Re: Custom offline installer [message #1847376 is a reply to message #1847369] Mon, 25 October 2021 15:28 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33141
Registered: July 2009
Senior Member
You can use this to create a mirror:

https://wiki.eclipse.org/Equinox_p2_Repository_Mirroring

I have a shell bash like this:
#!/bin/sh

eclipse="/d/sandbox/oomph-master/eclipse/eclipse.exe"

if [[ $# != 2 ]]; then
  echo "mirror-eclipse <source-URL> <targetURL>"
else
 $eclipse -nosplash -verbose \
   -application org.eclipse.equinox.p2.artifact.repository.mirrorApplication \
   -source $1 \
   -destination $2
 $eclipse -nosplash -verbose \
   -application org.eclipse.equinox.p2.metadata.repository.mirrorApplication \
   -source $1 \
   -destination $2
fi

exit
You can use any Eclipse installation for the application.


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: Custom offline installer [message #1847408 is a reply to message #1847376] Tue, 26 October 2021 11:54 Go to previous message
Zdeněk Ziegler is currently offline Zdeněk ZieglerFriend
Messages: 22
Registered: November 2019
Junior Member
This is brilliant! Thank you :)
Previous Topic:Oomph documentation
Next Topic:Install Error
Goto Forum:
  


Current Time: Thu Apr 25 23:04:19 GMT 2024

Powered by FUDForum. Page generated in 0.03157 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top