Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Newcomers » Newcomers » How to add package offline(Adding PHP Developer package to offline C/C++ Developers installation)
How to add package offline [message #1863313] Thu, 25 January 2024 14:54 Go to next message
James Pollock is currently offline James PollockFriend
Messages: 2
Registered: January 2024
Junior Member
We have an Eclipse C/C++ Embedded developers installation of Eclipse 2023-12 installed on isolated Linux environment (not connected to internet).

How can we bolt on features of the PHP Developers package without direct access to the internet?

We are able to download separately and bring across to the target isolated network. However it is not clear where to go or what to download, or even if it is possible.

Is it possible to install two downloaded packages on the same platform?
Re: How to add package offline [message #1863324 is a reply to message #1863313] Fri, 26 January 2024 08:31 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33143
Registered: July 2009
Senior Member
We don't provide the release train repositories in zipped form:

https://download.eclipse.org/releases/2023-12/202312061001/

I use a script like this to create a mirror:
#!/bin/sh

eclipse="/d/Users/merks/oomph-1.31/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


Any Eclipse installation can be used:

https://wiki.eclipse.org/Equinox_p2_Repository_Mirroring

You can install compatible PHP features from that repository or from a mirror of that repository.


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: How to add package offline [message #1863325 is a reply to message #1863324] Fri, 26 January 2024 09:02 Go to previous message
James Pollock is currently offline James PollockFriend
Messages: 2
Registered: January 2024
Junior Member
OK, so I am trying to understand how mirroring works.
The installations I want to extend are on a wholly isolated network.
Transfer in/out by USB drives only.

Would I need to
1) set up a mirror on a computer connected to web that would download and replicate metadata and artifact repositories
2) anti-malware scan those folders
3) manually transfer by USB to the isolated network,
4) somehow direct the eclipse installations on local networked workstations to the 'snapshot' of the mirrored repositories.

Any further explanatory information - overview and details would be welcome
Thank You
Previous Topic:Failed to upgrade plugins with error Public key not found
Next Topic:I am modding a minecraft mod 1.16.5
Goto Forum:
  


Current Time: Wed May 01 01:41:21 GMT 2024

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

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

Back to the top