Re: Cannot install git-svn

2025-04-23 Thread Christian Franke via Cygwin
Wiktor S. via Cygwin wrote: Hi,recently it become impossible to install git-svn because of Perl dependency:Problem 1/1nothing provides perl5_036 needed by subversion-perl-1.14.2-1Solution 1/1 (default)  - do not ask to install git-svn-2.45.1-1-- Wiktor Sywula setup.ini: ... @ git-svn

Cannot install git-svn

2025-04-23 Thread Wiktor S. via Cygwin
Hi,recently it become impossible to install git-svn because of Perl dependency:Problem 1/1nothing provides perl5_036 needed by subversion-perl-1.14.2-1Solution 1/1 (default)  - do not ask to install git-svn-2.45.1-1-- Wiktor Sywula -- Problem reports: https://cygwin.com/problems.html FAQ

Re: Cygwin Offline Install (Was: Cygwin wishlist for NFSv4.2 driver?)

2025-04-03 Thread Brian Inglis via Cygwin
also ships a minimum offline version of Cygwin. Right now Cygwin install does not work in intranets, limiting its usefulness. Cygwin install works fine offline, you just have to download the Cygwin setup program and either package arch/release directories or else a package download directory

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread Takashi Yano via Cygwin
On Tue, 15 Oct 2024 14:38:07 -0700 jeff wrote: > On 10/15/2024 14:34, Takashi Yano wrote: > > On Tue, 15 Oct 2024 13:09:12 -0700 > > jeff wrote: > >> /cygdrive/k/pw-crack/fred_john/run/cygwin1.dll > >> -rwxrwx---+ 1 jdeifik None 3492318 May 26  2019 > > The culprit of the problem is this old cygwin

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread jeff via Cygwin
On 10/15/2024 14:34, Takashi Yano wrote: On Tue, 15 Oct 2024 13:09:12 -0700 jeff wrote: /cygdrive/k/pw-crack/fred_john/run/cygwin1.dll -rwxrwx---+ 1 jdeifik None 3492318 May 26  2019 The culprit of the problem is this old cygwin1.dll. Windows searches .dll in the current directory first. I und

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread Takashi Yano via Cygwin
On Tue, 15 Oct 2024 13:09:12 -0700 jeff wrote: > /cygdrive/k/pw-crack/fred_john/run/cygwin1.dll > -rwxrwx---+ 1 jdeifik None 3492318 May 26  2019 The culprit of the problem is this old cygwin1.dll. Windows searches .dll in the current directory first. -- Takashi Yano -- Problem reports:

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread jeff via Cygwin
On 10/15/2024 07:56, Kevin Schnitzius via Cygwin wrote: On Monday, October 14, 2024 at 05:19:27 PM EDT, jeff via Cygwin wrote: jdeifik@epyc-milan-64 /cygdrive/k $ testx one two thee My brother in Posix, For the love all that is sustainable, take . out of your path. Kevin "." is not in P

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread jeff via Cygwin
On 10/15/2024 08:40, Takashi Yano wrote: On Wed, 16 Oct 2024 00:29:30 +0900 Takashi Yano wrote: IFS=':'; for a in ${PATH[@]}; do find $a -name cygwin1.dll -exec ls -l '{}' \; ; done Sorry, use IFS=':'; for a in ${PATH[@]}; do find $a -maxdepth 1 -name cygwin1.dll -exec ls -l '{}' \; ; done in

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread jeff via Cygwin
On 10/15/2024 08:01, Takashi Yano wrote: On Tue, 15 Oct 2024 04:52:12 -0700 jeff wrote: On 10/15/2024 03:48, Takashi Yano wrote: On Mon, 14 Oct 2024 14:18:04 -0700 jeff via Cygwin wrote: I have a test case. this is test.c: #include int    main(int argc, char *argv[]) {     for (int i =

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread Takashi Yano via Cygwin
On Wed, 16 Oct 2024 00:29:30 +0900 Takashi Yano wrote: > IFS=':'; for a in ${PATH[@]}; do find $a -name cygwin1.dll -exec ls -l '{}' > \; ; done Sorry, use IFS=':'; for a in ${PATH[@]}; do find $a -maxdepth 1 -name cygwin1.dll -exec ls -l '{}' \; ; done instead. -- Takashi Yano -- Problem r

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread Takashi Yano via Cygwin
On Wed, 16 Oct 2024 00:01:44 +0900 Takashi Yano wrote: > On Tue, 15 Oct 2024 04:52:12 -0700 > jeff wrote: > > On 10/15/2024 03:48, Takashi Yano wrote: > > > On Mon, 14 Oct 2024 14:18:04 -0700 > > > jeff via Cygwin wrote: > > > > > >> I have a test case. > > >> > > >> this is test.c: > > >> #includ

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread Takashi Yano via Cygwin
On Tue, 15 Oct 2024 04:52:12 -0700 jeff wrote: > On 10/15/2024 03:48, Takashi Yano wrote: > > On Mon, 14 Oct 2024 14:18:04 -0700 > > jeff via Cygwin wrote: > > > >> I have a test case. > >> > >> this is test.c: > >> #include > >> int    main(int argc, char *argv[]) > >> { > >>     for (int i =

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread Kevin Schnitzius via Cygwin
On Monday, October 14, 2024 at 05:19:27 PM EDT, jeff via Cygwin wrote: > jdeifik@epyc-milan-64 /cygdrive/k > $ testx one two thee My brother in Posix, For the love all that is sustainable, take . out of your path. Kevin -- Problem reports: https://cygwin.com/problems.html FAQ:

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread jeff via Cygwin
On 10/15/2024 03:48, Takashi Yano wrote: On Mon, 14 Oct 2024 14:18:04 -0700 jeff via Cygwin wrote: I have a test case. this is test.c: #include int    main(int argc, char *argv[]) {     for (int i = 0; i < argc; i++)     printf("%s\n", argv[i]); } compiled with gcc test.c -o testx.exe

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-15 Thread Takashi Yano via Cygwin
On Mon, 14 Oct 2024 14:18:04 -0700 jeff via Cygwin wrote: > I have a test case. > > this is test.c: > #include > int    main(int argc, char *argv[]) > { >     for (int i = 0; i < argc; i++) >     printf("%s\n", argv[i]); > } > > compiled with gcc test.c -o testx.exe > > when run from window

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-14 Thread jeff via Cygwin
I have a test case. this is test.c: #include int    main(int argc, char *argv[]) {     for (int i = 0; i < argc; i++)     printf("%s\n", argv[i]); } compiled with gcc test.c -o testx.exe when run from windows terminal: testx one two three testx one two three when run from cygwin bash shell an

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-14 Thread jeff via Cygwin
fresh install today. The problem still persists. I am including the source for lines.cpp, though not all the libraries needed to build it. Any ideas? Please provide full reproducible test case as well as steps to reproduce. It is a bit too complicated to have a reproducible test case. It does seem

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-14 Thread Takashi Yano via Cygwin
gt;> > >> jdeifik@epyc-milan-64 /cygdrive/k/pw-crack/fred_john/run > >> $ lines john.conf > >> > >> jdeifik@epyc-milan-64 /cygdrive/k/pw-crack/fred_john/run > >> $ > >> logout > >> > >> I thought the behavior odd, so I removed cygwin, and I d

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-14 Thread jeff via Cygwin
jdeifik@epyc-milan-64 /cygdrive/k/pw-crack/fred_john/run $ lines john.conf jdeifik@epyc-milan-64 /cygdrive/k/pw-crack/fred_john/run $ logout I thought the behavior odd, so I removed cygwin, and I did a fresh install today. The problem still persists. I am including the source for lines.cpp

Re: fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-14 Thread Takashi Yano via Cygwin
  4505  21585 131785 john.conf > > jdeifik@epyc-milan-64 /cygdrive/k/pw-crack/fred_john/run > $ lines john.conf > > jdeifik@epyc-milan-64 /cygdrive/k/pw-crack/fred_john/run > $ > logout > > I thought the behavior odd, so I removed cygwin, and I did a fresh > inst

fresh install, when I run a c++ program I made from a cygterm it logs out

2024-10-14 Thread jeff via Cygwin
-milan-64 /cygdrive/k/pw-crack/fred_john/run $ logout I thought the behavior odd, so I removed cygwin, and I did a fresh install today. The problem still persists. I am including the source for lines.cpp, though not all the libraries needed to build it. Any ideas? jeff Cygwin Configuration

Re: A/B install?

2024-10-03 Thread ASSI via Cygwin
Jason Pyeron via Cygwin writes: > I have been wondering if an A/B directory approach may help. > Run from Cygwin.A, update Cygwin.B, stop processes and switch A and B. > > Thoughts? You can have as many Cygwin installations on a single machine as you can tell apart and they are all independent… so

Re: cyg-x install error

2024-09-13 Thread scowles via Cygwin
4-09-13 14:02, S. Cowles via Cygwin wrote: >>>> >>>> i have a clean install of cygwin on a win11pro box.  when i install cyg-x >>>> (via https://x.cygwin.com/docs/ug/setup.html#setup-cygwin-x-installing), i >>>> get the following error: >>&g

Re: cyg-x install error

2024-09-13 Thread Brian Inglis via Cygwin
On 2024-09-13 18:06, S. Cowles via Cygwin wrote: On Fri, 13 Sep 2024, Brian Inglis via Cygwin wrote: On 2024-09-13 14:02, S. Cowles via Cygwin wrote: i have a clean install of cygwin on a win11pro box.  when i install cyg-x (via https://x.cygwin.com/docs/ug/setup.html#setup-cygwin-x

Re: cyg-x install error

2024-09-13 Thread S. Cowles via Cygwin
On Fri, 13 Sep 2024, Brian Inglis via Cygwin wrote: On 2024-09-13 14:02, S. Cowles via Cygwin wrote: i have a clean install of cygwin on a win11pro box. when i install cyg-x (via https://x.cygwin.com/docs/ug/setup.html#setup-cygwin-x-installing), i get the following error: Package

Re: cyg-x install error

2024-09-13 Thread Brian Inglis via Cygwin
On 2024-09-13 14:02, S. Cowles via Cygwin wrote: i have a clean install of cygwin on a win11pro box.  when i install cyg-x (via https://x.cygwin.com/docs/ug/setup.html#setup-cygwin-x-installing), i get the following error: Package:  _/xinit     xinit.sh exit code 3 Where are you seeing

cyg-x install error

2024-09-13 Thread S. Cowles via Cygwin
i have a clean install of cygwin on a win11pro box. when i install cyg-x (via https://x.cygwin.com/docs/ug/setup.html#setup-cygwin-x-installing), i get the following error: Package: _/xinit xinit.sh exit code 3 the result of the error is no access to any cyg-x apps via start menu

Re: A/B install?

2024-08-31 Thread Doug Henderson via Cygwin
On Sat, Aug 31, 2024 at 4:51 PM Andrey Repin via Cygwin wrote: > > Greetings, Jason Pyeron! > > > Sad to admit, but I have not updated Cygwin in a very long time. > > > It takes a very long (more than an hour) time to update Cygwin due to the > > amount of items installed. … Sorry if I mention s

Re: A/B install?

2024-08-31 Thread Andrey Repin via Cygwin
Greetings, Jason Pyeron! > Sad to admit, but I have not updated Cygwin in a very long time. > It takes a very long (more than an hour) time to update Cygwin due to the > amount of items installed. I have not had the luxury of nor running Cygwin > processes in that update time. > I have been won

Re: A/B install?

2024-08-29 Thread Eliot Moss via Cygwin
On 8/28/2024 8:14 PM, Jason Pyeron via Cygwin wrote: Sad to admit, but I have not updated Cygwin in a very long time. It takes a very long (more than an hour) time to update Cygwin due to the amount of items installed. I have not had the luxury of nor running Cygwin processes in that update ti

A/B install?

2024-08-28 Thread Jason Pyeron via Cygwin
Sad to admit, but I have not updated Cygwin in a very long time. It takes a very long (more than an hour) time to update Cygwin due to the amount of items installed. I have not had the luxury of nor running Cygwin processes in that update time. I have been wondering if an A/B directory approach

Re: setup: --prune-install appears to be broken

2024-07-21 Thread Jon Turney via Cygwin
On 20/06/2024 14:36, David McFarland via Cygwin wrote: Sorry for the delay in replying to this. If I do a base install to a new root: setup-x86_64.exe --root "$(cygpath -wa .cygtest)" --no-admin \ --no-shortcuts --no-replaceonreboot --no-version-check \ --pru

Re: setup: --prune-install appears to be broken

2024-06-25 Thread David McFarland via Cygwin
> You are misunderstanding what prune-install does: it ensures that only > the exact list of groups/packages that you give it for installation > (plus their dependencies) is installed when it finishes and you > literally said you want to end up with no packages at all. That

Re: setup: --prune-install appears to be broken

2024-06-20 Thread ASSI via Cygwin
David McFarland via Cygwin writes: > If I do a base install to a new root: > > setup-x86_64.exe --root "$(cygpath -wa .cygtest)" --no-admin \ > --no-shortcuts --no-replaceonreboot --no-version-check \ > --prune-install --verbose > > And then ru

setup: --prune-install appears to be broken

2024-06-20 Thread David McFarland via Cygwin
If I do a base install to a new root: setup-x86_64.exe --root "$(cygpath -wa .cygtest)" --no-admin \ --no-shortcuts --no-replaceonreboot --no-version-check \ --prune-install --verbose And then run the same install again, I get: libsolv: orphaned packages:

Re: Cygwin setup-x86_64.exe cannot install into UNC paths...

2024-05-27 Thread Andrey Repin via Cygwin
Greetings, Roland Mainz! > I tried to install Cygwin on a network share using the UNC path name Very. Bad. Idea. > (e.g. \\derfwnb4966_ipv4@2049\nfs4\storagetek\cygwintest001\), but got > this response: "The install directory must be absolute, with both a > drive letter and le

Re: Cygwin setup-x86_64.exe cannot install into UNC paths...

2024-05-27 Thread Roland Mainz via Cygwin
On Mon, May 27, 2024 at 1:11 PM Roland Mainz wrote: > I tried to install Cygwin on a network share using the UNC path name > (e.g. \\derfwnb4966_ipv4@2049\nfs4\storagetek\cygwintest001\), but got > this response: "The install directory must be absolute, with both a > drive l

Cygwin setup-x86_64.exe cannot install into UNC paths...

2024-05-27 Thread Roland Mainz via Cygwin
Hi! I tried to install Cygwin on a network share using the UNC path name (e.g. \\derfwnb4966_ipv4@2049\nfs4\storagetek\cygwintest001\), but got this response: "The install directory must be absolute, with both a drive letter and leading slash, like C:\Cygwin" ... ... is it p

install error: xinit.sh exit code 3

2024-05-13 Thread Harry Rockefeller via Cygwin
I don't use those two Cygwin-X shortcuts that failed to be created by mkshortcut when /etc/postinstall/xinit.sh tried to do that. I commented out those two lines near the end of xinit.sh. I hope that has no unwanted side effect(s). -- Problem reports: https://cygwin.com/problems.html FAQ:

Re: Problem with pyNFFT install

2024-02-27 Thread marco atzeri via Cygwin
On Tue, Feb 27, 2024 at 11:17 AM natan_b--- via Cygwin wrote: > > Hi Guy, > > I've a problem to install pyNFFT with python3.9 -m pip install pyNFFT > > I ask if possible to install 3.11 python version > It was on the TODO list, but I was hit by the failed upgrade from 3

Problem with pyNFFT install

2024-02-27 Thread natan_b--- via Cygwin
Hi Guy, I've a problem to install pyNFFT with python3.9 -m pip install pyNFFT The 4 version 1.2.3, 1.3.0, 1.3.1, 1.3.2 eject different error: 1.2.3, 1.3.0 and 1.3.1 --> ModuleNotFoundError: No module named 'Cython' Cython 0.29.23 is present!?!? 1.3.2 seems works,

Re: Cygwin installer hangs when running post-install scripts

2024-02-20 Thread Corinna Vinschen via Cygwin
On Feb 20 10:33, Kevin Ushey via Cygwin wrote: > Hi Corinna, > > I just updated > https://gist.github.com/kevinushey/cdbd15cdf22e5cdcd094b0ad80347dce > with that output (windbg-output-2.txt); let me know if that gives you > what you need. Thank you! Not sure I'll follow up on this, ARM64 assemb

Re: Cygwin installer hangs when running post-install scripts

2024-02-20 Thread Kevin Ushey via Cygwin
Hi Corinna, I just updated https://gist.github.com/kevinushey/cdbd15cdf22e5cdcd094b0ad80347dce with that output (windbg-output-2.txt); let me know if that gives you what you need. As an aside, a new version of the Windows Insider edition was just released, and the memory addresses for the stubs

Re: Cygwin installer hangs when running post-install scripts

2024-02-19 Thread Corinna Vinschen via Cygwin
Hi Kevin, On Feb 15 20:13, Corinna Vinschen via Cygwin wrote: > On Feb 15 09:46, Kevin Ushey via Cygwin wrote: > > https://gist.github.com/kevinushey/cdbd15cdf22e5cdcd094b0ad80347dce. > [...] > 0001`802b7054 db030094 bl ntdll!#RtlpReferenceCurrentDirectory > (1802b7fc0) I'm not famili

Re: Cygwin installer hangs when running post-install scripts

2024-02-15 Thread Corinna Vinschen via Cygwin
On Feb 15 09:46, Kevin Ushey via Cygwin wrote: > Thanks -- I've put the associated WinDbg output up at > https://gist.github.com/kevinushey/cdbd15cdf22e5cdcd094b0ad80347dce. > (Sharing it externally just because it's relatively large.) Thank you! > The important thing to note is that #RtlGetCurre

Re: Cygwin installer hangs when running post-install scripts

2024-02-15 Thread Kevin Ushey via Cygwin
in the bytes of > > the address to be jumped to; > > That's it. Chances are high that the above ntdll code was always more > or less the same and find_fast_cwd_pointer() failed all the time. Only, > it never found the "e8" and so nothing bad happened. > > So, as lon

Re: Cygwin installer hangs when running post-install scripts

2024-02-15 Thread Corinna Vinschen via Cygwin
quot;e8" and so nothing bad happened. So, as long as we don't know how to fix this correctly, my patch 4e77fa9b8bf4 ("Cygwin: find_fast_cwd: don't run assembler checking code on ARM64") seems the right thing to do. What annoys me is that I don't have access to ARM64 myse

Re: pip install ocassionally hangs

2024-02-15 Thread Marco Atzeri via Cygwin
o propose upgrade to 3.9.18 Hi Daniel, I have not forgot the issue, I can replicate the issue and running as $ PYTHONUNBUFFERED=1 PYTHONVERBOSE=1 pip3 install --force jenkins_job_builder==5.0.4 it goes a bit further, but at the end stop again It seems some type of race on 3.9.18 (both -1 and -2,

Re: Cygwin installer hangs when running post-install scripts

2024-02-14 Thread Kevin Ushey via Cygwin
Thanks for your patience. Here's what I've got for the assembly around get_dir. I added a bit of debug logging just so I could get the function addresses: C:\cygwin\bin>cygpath get_dir = 0x7FFB85E251B0 rcall = 0x7FFB85E251CB And here's what WinDbg reports: ntdll!EXP+#RtlGetCurrentDirectory_U

Re: Cygwin installer hangs when running post-install scripts

2024-02-14 Thread Corinna Vinschen via Cygwin
On Feb 14 10:52, Corinna Vinschen via Cygwin wrote: > On Feb 13 15:48, Kevin Ushey via Cygwin wrote: > > Here's a bit more information from a debug build of cygwin; here I'm > > just trying to launch cygpath.exe: > > > > (gdb) f 1 > > #1 0x7ffa0123ba1f in find_fast_cwd_pointer () at > > ../..

Re: Cygwin installer hangs when running post-install scripts

2024-02-14 Thread Corinna Vinschen via Cygwin
On Feb 13 15:48, Kevin Ushey via Cygwin wrote: > Here's a bit more information from a debug build of cygwin; here I'm > just trying to launch cygpath.exe: > > (gdb) f 1 > #1 0x7ffa0123ba1f in find_fast_cwd_pointer () at > ../../../../winsup/cygwin/path.cc:4526 > 4526 const uint8_t *lock

Re: Cygwin installer hangs when running post-install scripts

2024-02-13 Thread Kevin Ushey via Cygwin
Here's a bit more information from a debug build of cygwin; here I'm just trying to launch cygpath.exe: (gdb) f 1 #1 0x7ffa0123ba1f in find_fast_cwd_pointer () at ../../../../winsup/cygwin/path.cc:4526 4526 const uint8_t *lock = (const uint8_t *) (gdb) bt #0 memmem (haystack=, hs_len=,

Re: Cygwin installer hangs when running post-install scripts

2024-02-13 Thread Corinna Vinschen via Cygwin
On Feb 13 10:01, Kevin Ushey via Cygwin wrote: > On Tue, Feb 13, 2024 at 8:25 AM Corinna Vinschen wrote: > > On Feb 13 11:09, Corinna Vinschen via Cygwin wrote: > > > Other than that, the only thing you really could do at this point is to > > > check Cygwin's find_fast_cwd_pointer() function and go

Re: Cygwin installer hangs when running post-install scripts

2024-02-13 Thread Kevin Ushey via Cygwin
Hi Corinna, Thank you for taking a look so quickly -- I can confirm your patch fixes things for me; the installer now runs to completion and the Cygwin64 Terminal + other installed tools all function correctly. Best, Kevin On Tue, Feb 13, 2024 at 8:25 AM Corinna Vinschen wrote: > > On Feb 13 11

Re: Cygwin installer hangs when running post-install scripts

2024-02-13 Thread Corinna Vinschen via Cygwin
On Feb 13 11:09, Corinna Vinschen via Cygwin wrote: > On Feb 12 14:38, Kevin Ushey via Cygwin wrote: > > For reference, I first bumped into this when using Git Bash as bundled > > with Git for Windows, but it sounds like the underlying issue may be > > in Cygwin. See https://github.com/git-for-wind

Re: Cygwin installer hangs when running post-install scripts

2024-02-13 Thread Corinna Vinschen via Cygwin
On Feb 12 14:38, Kevin Ushey via Cygwin wrote: > Hello, > > I'm seeing an issue when attempting to install Cygwin where the > installer hangs while trying to run postinstall scripts (more > specifically, /etc/postinstall/0p_000_autorebase.dash). When the hang > occurs, I s

Cygwin installer hangs when running post-install scripts

2024-02-12 Thread Kevin Ushey via Cygwin
Hello, I'm seeing an issue when attempting to install Cygwin where the installer hangs while trying to run postinstall scripts (more specifically, /etc/postinstall/0p_000_autorebase.dash). When the hang occurs, I see a 'dash.exe' process chewing up 100% of a CPU. If I attach to t

Re: Trying to install on 2008 r2 server

2024-02-09 Thread Peter A. Castro via Cygwin
On Fri, Feb 09, 2024 at 06:45:25PM -0500, Cygwin List wrote: Greetings, "Two Bits" :) > Seems I just missed the window for this to be easy. I am trying to install > cygwin on an > old sbs server so I can run some stuff to migrate some things off of it. I > only have s

Trying to install on 2008 r2 server

2024-02-09 Thread Two Bits via Cygwin
I see the copy and paste through this system where I had to do mark and copy on the older command line dropped the trailing 5 after posting this, so that should fix the issue, sorry for the post, but I do not see how to delete it. -- Problem reports: https://cygwin.com/problems.html FAQ:

Trying to install on 2008 r2 server

2024-02-09 Thread Two Bits via Cygwin
Seems I just missed the window for this to be easy. I am trying to install cygwin on an old sbs server so I can run some stuff to migrate some things off of it. I only have slow rds access. I read through the stuff on the cygwin page and it seems to say that setup-x86_64.exe -X --allow

Re: ca-certificates.sh cannot install?

2024-02-08 Thread Lester Ingber via Cygwin
Today, I installed the latest setup (2.930) and saw ca-ceterificates in the list to be installed -- on just my my wife's PC which does not have that installed yet, as I have noted in quite a few previous messages here. I went through that install, but I still see: Package: _/ca-certificat

Re: ca-certificates.sh cannot install?

2024-02-05 Thread Lester Ingber via Cygwin
Brian: I did what you suggested: Microsoft Windows [Version 10.0.22631.3007] (c) Microsoft Corporation. All rights reserved. C:\cygwin64\home\ingber> C:\cygwin64\home\ingber> -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation:

Re: ca-certificates.sh cannot install?

2024-02-04 Thread Brian Inglis via Cygwin
On 2024-02-03 17:23, Lester Ingber via Cygwin wrote: Apparently, I do not have permissions to send attachments?? $ cmd | tee log /dev/clipboard OR $ cat log > /dev/clipboard then paste into body of email. -- Take care. Thanks, Brian Inglis Calgary, Alberta, Canada La perfectio

Re: ca-certificates.sh cannot install?

2024-02-03 Thread Lester Ingber via Cygwin
Apparently, I do not have permissions to send attachments?? -- 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

Re: ca-certificates.sh cannot install?

2024-02-02 Thread Lester Ingber via Cygwin
I added letsencrypt as you suggested. I now see: Package: _/ca-certificates-letsencrypt ca-certificates-letsencrypt.sh exit code 1 Package: _/Unknown package ca-certificates.sh exit code 1 -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ D

Re: ca-certificates.sh cannot install?

2024-02-01 Thread Brian Inglis via Cygwin
On 2024-02-01 09:31, Lester Ingber via Cygwin wrote: I just tried deleting all ca-cert... with the same negative result. We do not know what *YOU* mean by that: please *ALWAYS* copy and paste the console log or attach a command and output log as text to show what you did, what happened, and w

Re: ca-certificates.sh cannot install?

2024-02-01 Thread Brian Inglis via Cygwin
On 2024-02-01 08:40, Lester Ingber via Cygwin wrote: Yes, a Reinstall is the first thing I tried. I just tried that again after installing 3.5.0-1, with the same negative result. Presumably you are installing the latest package versions? There used to be a problem where the programs made the d

Re: ca-certificates.sh cannot install?

2024-02-01 Thread Lester Ingber via Cygwin
I just tried deleting all ca-cert... with the same negative result. -- 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

Re: ca-certificates.sh cannot install?

2024-02-01 Thread Lester Ingber via Cygwin
Yes, a Reinstall is the first thing I tried. I just tried that again after installing 3.5.0-1, with the same negative result. -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation:https://cygwin.com/docs.html Unsubscribe in

Re: ca-certificates.sh cannot install?

2024-01-31 Thread Marco Atzeri via Cygwin
On 31/01/2024 19:14, Lester Ingber via Cygwin wrote: Assuming we are still in /etc/postinstall/ I see no file with that name? that is strange. Have you tried to re-install the package ? As the AV eaten the file ? On my wife's system (the broken system) I see source ca-certificates.sh

Re: ca-certificates.sh cannot install?

2024-01-31 Thread Lester Ingber via Cygwin
Assuming we are still in /etc/postinstall/ I see no file with that name? On my wife's system (the broken system) I see source ca-certificates.sh (line is blank) On my system, I see only ca-certificates.dash.done ca-certificates.sh.done Lester -- Problem reports: https://cygwin.com/proble

Re: ca-certificates.sh cannot install?

2024-01-31 Thread Marco Atzeri via Cygwin
++ '[' -f /etc/pki/ca-trust/ca-legacy.conf -a -x /usr/bin/diff ']' ++ /usr/bin/mkdir -p /var/cache/setup/etc/pki/ca-trust ++ /usr/bin/rm -f /var/cache/setup//etc/pki/ca-trust/ca-legacy.conf.diff ++ /usr/bin/diff -wut /etc/pki/ca-trust/ca-legacy.conf /etc/defaults/etc/pki/ca-trust/ca-lega

Re: ca-certificates.sh cannot install?

2024-01-31 Thread Lester Ingber via Cygwin
The outcome is 1. Lester -- 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

Re: ca-certificates.sh cannot install?

2024-01-31 Thread Marco Atzeri via Cygwin
On 31/01/2024 17:40, Lester Ingber via Cygwin wrote: I just installed the latest Cygwin on our two PCs. I was hoping this would take care of this problem, but it did not. On just one of the PCs, I see (in black): Package: _/Unknown package ca-certificates.sh exit code 1 The other PC is f

ca-certificates.sh cannot install?

2024-01-31 Thread Lester Ingber via Cygwin
I just installed the latest Cygwin on our two PCs. I was hoping this would take care of this problem, but it did not. On just one of the PCs, I see (in black): Package: _/Unknown package ca-certificates.sh exit code 1 The other PC is fine with all installations. -- Problem reports:

Re: pip install ocassionally hangs

2024-01-30 Thread Marco Atzeri via Cygwin
On 30/01/2024 12:50, Daniel Abrahamsson via Cygwin wrote: Marco Atzeri wrote: what if you downgrade to 3.9.16 ? Thank you. Yes, downgrading solves the problem. The issue is probably the same as the one reported in "python3 3.9.18-1 hanging". As I was testing this, I noticed a peculiar thing

Re: pip install ocassionally hangs

2024-01-30 Thread Daniel Abrahamsson via Cygwin
Marco Atzeri wrote: > what if you downgrade to 3.9.16 ? Thank you. Yes, downgrading solves the problem. The issue is probably the same as the one reported in "python3 3.9.18-1 hanging". As I was testing this, I noticed a peculiar thing with the Cygwin Setup. I have a script that sets up my Cyg

Re: pip install ocassionally hangs

2024-01-30 Thread Marco Atzeri via Cygwin
On 29/01/2024 17:00, Daniel Abrahamsson via Cygwin wrote: Hi, Since some time ago (perhaps a week or two), "pip install" occassionally hangs. Ctrl+C does not work. I have to kill the process via the task manager. I can reproduce the problem somewhat reliably by running: p

pip install ocassionally hangs

2024-01-29 Thread Daniel Abrahamsson via Cygwin
Hi, Since some time ago (perhaps a week or two), "pip install" occassionally hangs. Ctrl+C does not work. I have to kill the process via the task manager. I can reproduce the problem somewhat reliably by running: pip install --force jenkins_job_builder==5.0.4 This is the last thi

Re: Install Cygwin 3.5 from command line?

2024-01-04 Thread Jon Turney via Cygwin
On 03/01/2024 06:49, Dan Shelton via Cygwin wrote: Hello! Can someone give me precise instructions on how to install Cygwin 3.5 (setup.exe with Testing+Sync checkboxes selected) from the Windows command line? If I try, I only get Cygwin 3.4. What have you tried? For a fresh install, this

Install Cygwin 3.5 from command line?

2024-01-02 Thread Dan Shelton via Cygwin
Hello! Can someone give me precise instructions on how to install Cygwin 3.5 (setup.exe with Testing+Sync checkboxes selected) from the Windows command line? If I try, I only get Cygwin 3.4. -- Dan Shelton - Cluster Specialist Win/Lin/Bsd -- Problem reports: https://cygwin.com

Re: Cant install Cygwin Virt-manager that asks for library that asks for python2

2023-12-01 Thread Jānis Ķengurs via Cygwin
; > > But i want virt-manager to work in windows 10 with old package that worked and its not installing How can i install it then? > > Sorry for my terrible english... ᐧ -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documenta

Re: Cant install Cygwin Virt-manager that asks for library that asks for python2

2023-12-01 Thread Jānis Ķengurs via Cygwin
> > > > You don't need it at all to begin with. > Cygwin is a userspace library, not a kernel driver. It has access to > anything > Windows system provides the easy way. Just mount ISO in the system any way > you > like and it will be accessible to Cygwin with no hassle. > > But i need virt-manager

Re: Cygwin 3.4.9 - how to install ssh-keygen

2023-11-30 Thread Jose Isaias Cabrera via Cygwin
On Wednesday, November 29, 2023 08:03 PM, Jose Isaias Cabrera expressed: > > On Wednesday, November 29, 2023 05:46 PM, Brian Inglis expressed: > > > Great catch - Citrix is on BLODA as it tries to intercept a lot in every > > app: > [clip] > > Dirty-dirty-dirty! Citrix ;^> > > Well, it's not Citri

Re: Cygwin 3.4.9 - how to install ssh-keygen

2023-11-30 Thread Jose Isaias Cabrera via Cygwin
On Thursday, November 30, 2023 03:00 AM, Eirik Nordbrøden expressed: > > Hello > > I had problems with Cygwin SSH not working after enabling "application > protection" > in Citrix. Disabling this functionality in Citrix made Cygwin SSH start > working again. > > Eirik Nordbrøden, This was my p

Re: Cygwin 3.4.9 - how to install ssh-keygen - solved

2023-11-30 Thread Jose Isaias Cabrera via Cygwin
On Thursday, November 30, 2023 08:16 AM, Matthias--- expressed: > Hello, > > After removing Citrix and install it again without "app protection", my > segmentation fault has gone. > All is working now :) > It looks like this app protection is the reason for the seg

Re: Cygwin 3.4.9 - how to install ssh-keygen - solved

2023-11-30 Thread Matthias--- via Cygwin
Hello, After removing Citrix and install it again without "app protection", my segmentation fault has gone. All is working now :) It looks like this app protection is the reason for the segmentation fault. Thank you for all the hints and your support Matthias -- Probl

RE: Cygwin 3.4.9 - how to install ssh-keygen

2023-11-30 Thread Eirik Nordbrøden via Cygwin
broden=netnordic@cygwin.com> On Behalf Of Jose > Isaias Cabrera via Cygwin > Sent: torsdag 30. november 2023 02:03 > To: cygwin > Subject: Re: Cygwin 3.4.9 - how to install ssh-keygen > > On Wednesday, November 29, 2023 05:46 PM, Brian Inglis expressed: > > > G

Re: Cygwin 3.4.9 - how to install ssh-keygen

2023-11-29 Thread Ken Brown via Cygwin
On 11/29/2023 8:03 PM, Jose Isaias Cabrera via Cygwin wrote: On Wednesday, November 29, 2023 05:46 PM, Brian Inglis expressed: However, if I turn off the Windows Firewall, it works. So, now I have to figure that out. You need to create a firewall exception for sshd on the machine you're tryi

Re: Cygwin 3.4.9 - how to install ssh-keygen

2023-11-29 Thread Jose Isaias Cabrera via Cygwin
On Wednesday, November 29, 2023 05:46 PM, Brian Inglis expressed: > Great catch - Citrix is on BLODA as it tries to intercept a lot in every app: [clip] > Dirty-dirty-dirty! Citrix ;^> Well, it's not Citrix. I have Citrix in all my machines (work stuff) and those instances of cygwin work ok. But

Re: Cygwin 3.4.9 - how to install ssh-keygen

2023-11-29 Thread Brian Inglis via Cygwin
On 2023-11-29 15:30, René Berber via Cygwin wrote: On 11/29/2023 3:13 PM, Jose Isaias Cabrera via Cygwin wrote: [snip] --- Process 23800 loaded C:\Program Files (x86)\Citrix\ICA Client\epclient64.dll at 7ffe0007 [snip] Try getting rid of Citrix. Its the only significant difference I

Re: Cygwin 3.4.9 - how to install ssh-keygen

2023-11-29 Thread Brian Inglis via Cygwin
On 2023-11-29 14:58, Jose Isaias Cabrera wrote: On Wednesday, November 29, 2023 04:38 PM, Brian Inglis expressed: Make sure none of the ssh bits are running and add a system startup scheduled task to shut them down and perhaps also start Cygwin services e.g. $ sc queryex state= all | grep -i

Re: Cygwin 3.4.9 - how to install ssh-keygen

2023-11-29 Thread René Berber via Cygwin
On 11/29/2023 3:13 PM, Jose Isaias Cabrera via Cygwin wrote: [snip] --- Process 23800 loaded C:\Program Files (x86)\Citrix\ICA Client\epclient64.dll at 7ffe0007 [snip] Try getting rid of Citrix. Its the only significant difference I see with my working ssh trace (and all the other W

Re: Cygwin 3.4.9 - how to install ssh-keygen

2023-11-29 Thread Jose Isaias Cabrera via Cygwin
On Wednesday, November 29, 2023 04:38 PM, Brian Inglis expressed: > > Make sure none of the ssh bits are running and add a system startup scheduled > task to shut them down and perhaps also start Cygwin services e.g. > > $ sc queryex state= all | grep -i ssh jcabrera@jicman ~ $ sc queryex state=

Re: Cygwin 3.4.9 - how to install ssh-keygen

2023-11-29 Thread Eliot Moss via Cygwin
On 11/29/2023 4:13 PM, Jose Isaias Cabrera via Cygwin wrote: On Monday, November 27, 2023 02:46 AM, Matthias--- expressed: Am Sonntag, dem 26.11.2023 um 12:21 -0700 schrieb Brian Inglis via Cygwin: On 2023-11-26 10:12, Matthias--- via Cygwin wrote: Am Samstag, dem 25.11.2023 um 19:45 +0100 sc

Re: Cygwin 3.4.9 - how to install ssh-keygen

2023-11-29 Thread Brian Inglis via Cygwin
On 2023-11-29 14:13, Jose Isaias Cabrera via Cygwin wrote: On Monday, November 27, 2023 02:46 AM, Matthias--- expressed: Am Sonntag, dem 26.11.2023 um 12:21 -0700 schrieb Brian Inglis via Cygwin: On 2023-11-26 10:12, Matthias--- via Cygwin wrote: Am Samstag, dem 25.11.2023 um 19:45 +0100 schr

Re: Cygwin 3.4.9 - how to install ssh-keygen

2023-11-29 Thread Jose Isaias Cabrera via Cygwin
On Monday, November 27, 2023 02:46 AM, Matthias--- expressed: > > Am Sonntag, dem 26.11.2023 um 12:21 -0700 schrieb Brian Inglis via Cygwin: > > On 2023-11-26 10:12, Matthias--- via Cygwin wrote: > > > Am Samstag, dem 25.11.2023 um 19:45 +0100 schrieb ASSI via Cygwin: > > > > Matthias--- via Cygwin

Re: Cygwin 3.4.9 - how to install ssh-keygen

2023-11-28 Thread Brian Inglis via Cygwin
support for the SSE2 instructions set) Browser: Internet Explorer 11 or newer Additional requirements To install, you’ll need administrator rights, an internet connection, and a web browser. For automatic antivirus updates and optimal malware detection, you’ll need an internet connection&q

Re: Cygwin 3.4.9 - how to install ssh-keygen

2023-11-26 Thread Matthias--- via Cygwin
Am Sonntag, dem 26.11.2023 um 12:21 -0700 schrieb Brian Inglis via Cygwin: > On 2023-11-26 10:12, Matthias--- via Cygwin wrote: > > Am Samstag, dem 25.11.2023 um 19:45 +0100 schrieb ASSI via Cygwin: > > > Matthias--- via Cygwin writes: > > > > Yes - That's the reason in my VM too: > > > >     strac

Re: Cygwin 3.4.9 - how to install ssh-keygen

2023-11-26 Thread Marco Atzeri via Cygwin
On 20.11.2023 23:41, Lee via Cygwin wrote: On Mon, Nov 20, 2023 at 11:54 AM Matthias wrote: Unfortunately I can't find ssh-keygen in the installable packages. Howto install ssh-keygen or how to create hostkeys? The easy way to see if it's already installed $ which ssh-keygen

  1   2   3   4   5   6   7   8   9   10   >