Cygwin is a Unix-like environment and command-line interface for Microsoft Windows. Cygwin provides native integration of Windows-based applications, data, and other system resources with applications, software tools, and data of the Unix-like environment. Thus it is possible to launch Windows ...
0
votes
1answer
107 views
how to set up the psql command in cygwin?
I have a local dev site on my machine with Apache server and PostgreSQL 9.1 database. As I'm using Windows, I also installed Cygwin. I want to access to database and make some queries via Cygwin ...
3
votes
1answer
164 views
Error: Could not find or load main class - Java cygwin
Using cygwin on windows 7.
To compile all my files I do:
javac -cp ./antlr-3.2.jar *.java
which works fine. Then I try
java -cp .:./antlr-3.2.jar Interpreter
where interpreter is a .java file ...
3
votes
1answer
59 views
Is there a Cygwin version of GNU make?
Android's NDK requires both Cygwin and GNU Make. Since I already have the latest & greatest Cygwin installed, I thought that GNU Make must have already been included in it, as Cygwin is pretty ...
2
votes
1answer
913 views
ipython --pylab on cygwin: TclError: no display name and no $DISPLAY environment variable
I recently installed ipython as per instructions here: http://ardiyu07.blogspot.com/2012/04/ipython-012-installation-in-cygwin.html.
When I run 'ipython --pylab' I get the error message below. I have ...
0
votes
1answer
148 views
Windows + Cygwin + Single Line If Else + Puppet
So I have a single line bash command that checks if a directory exists. If it does, it git pulls, if it doesn't, it clones the repository. I am running a Cygwin on my Windows box and when I run this ...
1
vote
1answer
55 views
Unable to determine file creation time with perl on Windows/Cygwin
I wrote this to find out the file creation time for a given file:
#!/usr/bin/perl
use strict;
use warnings;
use File::stat;
open (my $fh, '<', "abc.txt") or die "$!";
my $t = (stat($fh))[9];
...
2
votes
0answers
43 views
How to configure hbase using cygwin?
i have configured my Hadoop in cygwin now i m trying to configure Hbase
i have made some changes in hbase-evn.sh as:
export JAVA_HOME=C:\\java\\jre
export ...
2
votes
1answer
41 views
Compiling libjpeg on Windows using cygwin?
Which is the best way to compile libjpeg on a Windows machine? Should I use Microsoft Visual Studio or can I use something else like Cygwin?
Note: when I use Cygwin and copy makefile.vc to Makefile, ...
2
votes
1answer
3k views
How to execute shutdown command from cygwin in windows
How can i execute windows shutdown command (shutdown -r) from cygwin in windows 2003 server machine?
0
votes
0answers
23 views
Getting error when connecting to MapReduce using cygwin, then running Pig
Here are the steps I've taken:
Got a key pair on EC2
Started a job flow on Elastic MapReduce
Waited until it said "WAITING" and then got the Master Public DNS name
In cygwin, typed ssh -i ...
0
votes
1answer
17 views
Counting time or cpu clicks in Cygwin
I can“t count the time of cpu processing in cygwin?Why is that?
Do I need a special command.Counting clicks in cpu is done by clock
function after including time.h!
Still, after i get it done in ...
1
vote
1answer
53 views
How can I run a win32 gui program from cygwin ssh?
I have an (nsis) installer that I am running in silent mode. I'd like to run it via ssh so that I can automatically run our test suite against the installed codebase. Unfortunately when I run the ...
3
votes
1answer
72 views
How to use Cygwin from MATLAB to execute commands in other directories?
I am using MATLAB and I want to execute some C++ programs using CYGWIN under Windows. These are within a local directory of CYGWIN; C:\cygwin\home\Alex\Community_BGLL_CPP. I can get CYGWIN to perform ...
1
vote
2answers
80 views
Set shell's working directory to the current file opened in vim
I am using Windows gVim and I am trying to invoke commands to run on cygwin's bash. It is working, but the working directory is set to $HOME every time. Would it possible to set to the current file's ...
1
vote
2answers
90 views
[: too many arguments on Cygwin Shell script
I inherited some shell scripts written to do automated performance testing without having any shell scripting knowledge. I skimmed through a few guides and played around with the language until I ...
0
votes
0answers
22 views
Cygwin console jabber client
Do there exist any cygwin console jabber clients? I've not successfully compiled any of the console clients listed here in cygwin.
2
votes
2answers
98 views
How can I echo to /dev/tty?
Is there a way to send something like an "end of data" after executing
echo "test" > /dev/tty1
in order to gain the "input cursor" back to "receiving" terminal (in this case tty1)?
Screenshot: ...
0
votes
1answer
60 views
How to get git log with color and paging on cygwin?
I'd like to have colored git logs with paging on cygwin.
I managed to get colored logs with
git log --color=always
If I do
git log --color=always | less
I get paging, but the color commands are ...
1
vote
1answer
31 views
Replacing files in one folder and all its subdirectories with modified versions in another folder
I have two folders, one called 'modified' and one called 'original'.
'modified' has no subdirectories and contains 4000 wav files each with unique names.
The 4000 files are copies of files from ...
0
votes
0answers
23 views
Is it possible that install Event::Lib within cygwin?
I wrote a perl script under ubuntu.But now I need to build an exe file for windows users.
I did these steps:
install cygwin and all 'Devel' softwares.
run 'apt-cyg install libevent-devel --mirror ...
1
vote
1answer
48 views
Can I use the environment variable %PROGRAMDATA%?
I type:
echo $USERPROFILE and get C:\Users\rob
echo $PROGRAMFILES and get C:\Program Files (x86)
echo $PROGRAMDATA and get nothing.
Under windows %PROGRAMDATA% evaluates to C:\ProgramData
Why are ...
0
votes
0answers
83 views
Opening PostgreSQL in Cygwin and MINTTY
I can't seem to open the interactive mode of PSQL using MINTTY or using the default Cygwin terminal, it just stalls under the command psql databasename and does nothing. The only way to get it to ...
3
votes
3answers
1k views
How to run windows gvim from cygwin?
I am not able to run gvim from cygwin. When I try to open a new file with :
gvim filename
gvim opens a file with 'No name' and displays error as :
Error detected while processing command line
...
4
votes
1answer
241 views
ffmpeg run from shell runs properly, but does not when called from within .NET
I'm attempting to use ffmpeg (compiled on Windows with Cygwin) in a C# program, by using the Process class to spawn an ffmpeg instance. However, I've hit a rather odd bug that doesn't make much sense.
...
1
vote
0answers
193 views
C++11 Problems with GCC 4.8 [closed]
I have started to experiment with some of the features c++11 has added to the language and I have had problems running a few simple programs.
First of all, let me describe the environment in which I ...
0
votes
0answers
92 views
Using Autohotkey for Emacs [migrated]
I am using emacs in Cygwin and have used Autohotkey to re-map the lefthand 'Alt' key and the lefthand 'Windows' key to be (left)Ctrl and (left)Alt respectively.
This means that an emacs sequence like ...
0
votes
1answer
107 views
PIG on windows XP with Cygwin
I installed PIG (0.10.0) on windows xp with Cygwin. I also set JAVA_HOME variable. But now when I run pig -help, I get "Cannot locate pig.jar. do 'ant jar', and try again". I did not install hadoop ...
1
vote
0answers
50 views
Git installed through gitosys doesn't (probably) honor HOME environment variable when run from Cygwin
I'm trying to use git from Cygwin, but here's what I see:
$ git clone ssh://git-repo/some/repository
Cloning into 'repository'...
ssh: git-repo-actual-host-name.com: no address associated with name
...
0
votes
0answers
74 views
C++ MongoDB driver in cygwin
I am trying to compile the MongoDB driver on cygwyn. This driver uses the Boost library so I installed that first making sure it works via a testscript.
But when I try to build the driver via the ...
1
vote
2answers
100 views
Trouble in Instalation of grouplens data at mahout
At the task of installation of mahout by link (http://girlincomputerscience.blogspot.com/2010/11/apache-mahout.html)
at the process of copying liberary to task-web folder .i am getting error like ...
2
votes
2answers
125 views
Groovy bootstrap error using GIT BASH on Windows 7
I am calling a git hook to pre-commit. This triggers a call to a groovy script and does so in a manner that allows for remote debugging of the hook execution. Like so:
#!/usr/bin/env groovy
groovy ...
1
vote
1answer
88 views
Installing GMP on Windows with cygwin
I am totally new to C++. I need to deal with very large integers, so I have to install GMP. I am using Cygwin (on Windows, of course).
Any documentation I can find on installing this already assumes ...
0
votes
1answer
33 views
reformating a text file
I've looked for existing answers, but am at a loss.
I need to take a plain text file:
1 - round decimals to tenths
2 - last group of numbers need to be four characters long, using zero to fill
3 - ...
0
votes
1answer
27 views
ruby (rubyinstaller) and cygwin odd behaviour with gets method inside a loop
I've been running quite a few ruby console scripts in cygwin terminal under windows xp with no problems so far using ruby 1.9.3-p28 from rubyinstaller.
All of a sudden now I'm noticing this odd ...
0
votes
0answers
96 views
Cygwin user permissions for sftp (Operation not permitted)
So, I installed Cygwin 1.7.17 on Win7, I used mkpasswd to bring in a domain user (my main admin account). I used mkpasswd again to bring in a local account I created called "ffftp".
mkpasswd -d -u ...
2
votes
4answers
8k views
Using Boost with Cygwin on Windows
This shoud be a simple problem for users more advanced than I am. :-)
How do I use the boost library with cygwin on windows?
I am programing with g++ using cygwin on a winxp machine.
I need modified ...
0
votes
1answer
52 views
how to tell which java version cgywin use?
i have cgywin and java 7 installed on window 7, also updated the system environment variable to point to the right java version, however when I run commands in cgywin, I m not sure which java it use, ...
2
votes
1answer
52 views
Installing Ephem package in Python 3
I would like to install the ephem package in my Python 3.3.0 version under Windows XP.
I tried first the pip install ephem route from the system command prompt. The process aborted with the error ...
1
vote
3answers
29 views
Putting links to scripts in my cygwin bin
I have made a few python scripts, but is there an easier way to run them? I am using cygwin.
python "C:\Users\Desk\Dropbox\scripts\wsort.py" > data11414_unsorted.txt < data11414_sorted.txt
I ...
1
vote
2answers
308 views
Invoking python under CygWin on Windows hangs
Installing a new Windows system, I've installed CygWin and 64
bit Python (2.7.3) in their default locations (c:\cygwin and
c:\Python27\python), and added both the CygWin bin and the
Python directory ...
0
votes
1answer
93 views
Sending email through Cygwin
I have a written a shell script wherein I want to send an email through it. I am executing this script on windows through cygwin. I have installed email package on my machine. However, I am having a ...
3
votes
1answer
456 views
Building GSL (GNU Scientific Library) in Windows for use with VS2005
I'm trying to get GSL working in a windows environment for my team and I'm running into many problems.
My team develops in C++ in VS2005, and we'd like to use GSL. I've downloaded the GSL-1.15 ...
0
votes
1answer
373 views
Error when installing crosstool-ng on cygwin (_libintl_gettext)
I have a problem with installing crosstool-ng on cygwin.
I have downloaded last package here to root cygwin folder, then:
./configure ALL OK
make - error!
Complete error log:
$ make
SED ...
1
vote
1answer
50 views
Fortran Syntax Basics?
So I am trying to get my Fortran 95 code to work just for basic function and program definitions. I get practically an error for every line saying "Unexpected" or "Unclassified". I wonder if it is my ...
0
votes
2answers
55 views
cygwin kill background process
I can see a process with ps, but it does not appear in "tasklist" (or windows taskmanager).
PID PPID PGID WINPID TTY UID STIME COMMAND
15356 1 16284 10496 pty2 ...
0
votes
1answer
90 views
Build GMP on Windows 32-Bit
Hello I am trying to compile gmp because I need it for a Perl Module. I have to install eveyrthing manually because the machine doesent have access to the Internet. I runned configure and used this ...
0
votes
0answers
51 views
Error with VS lib tool, “cannot open shared object file”
I don't have a lot of experience building libraries under Windows and I had a hard time finding info online, 'lib' and 'def' are not great search terms I expect. Anyway, my problem is shown below; ...
1
vote
2answers
97 views
cygpath doesn't convert Windows path correctly
command line shell
echo %PIG_HOME%
C:\cygwin\usr\lib\pig
cygwin
echo $PIG_HOME
C:\cygwin\usr\lib\pig
echo $( cygpath -u "$PIG_HOME" )
/usr/lib/pig
cd $( cygpath -u "$PIG_HOME" )
-bash: cd: ...
0
votes
2answers
1k views
Creating multiple threads and invoking other exectuables in Cygwin through system()?
I am working on a project in Cygwin. In an attempt to create multiple threads in C, and each thread calls another executable through the command line using the system() function, it turns out things ...
0
votes
0answers
59 views
Git under Cygwin prompts for ssh-askpass
ssh-askpass is normally an alias for the GUI-style program that prompts you for password, it normally comes with X or display manger... Cygwin provides no such thing / I don't want to install X for ...



