delorie.com/archives/browse.cgi | search |
X-Recipient: | archive-cygwin AT delorie DOT com |
DKIM-Filter: | OpenDKIM Filter v2.11.0 sourceware.org D0193385C40F |
DKIM-Signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com; |
s=default; t=1664207940; | |
bh=ozsEMwFERxqZA5Ky8jyaziiLNhcHA4MZFPQHF4WCVUo=; | |
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=flatWpCIIRIaH2J6yc/Q6U2skD8yF4HN6YfXblspUIOjz8X+iAylrAUwIlZracUty | |
IxxWcG7iCaGEylPJS34BSdWJuDRN1IPTHaspox6BsYNbDST+0WypKXiAtC/Xo378Wx | |
QRDT89hAW0upXxkmycUr0Cjl+ly7q3biYiddZLXc= | |
X-Original-To: | cygwin AT cygwin DOT com |
Delivered-To: | cygwin AT cygwin DOT com |
DMARC-Filter: | OpenDMARC Filter v1.4.1 sourceware.org 73DD43856948 |
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: | AQHY0YJAPgdlUU8BHUKZtSG5IgMGaK3x2eIQgAACUSA= |
Date: | Mon, 26 Sep 2022 15:57:41 +0000 |
Message-ID: | <6999251d880042b38c2a50af664412b2@bryanhealth.org> |
References: | <AS8PR02MB866452FE8E1B39692A098D2D8B529 AT AS8PR02MB8664 DOT eurprd02 DOT prod DOT outlook DOT com> |
<df387610d0b645128805257b3e7547f4 AT bryanhealth DOT org> | |
In-Reply-To: | <df387610d0b645128805257b3e7547f4@bryanhealth.org> |
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-ORIG-GUID: | 4V275bmzmREUBxqv1RV0oX-fekN7XPpH |
X-Proofpoint-GUID: | 4V275bmzmREUBxqv1RV0oX-fekN7XPpH |
X-Proofpoint-Spam-Details: | rule=outbound_notspam policy=outbound score=0 |
mlxlogscore=999 spamscore=0 | |
lowpriorityscore=0 adultscore=0 suspectscore=0 bulkscore=0 | |
priorityscore=1501 clxscore=1015 impostorscore=0 phishscore=0 | |
malwarescore=0 mlxscore=0 classifier=spam adjust=0 reason=mlx scancount=1 | |
engine=8.12.0-2209130000 definitions=main-2209260101 | |
X-Spam-Status: | No, score=1.8 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 28QFxQiX019590 |
Lol, I copied some of the commands below from a cygwin terminal window from a shell script. It looked fine before I sent it, but apparently the lack of CR-LF combos did a number on outlook. Here it is again with the correct line CRLF line endings: 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 Dale Lobb via Cygwin > Sent: Monday, September 26, 2022 10:47 AM > To: 'JEROME GALLIERE' <jerome DOT galliere AT atos DOT net> > Cc: 'cygwin AT cygwin DOT com' <cygwin AT cygwin DOT com> > Subject: RE: 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. > > > 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://urldefense.com/v3/__https://cygwin.com/problems.html__;!!PI4dZ > uVR!guS_7ADfQmmHzn8PmzLi96iGN8hUHjyFh1v42- > s6XV4yJoADZ1zBpfStFPo29IAEiKCNi4UZEpsfiaR1$ > FAQ: > https://urldefense.com/v3/__https://cygwin.com/faq/__;!!PI4dZuVR!guS_7 > ADfQmmHzn8PmzLi96iGN8hUHjyFh1v42- > s6XV4yJoADZ1zBpfStFPo29IAEiKCNi4UZEkClCh2r$ > Documentation: > https://urldefense.com/v3/__https://cygwin.com/docs.html__;!!PI4dZuVR! > guS_7ADfQmmHzn8PmzLi96iGN8hUHjyFh1v42- > s6XV4yJoADZ1zBpfStFPo29IAEiKCNi4UZEn89QkfB$ > Unsubscribe info: > https://urldefense.com/v3/__https://cygwin.com/ml/*unsubscribe- > simple__;Iw!!PI4dZuVR!guS_7ADfQmmHzn8PmzLi96iGN8hUHjyFh1v42- > s6XV4yJoADZ1zBpfStFPo29IAEiKCNi4UZEv7CPAok$ ________________________________ 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 |