473,799 Members | 3,229 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Which IDE?

Hi..

I am developing commandline tools for LInux.Currently i am using
source insight IDE in Windows for development. Later i FTP the source
to LINUX and build by make file.

Can any one suggeest me the IDE which should get the code from VSS and
transer it to LINUX (should have a menu or plugin for this) and build
there

Oct 16 '08 #1
14 2448
do************* @gmail.com wrote:
Hi..

I am developing commandline tools for LInux.Currently i am using
source insight IDE in Windows for development. Later i FTP the source
to LINUX and build by make file.

Can any one suggeest me the IDE which should get the code from VSS and
transer it to LINUX (should have a menu or plugin for this) and build
there
Change to a decent source control tool and you won't need one.

--
Ian Collins
Oct 16 '08 #2
On Oct 16, 1:56*pm, Ian Collins <ian-n...@hotmail.co mwrote:
doublemaster... @gmail.com wrote:
Hi..
I am developing commandline tools for LInux.Currently i am using
source insight IDE in Windows for development. Later i FTP the source
to LINUX and build by make file.
Can any one suggeest me the IDE which should get the code from VSS and
transer it to LINUX (should have a menu or plugin for this) and build
there

Change to a decent source control tool and you won't need one.

--
Ian Collins
what is the problem with that?
I need an IDE which can atlist ftp the files and get code from VSS
Oct 16 '08 #3
On Oct 16, 4:41*pm, "doublemaster.. .@gmail.com"
<doublemaster.. .@gmail.comwrot e:
Hi..

I am developing commandline tools for LInux.Currently i am using
source insight IDE in Windows for development. Later i FTP the source
to LINUX and build by make file.

Can any one suggeest me the IDE which should get the code from VSS and
transer it to LINUX (should have a menu or plugin for this) and build
there
I'm not familiar with VSS.
but using it as source control for project that work on both windows
and linux is not good idea.

VSS is some kind of proprietary tool bounded to VisualStudio
envirnonment,
it's not designed to share and collaboration with other platform & IDE
or tools.

use cvs, or svn for your source control. they worths it.
if you really hate anything except VSS, i googled some.
some guy try to use wine to run vss client..
http://www.kegel.com/linux/vss-howto.html

and another is a vss tool for unix..
http://linux.softpedia.com/get/Progr...nix-8161.shtml

but i didn't use both of them..

good luck.
-roadt
Oct 16 '08 #4
On Oct 16, 9:41*am, "doublemaster.. .@gmail.com"
<doublemaster.. .@gmail.comwrot e:
I am developing commandline tools for LInux.Currently i am using
source insight IDE in Windows for development. Later i FTP the source
to LINUX and build by make file.

Can any one suggeest me the IDE which should get the code from VSS and
transer it to LINUX (should have a menu or plugin for this) and build
there
There may be no IDE for Linux which would support VSS out of the box.

You could probably access VSS from Linux using command line:
http://www.kegel.com/linux/vss-howto.html . And you could probably
customise your Linux IDE to use your scripts for accessing a version
control system.

Or, better, change to a decent version control system, like
Subversion.

--
Max

Oct 16 '08 #5
On Oct 16, 3:42*pm, Maxim Yegorushkin <maxim.yegorush ...@gmail.com>
wrote:
On Oct 16, 9:41*am, "doublemaster.. .@gmail.com"

<doublemaster.. .@gmail.comwrot e:
I am developing commandline tools for LInux.Currently i am using
source insight IDE in Windows for development. Later i FTP the source
to LINUX and build by make file.
Can any one suggeest me the IDE which should get the code from VSS and
transer it to LINUX (should have a menu or plugin for this) and build
there

There may be no IDE for Linux which would support VSS out of the box.

You could probably access VSS from Linux using command line:http://www.kegel.com/linux/vss-howto.html. And you could probably
customise your Linux IDE to use your scripts for accessing a version
control system.

Or, better, change to a decent version control system, like
Subversion.

--
Max
Actually i am working for some compny and i cant decide to change the
VSS.

But i did not give you enough information i guess.

1) I am connecting to Linux servers only on putty or some other
terminal. It has no GUI. only command line.

I have a windows system, i use source insight to view and edit the
code [ i cant compile in windows, tool is for Linux servers]. and
tranfer the code to Linux. then build there.

[i donot have any idea why we have not been given linux system!]
Oct 16 '08 #6
On Oct 16, 4:22*pm, "doublemaster.. .@gmail.com"
<doublemaster.. .@gmail.comwrot e:
On Oct 16, 3:42*pm, Maxim Yegorushkin <maxim.yegorush ...@gmail.com>
wrote:


On Oct 16, 9:41*am, "doublemaster.. .@gmail.com"
<doublemaster.. .@gmail.comwrot e:
I am developing commandline tools for LInux.Currently i am using
source insight IDE in Windows for development. Later i FTP the source
to LINUX and build by make file.
Can any one suggeest me the IDE which should get the code from VSS and
transer it to LINUX (should have a menu or plugin for this) and build
there
There may be no IDE for Linux which would support VSS out of the box.
You could probably access VSS from Linux using command line:http://www.kegel.com/linux/vss-howto.html. And you could probably
customise your Linux IDE to use your scripts for accessing a version
control system.
Or, better, change to a decent version control system, like
Subversion.
--
Max

Actually i am working for some compny and i cant decide to change the
VSS.

But i did not give you enough information i guess.

1) I am connecting to Linux servers only on putty or some other
terminal. It has no GUI. only command line.

I have a windows system, i use source insight to view and edit the
code [ i cant compile in windows, tool is for Linux servers]. and
tranfer the code to Linux. then build there.

[i donot have any idea why we have not been given linux system!]- Hide quoted text -

- Show quoted text -
Are you really looking for IDE or some tool to transfer files from
your windows machine to Linux server.
You can try with Filezilla!!!

Since Linux is a multiuser system it may not require to give linux
system on your desk.. you can access the Linux system by using some
remote protocol such as telnet or ssh( That is what putty is doing).
Oct 16 '08 #7
do************* @gmail.com schrieb:
Actually i am working for some compny and i cant decide to change the
VSS.
Poor man. - VSS is the worst version control tool that I know. So it is
a somewhat unlikely that some Linux developer wants to use it, since CVS
and SVN are far superior.

Fortunately I had the choice and decided to drop VSS in our company in
favor of CVS several years ago.

Unfortunately I can't help you other than to recommend to write your own
integration tools or scripts.

1) I am connecting to Linux servers only on putty or some other
terminal. It has no GUI. only command line.
This may not be a that hard restriction since X applications may run on
the server while the GUI (the X-Server) runs on your local machine. All
you have to do is to setup the DISPLAY environment correctly. Of course,
the desired applications have to be installed on the server.
Marcel
Oct 16 '08 #8
On Oct 16, 7:22*pm, "doublemaster.. .@gmail.com"
<doublemaster.. .@gmail.comwrot e:
On Oct 16, 3:42*pm, Maxim Yegorushkin <maxim.yegorush ...@gmail.com>
wrote:
On Oct 16, 9:41*am, "doublemaster.. .@gmail.com"
<doublemaster.. .@gmail.comwrot e:
I am developing commandline tools for LInux.Currently i am using
source insight IDE in Windows for development. Later i FTP the source
to LINUX and build by make file.
Can any one suggeest me the IDE which should get the code from VSS and
transer it to LINUX (should have a menu or plugin for this) and build
there
There may be no IDE for Linux which would support VSS out of the box.
You could probably access VSS from Linux using command line:http://www.kegel.com/linux/vss-howto.html. And you could probably
customise your Linux IDE to use your scripts for accessing a version
control system.
Or, better, change to a decent version control system, like
Subversion.
--
Max

Actually i am working for some compny and i cant decide to change the
VSS.

But i did not give you enough information i guess.

1) I am connecting to Linux servers only on putty or some other
terminal. It has no GUI. only command line.
So you have a telnet or ssh access to linux server terminal.
no GUI is not a problem, since your tool is command line executable.
>
I have a windows system, i use source insight to view and edit the
code [ i cant compile in windows, tool is for Linux servers]. and
tranfer the code to Linux. then build there.
Under window, you should be able to "check out" source from VSS
repository easily,
since VisualSourceSaf e client is part of VisualStudio Environment.
On the contrary, there are few tool to acess VSS repository directly
under linux.

To Get source under windows, and transfer to the linux, that works.
but for the transfer source, you need a FTP/SFTP client, and the
account of linux server FTP/SSH service.

FileZilla is fine FTP/SFTP GUI client,
and putty also have a command line sftp client, "psftp",
another favor is SecureFX,

try one for client, and also you can contact the linux server
administrator for the account issue.
>
[i donot have any idea why we have not been given linux system!]
If you mean the VSS client for sourcesafe repository .

that's not hard to understand.

1. SourceSafe is private & proprietary solution owned by Microsoft.
and its protocol is not open ,
write such a client is a little hard. and also take the risk of legal
problem..
Except the MS kindly want to port somewhat to linux platform. but i
can't look forward to it.

2. Linux already have the good solution for version control, and
source version control.
from RCS , CVS to SVN, it's open idea, and open source. and well
integratted with each other.
also have various frontend. So, Open source VSS client can't be the
high privilege project in the open-source community.
-Road
Oct 17 '08 #9
On Oct 17, 6:51*am, "Road.Tang" <roadt...@gmail .comwrote:
On Oct 16, 7:22*pm, "doublemaster.. .@gmail.com"

<doublemaster.. .@gmail.comwrot e:
On Oct 16, 3:42*pm, Maxim Yegorushkin <maxim.yegorush ...@gmail.com>
wrote:
On Oct 16, 9:41*am, "doublemaster.. .@gmail.com"
<doublemaster.. .@gmail.comwrot e:
I am developing commandline tools for LInux.Currently i am using
source insight IDE in Windows for development. Later i FTP the source
to LINUX and build by make file.
Can any one suggeest me the IDE which should get the code from VSS and
transer it to LINUX (should have a menu or plugin for this) and build
there
There may be no IDE for Linux which would support VSS out of the box.
You could probably access VSS from Linux using command line:http://www.kegel.com/linux/vss-howto.html. And you could probably
customise your Linux IDE to use your scripts for accessing a version
control system.
Or, better, change to a decent version control system, like
Subversion.
--
Max
Actually i am working for some compny and i cant decide to change the
VSS.
But i did not give you enough information i guess.
1) I am connecting to Linux servers only on putty or some other
terminal. It has no GUI. only command line.

So you have *a telnet or ssh *access to linux server terminal.
no GUI is not a problem, since your tool is *command line executable.
I have a windows system, i use source insight to view and edit the
code [ i cant compile in windows, tool is for Linux servers]. and
tranfer the code to Linux. then build there.

Under window, *you should be able to *"check out" source from VSS
repository easily,
since VisualSourceSaf e client is part of VisualStudio Environment.
On the contrary, *there are few tool to acess VSS repository directly
under linux.

To Get source under windows, and transfer to the linux, that works.
but for the transfer source, you need a *FTP/SFTP client, *and the
account of *linux server FTP/SSH service.

FileZilla is fine FTP/SFTP GUI client,
and putty also have a command line sftp client, "psftp",
another favor is SecureFX,

try one for client, and also you can contact the linux server
administrator for the account issue.
[i donot have any idea why we have not been given linux system!]

If you mean the VSS client *for sourcesafe repository .

that's not hard to understand.

1. SourceSafe is private & proprietary solution owned by Microsoft.
and its protocol is not open ,
write such a client is a little hard. and also take the risk of legal
problem..
Except the MS kindly want to port somewhat *to linux platform. *but i
can't look forward to it.

2. Linux already have the good solution for version control, and
source version control.
from RCS , *CVS to SVN, * it's open idea, and open source. and well
integratted with each other.
also have various frontend. * So, *Open source VSS client can't be the
high privilege project in the open-source community.

-Road- Hide quoted text -

- Show quoted text -
:) This is what i am doinf now!
source insight to edit, read code
file zilla to transer code
putty to connect remote server and compile..
Vss to check out!

What i am asking is for an IDE which can remotly build my source
[assume that i have the latest source code in windows checked out from
VSS) or IDE which transfers my code to linux and make there
Oct 17 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
2679
by: Raymond H. | last post by:
Hello, I create a vb4 project which can also naviger on Internet via the WebBrowser control which I put on my form. My question is: if this program is installed on a station having already Internet Explorer in it then will it cause an error if version Internet Explorer is the same one as WebBrowser which is in my project? Is it this control which Internet Explorer uses? If that can cause errors of version then, instead, can I install this...
17
6154
by: John Bentley | last post by:
John Bentley: INTRO The phrase "decimal number" within a programming context is ambiguous. It could refer to the decimal datatype or the related but separate concept of a generic decimal number. "Decimal Number" sometimes serves to distinguish Base 10 numbers, eg "15", from Base 2 numbers, Eg "1111". At other times "Decimal Number" serves to differentiate a number from an integer. For the rest of this post I shall only use either...
3
4816
by: Edward | last post by:
ASP.NET / VB.NET SQL Server 7.0 Our client has insisted that we change our established practice of building SQL in-line and move it all to SPROCs. Not a problem for 80% of the app. However, we have a number of Search/Filter forms that contain a number of controls to allow more or less focused search criteria to be built up. I have a class that does this quite nicely, examining all controls for
133
13279
by: Jane Withnolastname | last post by:
I have a web page that uses an unordered list (<UL>) and the LH (list header) tag. I know LH is a valid tag because it is clearly defined by the W3C here: http://www.w3.org/MarkUp/html3/bulletlists.html The problem is, when I try to validate the page at W3C, it tells me: " element "LH" undefined " My page is 4.01 Transitional, using charset windows-1252. Any ideas why this won't validate?
29
3285
by: guru.slt | last post by:
"the c++ standard library, tutorial and reference" book, it says: ++i is faster than i++. the latter involves a temporary object because it must return the old value/object of i. for this reason, it's generally better to use ++i. but, I think, even ++i still has to return a temporary object that is with new value inside. So, both i++ and ++i have to return a temporary object. Then, what's the speed difference between i++ and ++i.
17
2562
by: lawrence | last post by:
How is it possible that the question "How do I detect which browser the user has" is missing from this FAQ: http://www.faqts.com/knowledge_base/index.phtml/fid/125 and is only here on this with a link to old information that suggests use of "navigator": http://developer.irt.org/script/43.htm
65
12628
by: Skybuck Flying | last post by:
Hi, I needed a method to determine if a point was on a line segment in 2D. So I googled for some help and so far I have evaluated two methods. The first method was only a formula, the second method was a piece of C code which turned out to be incorrect and incomplete but by modifieing it would still be usuable. The first method was this piece of text:
17
3982
by: clintonG | last post by:
I'm using an .aspx tool I found at but as nice as the interface is I think I need to consider using others. Some can generate C# I understand. Your preferences please... <%= Clinton Gallagher http://forta.com/books/0672325667/
4
9700
by: mflll | last post by:
I am looking into the different techniques of handling arrays of edit boxes in Java Script. The first program below works fine. However, are there better ways of doing this, where the person writing the JavaScript doesn't have to pass the index in the "onChange" event name. I thought that one might be able to use "this.value" or compare this as
2
2231
by: rn5a | last post by:
A Form has a select list which is populated from a MS-Access database table. The DB table from where the select list is populated has 2 columns - CountryID & CountryName. When the Form is posted, the option selected in the select list is inserted in another DB table wherein the column in which the value of the selected option will be populated accepts only integers. Actually there are 7-8 select lists & the values of all the selected...
0
9541
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10482
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10251
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10225
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10027
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9072
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7564
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
1
4139
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3759
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.