Techno Aspirations, Apple iPhone, SAMSUNG, Motorola Moto, Secret Codes, price, specifications, Samsung Galaxy, Clone Huawei, Flash File, Google LG Nexus

Install and configure CVS on Solaris 10

Install and configure CVS on Solaris 10 - hello friends are you looking for information related to technology? ... if yes ... then you are right to come to blog Techno Aspirations because here we will display information about the latest gadgets or old ones though, well now we will discuss first about Install and configure CVS on Solaris 10 as you are looking for, hopefully the information we will convey can answer your question to google, please see.

Articles : Install and configure CVS on Solaris 10
full Link : Install and configure CVS on Solaris 10

You can also see our article on:


Install and configure CVS on Solaris 10

Download the appropriate binary from
http://www.nongnu.org/cvs

# create a "cvs" user. This user will be used to impersonate cvs' users

$ mkdir  /export/home/cvsroot
$ useradd -d /home/cvs -c "CVS Owner" cvs
# create the CVS repository
$ cvs -d /path_to_repository
#Add the following to /etc/services
cvspserver 2401/tcp # CVS Client/server operations
cvspserver 2401/udp # CVS Client/server operations
#Place this following line in a file called "cvs_inetd"
cvspserver stream tcp nowait root /path_to_cvs_executable -f \
--allow-root=/path_to_cvs_repository pserver

# import the service into smf
$ inetconv -f -i ./cvs_inetd
cvspserver -> /var/svc/manifest/network/cvspserver-tcp.xml
Importing cvspserver-tcp.xml …Done
#Add the following lines to /var/svc/profile/inetd_services.xml
<service name='network/cvspserver-tcp' version='1' type='service'>
<instance name='default' enabled='true'/>
</service>
#Restart the network
$ svcadm restart svc:/network/inetd:default

You're done. Your pserver should be listening on port 2401

#Script to create cvs users

#!/usr/bin/perl

$cvsroot="/path_to_cvs_root";

$user = shift @ARGV || die "cvspasswd user\n";
print "Enter password for $user: ";
system "stty -echo";
chomp ($plain = <>);
system "stty echo";
print "\n";
@chars = ('A'..'Z', 'a'..'z', '0'..'9');
$salt = $chars[rand(@chars)] . $chars[rand(@chars)];
$passwd = crypt($plain, $salt);
open(PASSWD,">>$cvsroot/CVSROOT/passwd") || die("Cannot Open File");
print PASSWD "$user:$passwd:cvs\n";
close PASSWD;
#-End

$ perl createcvspasswd.pl your_cvs_user



just so much information about Install and configure CVS on Solaris 10

hopefully the information we provide about Install and configure CVS on Solaris 10 can give answer your question to google, and you feel satisfied about this.

you just finished reading the article with the title Install and configure CVS on Solaris 10 if you feel this information need to bookmark or share please use link https://faultyaspirations.blogspot.com/2008/09/install-and-configure-cvs-on-solaris-10.html do not forget there are many other information in this blog, please visit other page.

Tag :
Share on Facebook
Share on Twitter
Share on Google+
Tags :

Related : Install and configure CVS on Solaris 10

0 komentar:

Posting Komentar