LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 09-08-2005, 09:57 PM   #1
meanroy
LQ Newbie
 
Registered: Aug 2005
Location: San Jose Ca.
Distribution: Ubuntu (just installed)
Posts: 8

Rep: Reputation: 0
CVS question(s)


Hi,

I've been cranking out a fairly large number of Perl scripts.
It was getting pretty hard to keep track of what worked, why I started a new rev and so on.
I decided to install nongnu.org/cvs/ CVS and since I'm still (mostly) on a windows box, I also installed CVSNT, from .march-hare.com/cvspro/ March-Hare
(I have Ubuntu installed but haven't weaned completely yet)
To the best of my knowledge CVS is the same on Window$ and Unix/Linux.

The installation went alright, and I set up a repository.

Now for whats bothering me.

I have ZoneAlarm installed and it tells me the program is going out to 216.120.246.131 when I use it, which resolves to host60.hrwebservices.net.
I searched around on the March-Hare Wiki and looked through the faq's but I didn't find anything helpfull.

Why in the world should this be occuring? I suspect it's a way of tracking usage, but don't really know. (I've never used CVS before)

I do know I don't like it. I block virtually everything going out from my box as a potential security risk. (Love Window$ security, don't we all?)

Any help will be appreciated.

Roy.
 
Old 09-08-2005, 11:53 PM   #2
deiussum
Member
 
Registered: Aug 2003
Location: Santa Clara, CA
Distribution: Slackware
Posts: 895

Rep: Reputation: 32
I haven't used the March-Hare CVSNT, but I use The Cygwin CVS all the time. It is definitely odd that it tries to do that. If you want an alternative, the Cygwin environment is great not only for utilities like CVS, but also if you want most of the other standard UNIX utilities. (I use the Cygwin bash shell all the time instead of a DOS shell now.)

Just out of curiousity, how is your system setup? Is your repository local and you are accessing it locally, or on another system on your local network? If on the network how do you access it? An SSH remote shell, or pserver, or some other way? Even if it's accessing your repository on the local network, it is real strange that it goes to that specific IP, though....
 
Old 09-09-2005, 12:06 AM   #3
meanroy
LQ Newbie
 
Registered: Aug 2005
Location: San Jose Ca.
Distribution: Ubuntu (just installed)
Posts: 8

Original Poster
Rep: Reputation: 0
Repository

I had it set up local.

I ran it for a while and it didn't just go to that 1 address, it went to several closely related.
69.225.175.97, 69.225.175.90, etc as well as 216.120.246.131.

I installed the gui for it as well and after having to click to allow it out 1 too many times I had enough and uninstalled the whole mess.
Except I had to install Python for the scripts, and kept it on the principle that you can never have too many languages. ;-)

I think I'll check out Cygwin, I've only used commercial packages in the past, and I'm kind of spoiled from the point-and-click ease of use.

I working on a pretty complex program/script and I've reached the point of desperation trying to keep track of what the heck I did last.
(and how did I break it this time!)

Thanks for the reply.

Roy.

ps, I just noticed you're pretty close to me, I'm over by the Rose Garden, small world, huh.

Last edited by meanroy; 09-09-2005 at 12:08 AM.
 
Old 09-09-2005, 03:54 AM   #4
bigearsbilly
Senior Member
 
Registered: Mar 2004
Location: england
Distribution: Mint, Armbian, NetBSD, Puppy, Raspbian
Posts: 3,515

Rep: Reputation: 239Reputation: 239Reputation: 239
cygwin is fantastic

I use CVS in cygwin.

I'm stuck with a windows machine on my desk at work
but cygwin is just like having a little alien unix machine inside.
you can do stuff on your windows files using unix tools.

You need, gdb say. Start the installer again, pick it from a list, and it installs it and sets it up for you.



I am even running apache with CGI scripts via cygwin.
 
Old 09-09-2005, 10:33 AM   #5
deiussum
Member
 
Registered: Aug 2003
Location: Santa Clara, CA
Distribution: Slackware
Posts: 895

Rep: Reputation: 32
Re: Repository

Quote:
Originally posted by meanroy

ps, I just noticed you're pretty close to me, I'm over by the Rose Garden, small world, huh.
Cool. My office isn't too far from south from you in San Jose on Meridian. Just moved here from North Dakota about 3 months ago. Huge change.

As another alternative, there is also WinCVS which gives you a CVS GUI. I haven't used it much myself as I use Cygwin anyway for stuff and have gotten pretty comfortable in a bash shell environment.
 
Old 09-26-2005, 12:23 PM   #6
Tony Hoyle
LQ Newbie
 
Registered: Sep 2005
Posts: 1

Rep: Reputation: 0
cvsnt does not attempt to access any of the addresses mentioned in the first post. No tracking is done (it's an innefective method of guaging usage especially since 90% of the time it's behind corporate firewalls which wouldn't let the connection out anyway).

The only IP addresses that cvsnt will use are:

1. Itself (127.0.0.1) for communicating with the lockserver.
2. In the event a server crash happens it'll attempt to send the crashdump (about 5k by default) to 69.93.197.231 - most users will never see this.
3. It'll listen on port 2401 for incoming connections. Windows firewall notices this and pops up a warning.

No other access is done by cvsnt itself.

This suggests that the OP has a virus or spyware, or that zonealarm is misreporting.
 
Old 09-26-2005, 04:31 PM   #7
Arthur Barrett
LQ Newbie
 
Registered: Sep 2005
Posts: 2

Rep: Reputation: 0
Please post a message describing the problems that you experienced with CVSNT to the CVSNT newsgroup:
http://www.cvsnt.org/cgi-bin/mailman/listinfo/cvsnt
or
news://news.cvsnt.org/support.cvsnt

CVSNT does not contact the addresses you mentioned (69.225.175.97, 69.225.175.90, etc as well as 216.120.246.131 / host60.hrwebservices.net).

It is possible that the CVSNT you obtained was infected with a virus or spyware. You should preferably download the latest version from the march-hare.com web site.

The only outside connections that CVSNT makes are to 69.93.197.231 if it crashes, as explained here:
http://www.march-hare.com/cvspro/faq/faq6.asp#6a

Regards,


Arthur Barrett
 
Old 09-26-2005, 05:04 PM   #8
meanroy
LQ Newbie
 
Registered: Aug 2005
Location: San Jose Ca.
Distribution: Ubuntu (just installed)
Posts: 8

Original Poster
Rep: Reputation: 0
Thanks for the responses

It is possible, but unlikely, that I had adware or a virus. I scanned for both, and found none.

The problem disappeared when I un-installed the program and hasn't recurred since.
I did in fact download from March-Hare.

I am intrigued enough by the posts here that I will download it again and re-install to see if it behaves the same and post the results. May take a day or so before I get to it.

Roy.

Last edited by meanroy; 09-26-2005 at 05:08 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
CVS question blackzone Programming 1 10-28-2004 08:28 AM
cvs question JROCK1980 Linux - Software 2 04-11-2004 08:44 PM
cvs question jasonmantey Linux - Newbie 6 01-23-2004 03:43 PM
CVS Question......... hemanexp Linux - Software 1 07-27-2003 08:55 AM
cvs question dj_relentless Linux - General 3 02-05-2002 06:01 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 07:44 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration