Find the answer to your Linux question:
Results 1 to 4 of 4
i stuck with the configuration of cvs server in linux fedora core 4. can anyone give me guides to setup cvs server and client? kindly reply...
  1. #1
    Just Joined!
    Join Date
    Feb 2008
    Posts
    8

    Lightbulb Cvs Configuration



    i stuck with the configuration of cvs server in linux fedora core 4. can anyone give me guides to setup cvs server and client?

    kindly reply

  2. #2
    Just Joined!
    Join Date
    Mar 2008
    Posts
    5
    Hi,

    let me know which cvs version you are using..

  3. #3
    Just Joined!
    Join Date
    Feb 2008
    Posts
    8

    Wink cvs

    i am using cvs 1.11.19-9 version.

  4. #4
    Just Joined!
    Join Date
    Mar 2008
    Posts
    5

    Smile

    Hi,

    i configured cvsnt-2.0.18.tar.gz version long back, hope the following steps might be useful for u.

    Install cvs using the below mentioned commands

    a) . /configure
    b) make
    c) make install

    Then create a file called “cvspserver” under the directory /etc/xinetd.d/

    Type the following contents in “cvspserver” file

    service cvspserver
    {
    disable = no
    port = 2401
    socket_type = stream
    protocol = tcp
    wait = no
    user = root
    passenv = PATH
    server = /usr/local/bin/cvs
    server_args = -f --allow-root=/cvs/sample pserver
    }

    Then restart the xinetd service

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •