delorie.com/archives/browse.cgi | search |
X-Recipient: | archive-cygwin AT delorie DOT com |
DKIM-Filter: | OpenDKIM Filter v2.11.0 sourceware.org 6AAFE3857B97 |
DKIM-Signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com; |
s=default; t=1664207300; | |
bh=Lw1sUjY5qeqCXvJ2vmXgK8UV3R87rUmqPHNNSuJM0Rc=; | |
h=To:Subject:Date:References:In-Reply-To:List-Id:List-Unsubscribe: | |
List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | |
From; | |
b=UnJwn6jvj34ku0zv0OcgXzawUD4roPx89qegd9dNkhVClNsuu2OH2dY9HinUQpbcu | |
U8WHOdMWsmWiJ6gOPuyP9gmW8kBmsJXSKe5Bpi+Z5y4RXjyfc3O38Kh44FCI98bPyu | |
l6tkz9TFSOyKo2qwf8IGxoN4uNc06/QajTwSRJDw= | |
X-Original-To: | cygwin AT cygwin DOT com |
Delivered-To: | cygwin AT cygwin DOT com |
DMARC-Filter: | OpenDMARC Filter v1.4.1 sourceware.org 045DB3858D37 |
To: | "'JEROME GALLIERE'" <jerome DOT galliere AT atos DOT net> |
Subject: | RE: EXTERNAL SENDER: offline installation of cygwin is impossible |
Thread-Topic: | EXTERNAL SENDER: offline installation of cygwin is impossible |
Thread-Index: | AQHY0YJAPgdlUU8BHUKZtSG5IgMGaK3x2eIQ |
Date: | Mon, 26 Sep 2022 15:46:45 +0000 |
Message-ID: | <df387610d0b645128805257b3e7547f4@bryanhealth.org> |
References: | <AS8PR02MB866452FE8E1B39692A098D2D8B529 AT AS8PR02MB8664 DOT eurprd02 DOT prod DOT outlook DOT com> |
In-Reply-To: | <AS8PR02MB866452FE8E1B39692A098D2D8B529@AS8PR02MB8664.eurprd02.prod.outlook.com> |
Accept-Language: | en-US |
X-MS-Has-Attach: | |
X-MS-TNEF-Correlator: | |
x-originating-ip: | [10.240.2.50] |
MIME-Version: | 1.0 |
X-Proofpoint-GUID: | 0hHqZwyQBzCc0tZCYQitb0bSjfyrOEql |
X-Proofpoint-ORIG-GUID: | 0hHqZwyQBzCc0tZCYQitb0bSjfyrOEql |
X-Proofpoint-Spam-Details: | rule=outbound_notspam policy=outbound score=0 |
suspectscore=0 bulkscore=0 | |
adultscore=0 clxscore=1011 spamscore=0 mlxscore=0 phishscore=0 | |
priorityscore=1501 mlxlogscore=999 malwarescore=0 lowpriorityscore=0 | |
impostorscore=0 classifier=spam adjust=0 reason=mlx scancount=1 | |
engine=8.12.0-2209130000 definitions=main-2209260100 | |
X-Spam-Status: | No, score=1.7 required=5.0 tests=BAYES_50, DKIM_SIGNED, |
DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, KAM_EXEURI, LIKELY_SPAM_FROM, | |
RCVD_IN_DNSWL_LOW, SPF_HELO_NONE, SPF_PASS, | |
TXREP autolearn=no autolearn_force=no version=3.4.6 | |
X-Spam-Level: | * |
X-Spam-Checker-Version: | SpamAssassin 3.4.6 (2021-04-09) on |
server2.sourceware.org | |
X-BeenThere: | cygwin AT cygwin DOT com |
X-Mailman-Version: | 2.1.29 |
List-Id: | General Cygwin discussions and problem reports <cygwin.cygwin.com> |
List-Archive: | <https://cygwin.com/pipermail/cygwin/> |
List-Post: | <mailto:cygwin AT cygwin DOT com> |
List-Help: | <mailto:cygwin-request AT cygwin DOT com?subject=help> |
List-Subscribe: | <https://cygwin.com/mailman/listinfo/cygwin>, |
<mailto:cygwin-request AT cygwin DOT com?subject=subscribe> | |
From: | Dale Lobb via Cygwin <cygwin AT cygwin DOT com> |
Reply-To: | Dale Lobb <Dale DOT Lobb AT bryanhealth DOT org> |
Cc: | "'cygwin AT cygwin DOT com'" <cygwin AT cygwin DOT com> |
Sender: | "Cygwin" <cygwin-bounces+archive-cygwin=delorie DOT com AT cygwin DOT com> |
X-MIME-Autoconverted: | from base64 to 8bit by delorie.com id 28QFmk43017891 |
This works for me to make a local installation repository: All of the following assumes you have a working cygwin install on a machine that has internet access. 1. Create a Cygwin install directory and cd into it. Download the latest Cygwin installer to this directory: # mkdir Cygwin # cd Cygwin # wget --no-check-certificate https://www.cygwin.com/setup-x86_64.exe 2. Create an exclusions file. This file should exclude any file types and whatever else you do not want in the new local repository. The following excludes source code and debug symbols: # echo *-src.tar.*> rsync_copy.exclusions # echo *-debuginfo*>> rsync_copy.exclusions 3. Create a local repository mirror directory with syntax that matches one of the methods used for accessing an internet based Cygwin repository. This should be under your Cygwin install directory. Cd into the new directory. E.g.: # mkdir ftp%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f # cd ftp%3a%2f%2fmirrors.kernel.org%2fsourceware%2fcygwin%2f 4. Use the rsync protocol (Actual rsync, not ssh) to download the data to your new local repository: # rsync -av --progress rsync://mirrors.kernel.org/sourceware/cygwin/unsupported ./ # rsync -av --delete --exclude-from=../rsync_copy.exclusions --progress rsync://mirrors.kernel.org/sourceware/cygwin/noarch ./ # rsync -av --delete --exclude-from=../rsync_copy.exclusions --progress rsync://mirrors.kernel.org/sourceware/cygwin/x86_64 ./ 5. Copy the entire Cygwin tree you just created to a CD ISO or flash drive. You now have a portable Cygwin installation. Best Regards, Dale Lobb > -----Original Message----- > From: Cygwin <cygwin-bounces+dale.lobb=bryanhealth DOT org AT cygwin DOT com> > On Behalf Of JEROME GALLIERE via Cygwin > Sent: Monday, September 26, 2022 3:31 AM > To: cygwin AT cygwin DOT com > Subject: EXTERNAL SENDER: offline installation of cygwin is impossible > > CAUTION: This email originated from outside of the organization. Do not > click links or open attachments unless you recognize the sender. > > > Hello, > > > > I need to install cygwin on some machine not connected to internet so I > did everything I found over the internet on the subject. > > But despite I "download without installing" ALL packages from a normal > machine (I got almost 20G) despite I transfert that to the non connected > machines when trying to "Install from local directory" install it is just > telling: "nothing to install/update" I tried any options and still the same. > > Does that really works recently? I asked recently because any articles I > found on subject are years ago... > > Jérôme > > Ce message et toutes les pièces jointes (ci-après le "message") sont établis > à l’intention exclusive des destinataires désignés. Il contient des > informations confidentielles et pouvant être protégé par le secret > professionnel. Si vous recevez ce message par erreur, merci d'en avertir > immédiatement l'expéditeur et de détruire le message. Toute utilisation > de ce message non conforme à sa destination, toute diffusion ou toute > publication, totale ou partielle, est interdite, sauf autorisation expresse de > l’émetteur. L'internet ne garantissant pas l'intégrité de ce message lors de > son acheminement, Atos (et ses filiales) décline(nt) toute responsabilité > au titre de son contenu. Bien que ce message ait fait l’objet d’un > traitement anti-virus lors de son envoi, l’émetteur ne peut garantir > l’absence totale de logiciels malveillants dans son contenu et ne pourrait > être tenu pour responsable des dommages engendrés par la transmission > de l’un d’eux. > > This message and any attachments (the "message") are intended solely for > the addressee(s). It contains confidential information, that may be > privileged. If you receive this message in error, please notify the sender > immediately and delete the message. Any use of the message in violation > of its purpose, any dissemination or disclosure, either wholly or partially is > strictly prohibited, unless it has been explicitly authorized by the sender. > As its integrity cannot be secured on the internet, Atos and its subsidiaries > decline any liability for the content of this message. Although the sender > endeavors to maintain a computer virus-free network, the sender does > not warrant that this transmission is virus-free and will not be liable for > any damages resulting from any virus transmitted. > > -- > Problem reports: > https://urldefense.com/v3/__https://cygwin.com/problems.html__;!!PI4dZ > uVR!lRiD- > jvIGag0KyqZ8FVrkWA_Br0opC6trO8MH5VfX65x9E2tJg3ttKmRhhEkfqGmEro > aVfv85tUSnl5j$ > FAQ: > https://urldefense.com/v3/__https://cygwin.com/faq/__;!!PI4dZuVR!lRiD- > jvIGag0KyqZ8FVrkWA_Br0opC6trO8MH5VfX65x9E2tJg3ttKmRhhEkfqGmEro > aVfv85kmpsgbB$ > Documentation: > https://urldefense.com/v3/__https://cygwin.com/docs.html__;!!PI4dZuVR! > lRiD- > jvIGag0KyqZ8FVrkWA_Br0opC6trO8MH5VfX65x9E2tJg3ttKmRhhEkfqGmEro > aVfv85iwQgVfF$ > Unsubscribe info: > https://urldefense.com/v3/__https://cygwin.com/ml/*unsubscribe- > simple__;Iw!!PI4dZuVR!lRiD- > jvIGag0KyqZ8FVrkWA_Br0opC6trO8MH5VfX65x9E2tJg3ttKmRhhEkfqGmEro > aVfv85lcqniI9$ > > ________________________________ > > CONFIDENTIALITY NOTICE: This e-mail message, including any attachments, > is for the sole use of the intended recipients and may contain confidential > and privileged information. Any unauthorized review, use, disclosure or > distribution is prohibited. If you are not the intended recipient, please > contact the sender by reply e-mail and destroy all copies of the original > message. ________________________________ CONFIDENTIALITY NOTICE: This e-mail message, including any attachments, is for the sole use of the intended recipients and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply e-mail and destroy all copies of the original message. -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation: https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple
webmaster | delorie software privacy |
Copyright © 2019 by DJ Delorie | Updated Jul 2019 |