Re: Cygwin is saving my ass

2008-03-27 Thread Ignazio Di Napoli
Dave Korn wrote: Robert Latest wrote on 25 March 2008 08:50: Enter corporate IT. For four weeks now I've been holding my first real industry job. And I'm locked into a M$ Windows PC. God, I hadn't known just how much Windows sucks. Everything around here is done with Access and Excel and lots

Re: Mounting tar files

2007-11-28 Thread Ignazio Di Napoli
joekrahn wrote: An ISO-9660 image is sort of like a tar file, but with some extra overhead. It sounds like you are trying to do something like Knoppix. They use a compressed read-only filesystem for the base image, combined with a special read/write filesystem (based on symlinks, I think) that

Mounting tar files

2007-11-27 Thread Ignazio Di Napoli
Hi all. I want to copy my Cygwin installation on my SD card. Since it's formed by many small files, and my flash memory performance is very poor with such files, I was wondering if there is some way to mount a tar file, or something like, even if in read-only way, searching in the archive if

Using PyGTK on Cygwin

2007-06-10 Thread Ignazio Di Napoli
Hi everyone. I'm a very newbie with Python: while I was looking for a way to add a simple GUI to a bash script, I found PyGTK and it looked perfect for my aim. So, I checked that Python and PyGTK were installed and updated through Cygwin setup, and everything was fine. I wrote this simple

Re: Using PyGTK on Cygwin

2007-06-10 Thread Ignazio Di Napoli
Ignazio Di Napoli wrote: [...] I found an old discussion (too old for my newsreader, not so for internet archives) talking about this problem. The problem seems to be with Python version switch from 2.4 to 2.5, or at least I think so: pygtk.py is in /lib/python2.4 instead of /lib/python2.5

Re: Using PyGTK on Cygwin

2007-06-10 Thread Ignazio Di Napoli
Saro Engels wrote: This is a bit off topic on this list. I think the problem it's with Cygwin installation, that's why I used this list. Ignazio -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation:

Help with rshd

2007-03-17 Thread Ignazio Di Napoli
Hi to everyone. I've the need to run rshd on my system because a program I use needs it. I installed the inetutils package and run iu-config and cygrunsrv so that I installed inetd service and started it. But, when I run 'rsh localhost pwd' I get a Permission denied. I think rshd is running

Help with Lynx and ISA Server proxy

2007-03-17 Thread Ignazio Di Napoli
Hi everyone. I'm trying to connect to the internet with lynx through a ISA Server proxy. I get an error (407) because it cannot authenticate on it. From the messages on console I think it tries Kerberos, NTLM, Negotiate. I tried with -pauth 'DOMAIN\USER:PASSWORD'. Can you please help me?

Re: Help with rshd

2007-03-17 Thread Ignazio Di Napoli
Frank Fesevur wrote: The firewall messages is probably the rsh client and not rshd (the server), so I would suggest to first check your firewall. You're right. Anyway, even with disable firewall there is the same problem. Thank you, Ignazio -- Unsubscribe info:

Re: Help with rshd

2007-03-17 Thread Ignazio Di Napoli
An update: I checked with netstat and no one is listening on port 514 (maybe there is an alias?), while inetd listens on some other ports. Thank you Ignazio Di Napoli wrote: Hi to everyone. I've the need to run rshd on my system because a program I use needs it. I installed the inetutils

Re: Help with rshd

2007-03-17 Thread Ignazio Di Napoli
Ignazio Di Napoli wrote: Hi to everyone. I've the need to run rshd on my system because a program I use needs it. I installed the inetutils package and run iu-config and cygrunsrv so that I installed inetd service and started it. But, when I run 'rsh localhost pwd' I get a Permission denied. I

Help with ATLAS

2007-03-02 Thread Ignazio Di Napoli
Hi everyone. I downloaded, compiled and installed ATLAS. Now in my /usr/local/atlas/lib I have the 4 ATLAS .a. But, when I try to compile my program with: g++ -I. -I../../src -I/usr/local/atlas/include/-g -O2 -MT matrix-ops.o -MD -MP -MF .deps/matrix-ops.Tpo -c -o matrix-ops.o

Re: Help with ATLAS

2007-03-02 Thread Ignazio Di Napoli
René Berber wrote: Never put libraries first. Doesn't help... g++ -g -O2 -L/usr/local/atlas/lib/ -o linprog.exe main.o matrix.o vector.o lipsol.o myexception.o matrix-io.o matrix-cmp.o matrix-ops.o matrix-pos.o matrix-fun.o matrix-lna.o matrix-stb.o sparsematrix.o -llapack -lcblas -lf77blas

Re: Help with ATLAS

2007-03-02 Thread Ignazio Di Napoli
René Berber wrote: Same exact error message? Yes. nm /usr/local/atlas/lib/libcblas.a | grep cblas_dgemm cblas_dgemm.o: T _cblas_dgemm Another note: if I add 'extern C {...}' around #include cblas.h, the error becomes: undefined reference to _cblas_dgemm, which is exacty the

Re: Help with ATLAS

2007-03-02 Thread Ignazio Di Napoli
René Berber wrote: Looks like a problem with linking static libraries, g++ looks for dynamic libraries unless you do: g++ -static -g -O2 -L/usr/local/atlas/lib/ -o linprog.exe main.o matrix.o vector.o lipsol.o myexception.o matrix-io.o matrix-cmp.o matrix-ops.o matrix-pos.o matrix-fun.o

Windows' dir /s /b equivalent

2007-02-15 Thread Ignazio Di Napoli
Hi everyone. I'm newbie with Cygwin. Looking through ls option, I didn't find anything to list then names of all files in the directory and all subdirectories, like dir /b /s does. Since it can be very useful in bash scripts, there must be some way. Right now I've done a recursive function

Re: Windows' dir /s /b equivalent

2007-02-15 Thread Ignazio Di Napoli
fergus wrote: find . Exactly!!! Thank you very much!!! Ignazio -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/

Re: Windows' dir /s /b equivalent

2007-02-15 Thread Ignazio Di Napoli
Svend Sorensen wrote: ls has a recursive flag for ls (-R), but the find command may be more appropriate for scripting. Thank you!!! Ignazio -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: