active questions tagged cygwin - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T16:04:58Zhttp://stackoverflow.com/feeds/tag/cygwinhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1803701/cygwin-tab-completion0cygwin tab completionmichelle2009-11-26T13:35:11Z2009-11-29T17:11:27Z
<p>how can a complete novice such as myself set up her cygwin to have tab completion?</p>
<p>edit:
I do have it automatically. but It does not seem to complete paths. how do I set it up to complete paths?</p>
<p>thanks!</p>
http://stackoverflow.com/questions/1814903/running-fork2-from-windows-with-cygwin-possible2Running fork(2) from Windows with Cygwin. Possible?picardo2009-11-29T07:25:16Z2009-11-29T08:08:12Z
<p>Hi, </p>
<p>I am trying to use a Ruby gem called shotgun that requires fork(2) command which I discovered is aa Linux command, and might be available in Cygwin. Is it possible to make it available through Windows command shell? </p>
http://stackoverflow.com/questions/874328/ansi-color-support-using-groovy-on-windows-xp0ANSI color support using Groovy on Windows XPPeter2009-05-17T10:32:50Z2009-11-26T02:00:03Z
<p>Trying out the examples found on <a href="http://pleac.sourceforge.net/pleac%5Fgroovy/userinterfaces.html" rel="nofollow">pleac.sf.net</a>, I'm not able to get an example of ANSI colors to work on my WinXP box (Works fine on MacOS). What I've found is that on my WinXP machine, in both cygwin & DOS prompts, <strong><code>groovysh --color</code></strong> (and <strong>'groovysh --terminal=unix'</strong>) shows escape codes rather than the expected colored prompt. <strong><code>grep --color</code></strong> works just fine in the cygwin terminal. I can't find anything obvious that I'm doing wrong. Any ideas?</p>
<p><strong>Note:</strong> I'm using Groovy 1.6.0</p>
<p><strong>Update:</strong> I've tried adding ANSI.sys to my config.nt mentioned here <a href="http://www.nabble.com/-groovy-dev--New-groovysh-interactive-command-line-console-for-Groovy-td12288120.html#a12295707" rel="nofollow">Groovy-dev Mailing List</a> but it didn't fix the problem (tried rebooting too).</p>
http://stackoverflow.com/questions/1778518/not-able-to-create-repository1Not able to create repositoryRPK2009-11-22T12:05:47Z2009-11-25T22:18:33Z
<p>I installed GIT and Cygwin GIT client. When command window opens, and $ prompt appears, I type in:</p>
<p>Git Init</p>
<p>It says:</p>
<p>Baash: Command not found.</p>
http://stackoverflow.com/questions/84269/using-component-object-model-com-on-non-microsoft-platforms3Using Component Object Model (COM) on non-Microsoft platformsDrYak2008-09-17T15:10:00Z2009-11-25T14:18:16Z
<p>I'm regularly running into similar situations :
I have a bunch of COM .DLLs (no IDL files) which I need to use and invoke to be able to access some foreign (non-open, non-documented) data format.</p>
<p>Microsoft's Visual Studio platform has very nice capabilities to import such COM DLLs and use them in my project (Visual C++'s #import directive, or picking and adding them using Visual Basic .NET's dialogs) - and that's the vendors recommended way to use them.</p>
<p>I would be interested into finding a way to use those DLLs on non-microsoft development platforms. Namely, using these COM classes in C++ project compiled with MinGW or Cygwin, or even Wine's GCC port to linux (compiles C++ targeting Win32 into binary running natively on Linux).</p>
<p>I have got some limited success using <a href="http://www.codeproject.com/KB/COM/comdispatchdriver.aspx" rel="nofollow">this</a> driver, but this isn't successful in 100% of situations (I can't use COM objects returned by some methods).</p>
<p>Has someone had success in similar situations ?</p>
http://stackoverflow.com/questions/1795512/cygwin-version-of-idle-has-erroneous-i-o-handling1cygwin version of idle has erroneous I/O handlingunknown (yahoo)2009-11-25T08:49:56Z2009-11-25T08:49:56Z
<p>I'm using idle (python 2.5) via cygwin on a windows vista machine and when I try to open an already existing .py file I see the full file path</p>
<p>/home/aaron/C:/cygwin/home/aaron/script.py</p>
<p>on the banner of the freshly openned file window when I expect simply</p>
<p>/home/aaron/script.py</p>
<p>In addition, the file appears blank which makes sense...basically idle is opening up a nonexistent file in some fictitious path. So what is causing the problem and how to fix? Anyone?</p>
http://stackoverflow.com/questions/1789064/trying-to-get-a-terminal-to-work-in-emacs2Trying to get a terminal to work in Emacs...mduvall2009-11-24T09:57:42Z2009-11-25T01:38:02Z
<p>Hi so,
I've been having a lot of problems with emacs and trying to get the terminal to work with:</p>
<pre><code> M-x term
</code></pre>
<p>I installed cygwin and I fixed up my .emacs to include the paths:</p>
<pre><code> (setenv "PATH" (concat "c:/cygwin/bin;" (getenv "PATH")))
(setq exec-path (cons "c:/cygwin/bin" exec-path))
(require 'cygwin-mount)
(cygwin-mount-activate)
(add-hook 'comint-output-filter-functions
'shell-strip-ctrl-m nil t)
(add-hook 'comint-output-filter-functions
'comint-watch-for-password-prompt nil t)
(setq explicit-shell-file-name "bash.exe")
;; For subprocesses invoked via the shell
;; (e.g., "shell -c command")
(setq shell-file-name explicit-shell-file-name)
</code></pre>
<p>However now when I launch terminal, it seems to give nothing but a blank screen and "hang"</p>
<p>When I launch:</p>
<pre><code> M-x shell
</code></pre>
<p>It does indeed launch the bash shell and flying around the file directories is okay (with cd, ls, cp, rm, etc.). However, when I do something like try to open up a Python shell, it again hands, and I type in ... and the shell crashes. Is there anything significantly wrong with what I am doing or perhaps somebody could direct me towards solutions online? (I've looked quite extensively.)</p>
<p>SSH also gives the error:</p>
<p>"Pseudo-terminal will not be allocated because stdin is not a terminal."</p>
http://stackoverflow.com/questions/1350380/problems-using-stl-stdtransform-from-cygwin-g0problems using STL std::transform from cygwin g++Pradyot2009-08-29T03:43:01Z2009-11-23T19:47:29Z
<p>I am running g++(gcc version 3.4.4) on cygwin.</p>
<p>I can't get this small snippet of code to compile. I included the appropriate headers.</p>
<pre><code>int main(){
std::string temp("asgfsgfafgwwffw");
std::transform(temp.begin(),
temp.end(),
temp.begin(),
std::toupper);
std::cout << "result:" << temp << std::endl;
return 0;
}
</code></pre>
<p>I have not had any issues using STL containers such as vector.
Does anyone have any suggestions or insights into this situation.
Thanks.</p>
http://stackoverflow.com/questions/520865/has-anyone-installed-mysqldb-for-python-on-cygwin0Has anyone installed MySQLDB for Python on Cygwin?Ben2009-02-06T16:01:35Z2009-11-23T19:19:45Z
<p>Hi,</p>
<p>I'm trying to install MySQLDB for python on Cygwin. Unfortunately, when I run python setup.py build, I get the following error:</p>
<pre><code>$ python setup.py build
/bin/sh: /usr/local/bin/mysql_config: No such file or directory
Traceback (most recent call last):
File "setup.py", line 16, in <module>
metadata, options = get_config()
File "/home/Ben/python/MySQL-python-1.2.2/setup_posix.py", line 43, in get_config
libs = mysql_config("libs_r")
File "/home/Ben/python/MySQL-python-1.2.2/setup_posix.py", line 24, in mysql_config
raise EnvironmentError, "%s not found" % mysql_config.path
EnvironmentError: /usr/local/bin/mysql_config not found
</code></pre>
<p>Clearly I don't have mysql_config installed, which I guess is the problem. This is mentioned in the README for MySQLDB, but it doesn't explain how to either get around it or how to install mysql_config.</p>
<p>So maybe this is as easy as: How can I install mysql_config for Cygwin?</p>
<p>Or maybe it's harder than that.</p>
<p>FYI: I have python 2.5.2 and MySQL 5.1.30, running under Cygwin.</p>
<p>Thanks,</p>
<p>Ben</p>
http://stackoverflow.com/questions/1785265/piping-cygwin-into-a-python-program0Piping Cygwin into a Python programZaidman2009-11-23T19:03:18Z2009-11-23T19:17:57Z
<p>Hello guys,
As a i'm new to the whole Piping thing and Python I had recently encountered a problem trying to pipe Cygwin's stdin & stdout into a python program usin Python's subprocess moudle.
for example I took a simple program:</p>
<pre><code>cygwin = subprocess.Popen('PathToCygwin',shell=False,stdin=subprocess.PIPE,stdout=subprocess.PIPE)
cygwin.stdin.write('ssh')
</code></pre>
<p>After that I'm getting this error:</p>
<pre><code>cygwin.stdin.write('ssh')
IOError: [Errno 22] Invalid argument
</code></pre>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1287728/unable-to-accumulate-time-using-gprof-the-gnu-profiler1unable to accumulate time using gprof - the gnu profilerunknown (google)2009-08-17T12:36:34Z2009-11-23T16:04:59Z
<p>I am running cygwin on windows and using latest version of gprof for profiling my code. My problem is that the flat profile shows zero sec for each of the functions in my code, I even tried to loop the functions(tried a for loop for a million) but gprof is unable to accumulate any time .Please help . Here is one of my sample function.</p>
<pre><code>bool is_adjacent(const char* a ,const char* b)
{
for(long long iter=0;iter<=1000000;iter++){
string line1="qwertyuiop";
string line2="asdfghjkl";
string line3="zxcvbnm";
string line4="1234567890";
int pos=line1.find(*a);
if(pos!=string::npos){
if ((line1[pos++]==*b)||((pos!=0)&&(line1[pos--]==*b)))
return true;
else return false;}
pos=line2.find(*a);
if(pos!=string::npos){
if ((line2[pos++]==*b)||((pos!=0)&&(line2[pos--]==*b)))
return true;
else return false;}
pos=line3.find(*a);
if(pos!=string::npos){
if ((line3[pos++]==*b)||((pos!=0)&&(line3[pos--]==*b)))
return true;
else return false;}
pos=line4.find(*a);
if(pos!=string::npos){
if ((line4[pos++]==*b)||((pos!=0)&&(line4[pos--]==*b)))
return true;
else return false;}
}
}
</code></pre>
http://stackoverflow.com/questions/1751615/cvs-log-file-editor-issue0CVS log file editor - issuesinec2009-11-17T20:40:37Z2009-11-23T15:02:03Z
<p>Hi, </p>
<p>I'm encountering some problems recently with CVS.
When executing commit command I got following errors:</p>
<blockquote>
<p>cvs commit: cannot exec vim: No such
file or directory cvs commit: warning:
editor session failed</p>
</blockquote>
<p>This is strange since I'm since recently everything worked for me, and since I'm on Windows, the default editor should be Notepad. (Please note that only changes I made to system is that I removed Emacs version for windows and done regular Windows update few days ago.)</p>
<p>Anyway, I've tried to override issue by setting CVSEDITOR and EDITOR env variables to Notepad.
After this, Notepad is stared, but immediately I got </p>
<blockquote>
<p>"The system cannot find the path
specified"</p>
</blockquote>
<p>msg.</p>
<p>It seems that CVS create temp file but notepad can't open it (maybe wrong path is passed).</p>
<p>Either way, I'm stuck here since I don know how to test if CVS has created file or pass correct path to Notepad, so any help is more than welcome.</p>
<p>p.s. I really like how I got list of changed files at the beggining of the log file so this is the reason why I'm pursuing this:)</p>
<p>Many Thanks
-s</p>
http://stackoverflow.com/questions/1174514/set-up-gitosis-but-cant-clone1Set up Gitosis, but can't cloneTim Rupe2009-07-23T21:12:35Z2009-11-23T14:02:37Z
<p>I've set up Gitosis on a remote Ubuntu box which I will refer to as linuxserver as my host in the following commands. I'm also connecting from a Windows box using Cygwin.</p>
<p>I followed the instructions according to: <a href="http://scie.nti.st/2007/11/14/hosting-git-repositories-the-easy-and-secure-way" rel="nofollow">http://scie.nti.st/2007/11/14/hosting-git-repositories-the-easy-and-secure-way</a></p>
<p>I had no problems up until I needed to clone the gitosis-admin repository to my local machine</p>
<pre><code>git clone git@linuxserver:gitosis-admin.git
</code></pre>
<p>When I do this, the command executes, but hangs there displaying nothing until I ctrl-c to get back to a command prompt. No messages are displayed at all.</p>
<p>I'm pretty sure I have my ssh keys set up properly, because logging in using "ssh linuxserver" into my regular account works perfectly without asking for a password.</p>
<p><strong>Edit:</strong> Over the weekend I set up a near identical Ubuntu box at home, and had no problem setting up Gitosis. The only difference was that I was connecting from OSX instead of Cygwin.</p>
<p><strong>Edit:</strong> I've also discovered that when using the Bash Shell provided with "Git Extensions", I have no problems, so the issue definitely seems to be some kind of Cygwin conflict.</p>
http://stackoverflow.com/questions/1777556/alternatives-to-gprof2Alternatives to gprofPhenom2009-11-22T02:05:28Z2009-11-23T02:02:15Z
<p>What other programs do the same thing as gprof?</p>
http://stackoverflow.com/questions/1779247/how-to-add-gdb-to-cygwin0how to add gdb to cygwinfiercefighter2009-11-22T16:56:19Z2009-11-22T16:58:57Z
<p>hi friends,how to add gdb to cygwin.I havw downloaded gdb tar package for cygwin from sourceforge.On extracting iot there are many files ,I pasted the gdb.exe file from the package in the bin folder of cygwin however its not working</p>
http://stackoverflow.com/questions/771756/what-is-the-difference-between-cygwin-and-mingw16What is the difference between cygwin and mingw?Ćukasz Lew2009-04-21T09:16:37Z2009-11-22T15:25:16Z
<p>I want to make my C++ project cross platform, and I'm considering using cygwin/mingw.
But what is the difference between them?
Another question is whether I will be able to run the binary on a system without sygwin/mingw?</p>
http://stackoverflow.com/questions/1777340/using-find-to-find-files1Using find to find files [closed]Phenom2009-11-22T00:39:30Z2009-11-22T02:52:57Z
<p>If I'm in the root directory, can I use find to search all the directories below it for a file?</p>
<p>I tried find stdio.h but it didn't find anything. However I know that that file is in the filesystem somewhere. How do I find it?</p>
http://stackoverflow.com/questions/1777604/how-to-use-gmon-out-besides-gprof-1How to use gmon.out besides gprof?Phenom2009-11-22T02:21:20Z2009-11-22T02:35:00Z
<p>What programs use gmon.out?</p>
http://stackoverflow.com/questions/1777397/rtldnext-undeclared0'RTLD_NEXT' undeclaredPhenom2009-11-22T01:06:15Z2009-11-22T02:18:45Z
<p>I'm trying to compile a C program but I get the error 'RTLD_NEXT' undeclared. I think this is supposed to be defined in dlfcn.h which the c program includes, but when I looked inside dlfcn.h there is no RTLD_NEXT.</p>
<p>How do I fix this?</p>
http://stackoverflow.com/questions/1777279/how-to-use-locate-in-cygwin0How to use locate in cygwin [closed]Phenom2009-11-22T00:20:22Z2009-11-22T00:26:23Z
<p>I'm trying to use locate to find files, but I'm not getting anything back from the program. It can't even find files that are in the current directory. How do I make locate work?</p>
http://stackoverflow.com/questions/1774700/can-i-build-a-proprietary-application-which-linked-against-to-cygwin1-dll0Can I build a proprietary application which linked against to cygwin1.dll?Allen2009-11-21T06:20:11Z2009-11-21T06:24:24Z
<p>Cygwin licensing terms said that</p>
<p>"In accordance with section 10 of the GPL, Red Hat permits programs whose sources are distributed under a license that complies with the Open Source Definition [See <a href="http://www.opensource.org/docs/osd/" rel="nofollow">http://www.opensource.org/docs/osd/</a> for the precise Open Source Definition and a list of the licenses certified by OSI as conforming to that definition] to be linked with libcygwin.a/cygwin1.dll without libcygwin.a/cygwin1.dll itself causing the resulting program to be covered by the GNU GPL."</p>
<p>So, does that mean my application can be a proprietary license?
For example, I uses cygwin to build an LGPL or BSD license library. Then I use the library to build my own application by using Cygwin GCC compiler. So, can I commercialize my application? Though my application compiled with Cygwin, but do not linked to cygwin.dll. However the library I used linked to cygwin.dll, what is the licensing effect?</p>
http://stackoverflow.com/questions/389488/compiling-minimal-glew-application-under-cygwin4Compiling minimal GLEW application under Cygwin.kelebron2008-12-23T17:17:56Z2009-11-21T03:51:36Z
<p>Let's consider the following program and try to compile it under Cygwin:</p>
<pre><code>#include <GL/glut.h>
int main(int argc, char** argv)
{
glutInit(&argc, argv);
glLoadIdentity();
}
</code></pre>
<p>It compiles and runs just fine. <code>-I/usr/include/opengl</code> seems to be terribly important.</p>
<pre><code>g++ -I/usr/include/opengl -I../include/cygwin -L../lib/cygwin test.cpp -o test.exe -lglut32 -lglu32 -lglew32 -lopengl32
</code></pre>
<p>Now,</p>
<pre><code>#include <GL/glew.h> // from newest NVIDIA SDK
#include <GL/glut.h>
int main(int argc, char** argv)
{
glewInit();
glutInit(&argc, argv);
glLoadIdentity();
}
</code></pre>
<p>compiled by</p>
<pre><code>g++ -I/usr/include/opengl -I../include/cygwin -L../lib/cygwin test.cpp -o test.exe -lglut32 -lglu32 -lglew32 -lopengl32
</code></pre>
<p>fails.
How to build the second application?</p>
<h3>First</h3>
<p>There are several ways to build glew by from NVIDIA SDK: by VS, by cygwin, by cygwin with -D_WIN32. I also tried cygwin build of original glew from source.</p>
<p>VS build gives</p>
<pre><code>/cygdrive/c/DOCUME~1/kelebron/LOCALS~1/Temp/ccErbecl.o:test.cpp:(.text+0xa8): undefined reference to `_glLoadIdentity'
collect2: ld returned 1 exit status
</code></pre>
<p>cygwin builds give many</p>
<pre><code>../lib/cygwin/glew32.lib(glew.o):glew.c:(.text+0x38e): undefined reference to `_glXGetProcAddress'
</code></pre>
<p>and cygwin with -D_WIN32 does not compile at all (I was slightly motivated by <a href="http://sourceforge.net/mailarchive/forum.php?thread_name=cd39a5a20711290045u7f1f1f15g77a148c1453d8e79%40mail.gmail.com&forum_name=glew-users" rel="nofollow">this post</a>).</p>
<h3>Second</h3>
<p>There seem to be two ways to link with OpenGL<br />
with -L/lib/w32api<br />
or with -L/usr/X11R6/lib -lX11 -lXi -lXmu</p>
<p>But, the -L directives do not change anything. I've got /usr/lib/w32api/libopengl32.a, but may be missing the X11 version (/usr/X11R6/lib/libGL?). What package should I include into Cygwin? I've installed all starting with libGL (not only...).</p>
http://stackoverflow.com/questions/1771173/is-it-possible-to-ssh-into-windows-through-a-cygwin-sshd-and-start-a-program-o2Is it possible to ssh into Windows (through a cygwin sshd) and start a program on a logged in Windows user's desktop?Atlas1j2009-11-20T15:22:57Z2009-11-20T15:36:52Z
<p>Is it possible to ssh into Windows (through a cygwin sshd) and start a program on a logged in Windows user's desktop? </p>
<p>Put another way, say a user ABC is logged in on windows and a remote user logs in with ABC's login/password over ssh, can remote ABC pop up an app on the local ABC user's desktop?</p>
<p>I am asking this on Stackoverflow and not Serverfault because the motivation for doing this is programmatic in nature. The remote call will be coming from a Linux box so while it may be possible(?) to do this using WMI or some other approach, ssh seemed like the simplest. </p>
<p>Happy to hear simpler/better alternatives though.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1766472/building-openssh-on-cygwin0Building OpenSSH on CygwinHansA2009-11-19T20:57:18Z2009-11-19T20:57:18Z
<p>I'm trying to build OpenSSH 5.1 on Cygwin. I'm using the following configure command:</p>
<pre><code>./configure --prefix=/usr --sysconfdir=/etc --libexecdir='${sbindir}' \
--localstatedir=/var --datadir='${prefix}/share' --mandir='${datadir}/man' \
--infodir='${datadir}/info'
</code></pre>
<p>The configure command runs OK, but when I try to make I get this error:</p>
<pre><code>gcc -g -O2 -Wall -Wpointer-arith -Wuninitialized -Wsign-compare -Wformat-security -fno-builtin-memset -I. -I.. -I. -
.. -DHAVE_CONFIG_H -c bsd-arc4random.c
In file included from ../openbsd-compat/openbsd-compat.h:45,
from ../includes.h:169,
from bsd-arc4random.c:17:
../openbsd-compat/getrrsetbyname.h:57:26: arpa/nameser.h: No such file or directory
../openbsd-compat/getrrsetbyname.h:59:20: resolv.h: No such file or directory
</code></pre>
<p>I'm a bit stuck. Anyone got any ideas.</p>
http://stackoverflow.com/questions/1765063/using-cygwin-to-build-srecord-for-native-windows0Using Cygwin to build srecord for native WindowsDon2009-11-19T17:26:23Z2009-11-19T17:26:23Z
<p>I'm trying to build the srecord tools for the native windows, <a href="http://srecord.sourceforge.net/windows.html" rel="nofollow">http://srecord.sourceforge.net/windows.html</a>. I execute, CC='gcc -mno-cygwin' CXX='g++ -mno-cygwin' ./configure. I get a failure as it is checking for boost libraries, see error text below. I installed the current verison of cygwin (as of 18-Nov-2009) including both the gcc and ming-gcc as well as the all boost entries I could find in the list. The configure script runs to completion with no errors if I leave off the -mno-cygwin option. I really need a native windows output not dependent on cygwin. </p>
<p>The boost header files are located in /usr/include/boost (moved from <code>/usr/include/boost-1_33_1)</code>. I also tried to putting the boost directory in the srecord-1.53 directory but I get the same error. </p>
<p>I'd appreciate any suggestions. </p>
<pre><code>Error:
checking boost/shared_ptr.hpp usability... no
checking boost/shared_ptr.hpp presence... no
checking for boost/shared_ptr.hpp... no
You need to install the Boost C++ library to be able to compile SRecord.
http://boost.org/
If you have a package based system, the package you need to
install will be called libboost-devel or something similar.
</code></pre>
http://stackoverflow.com/questions/1764131/why-doesnt-find-print0-work-in-cygwin-under-vista0Why doesn't "find -print0" work in Cygwin under Vista?Alex R2009-11-19T15:33:55Z2009-11-19T15:36:26Z
<p>I'm writing a simple shell script:</p>
<pre>find datafiles/ -type f -print0 | xargs -0 md5sum > datafiles.md5</pre>
In Cygwin under Vista, it just sits there and nothing happens.
It works fine on Linux.
What could be the problem??
fyi:
<pre>
$ find --version
find (GNU findutils) 4.4.0
Copyright (C) 2007 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Written by Eric B. Decker, James Youngman, and Kevin Dalley.
Built using GNU gnulib version e5573b1bad88bfabcda181b9e0125fb0c52b7d3b
Features enabled: O_NOFOLLOW(enabled) LEAF_OPTIMISATION FTS() CBO(level=0)
</pre>
http://stackoverflow.com/questions/1697608/cygwin-git-gitosis-unable-to-push-new-repository0Cygwin/Git/Gitosis unable to push new repositorymattdekrey2009-11-08T19:24:19Z2009-11-18T15:49:51Z
<p>I've recently set up cygwin, git, and gitosis on my Windows Server 2003 box and am having troubles. I've followed just about every tutorial I can find to the letter, and have confirmed that my git account's authorized_keys table is getting updated when I push the gitosis-admin repository. I seem to be stuck, however, when it comes to creating a new repository.</p>
<p>I've seen many tutorials that recommend the following code (obviously the repo name changes), tried in both git bash and windows command line:</p>
<pre><code>mkdir free_monkey
cd free_monkey
git init
touch README
git add .
git commit -m "Added blank readme"
git remote add origin git@my_server:free_monkey.git
git push origin master
</code></pre>
<p>When I execute the last line (no matter exactly what I send), it says "The remote end hung up unexpectedly":
$ git push -v origin master:refs/heads/master
Pushing to git@my_server:free_monkey.git
fatal: The remote end hung up unexpectedly</p>
<p>My gitosis.conf file looks like the following:</p>
<pre><code>[gitosis]
loglevel = DEBUG
[group gitosis-admin]
writable = gitosis-admin free_monkey.git free_monkey
members = git@my_server @all
</code></pre>
<p>Please let me know if I'm missing any information you need to help me debug this. Thank you!</p>
<p>One other thing that concerns me: </p>
<pre><code>$ ssh git@my_server git
DEBUG:gitosis.serve.main:Got command 'git'
ERROR:gitosis.serve.main:Unknown command denied
</code></pre>
<p>Is that maybe the problem? If so, how do I fix that? </p>
http://stackoverflow.com/questions/1753239/compile-c-with-cygwin1Compile C++ with CygwinMohit2009-11-18T02:28:34Z2009-11-18T03:54:45Z
<p>How do I compile my C++ programs in Cygwin. I have gcc installed. What command should I use? Also, how do I run my console application when it is in a .cpp extension. I am trying to learn C++ with some little programs, but in Visual C++, I don't want to have to create a seperate project for each little .cpp file.</p>
http://stackoverflow.com/questions/202405/enter-key-sometimes-not-recognized-in-windows-apps-under-cygwin2enter key sometimes not recognized in windows apps under cygwinrmeador2008-10-14T19:02:35Z2009-11-17T22:35:55Z
<p>At work, I use Cygwin a lot because it offers me a small oasis in the vast desert of Windows. I inevitably end up running some non-Cygwin programs through the bash shell, such as build scripts (batch files created in-house) and the Subversion CLI binaries (I have the Windows ones installed). 99% of the time, I don't have any problems using this setup. The other 1%, however, causes a strange issue:</p>
<p>With both the build scripts and SVN, most of the time the enter key is interpreted correctly. For instance, I'll kick off the database creation script and it will prompt me for the server name. I type in "localhost" and hit enter. Everything's fine. Then it gets to the end, if there are errors, and prints things out using <code>more</code>. No key that I press is recognized by <code>more</code>. I have to Ctrl-C out of it.</p>
<p>Similarly, if I do a Subversion update, normally everything is fine. In the case where the interactive conflict resolution happens, however, I'll usually type in "tf" for "theirs-full" and hit enter, but nothing happens. I have to Ctrl-C out of it and re-run the update with force merge or use TortoiseSVN in Windows to do it.</p>
<p>Any idea why Cygwin seems to randomly not be passing the enter key through to the programs? I considered that it may have something to do with Unix vs Windows style line endings, so I've tried typing those characters manually, but that doesn't seem to make a difference. Thanks.</p>
<p><strong>Edit</strong>: I just had this happen to me again and I realized something. It was SVN prompting me for a password. I typed in the password, which it echoed to the screen (bad) and hit enter... nothing. Hit enter a few more times, the cursor moves, but nothing happens. I hit Ctrl-C and it dumps me back to bash, which then says "bash: [my password]: command not found" followed by a number of new prompts equal to the number of times I hit the enter key. So what happened is the input never made it to SVN, but somehow got read by bash after SVN exited. I thought that may help someone figure out what is going on.</p>
http://stackoverflow.com/questions/1750388/unable-to-chdir-on-git-cygwin0Unable to chdir() on Git/Cygwininfinity2009-11-17T17:19:48Z2009-11-17T17:32:14Z
<p>Hi all,</p>
<p>I installed Git via Cygwin on Windows Server. It works out very well. However there's a small issue that when I clone a repo use the command as following:</p>
<pre><code>$git clone git@myserver:project.git
</code></pre>
<p>I always got the "unable to chdir()" message but if I typed in the full path then it works</p>
<pre><code>$git clone git@myserver:/home/git/repositories/project.git
</code></pre>
<p>Did anyone here face this problem before?</p>
<p>Regards,
TL</p>