How to remove CVS lock


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users How to remove CVS lock
Prev   Next
# 1  
Old 09-22-2006
How to remove CVS lock

Hi All,

CVS repository is setup on linux server and we are using wincvs to checkout/tag .. etc but we are getting below lock error so how to remove this lock and what is the reason for lock??

cvs rtag: [02:47:30] waiting for username's lock in /space/cvs/modulename
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

CVS Automation

Hi All, I am just looking for CVS automation for SQL scripts. Normally Devs will check in new sql scripts or they will update the existing sql scripts with new query. We will take the scripts from CVS and run in DB. I am thinking to automate that process like whenever a new script is checked in... (1 Reply)
Discussion started by: pvmanikandan
1 Replies

2. Shell Programming and Scripting

script to remove and recreate a lock file

Hi all, i have a small script to remove locks for the prevous day and create new lock for processing in the path on my server i have made something like this #!/bin/sh #lock_remover #script to remove regular lockfiles and hang curr_month=`date "+%b"` 2day=`date "+%_d"` cd... (4 Replies)
Discussion started by: godie_b_w
4 Replies

3. UNIX for Advanced & Expert Users

Testing privileges -lock lockfile /var/lock/subsys/..- Permission denied

Hi all, I have to test some user priviliges. The goal is to be sure that an unauthorized user can't restart some modules (ssh, mysql etc...). I'm trying to automate it with a shell script but in same cases I got the syslog broadcast message. Is there any way to simply get a return code... (3 Replies)
Discussion started by: Dedalus
3 Replies

4. Red Hat

Security Question: Lock after invalid login, Session Lock and Required Minimum Password Length

Hello all, If anyone has time, I have a few questions: How do I do the following in Linux. We are using Red Hat and Oracle Enterprise Linux, which is based on Red Hat too. 1. How to lock the account after a few (like 3) invalid password attempts? 2. How do you lock a screen after 30... (1 Reply)
Discussion started by: nstarz
1 Replies

5. OS X (Apple)

Please look at this screen shot: How do I remove this lock icon?!

RESOLVED in the screen shot I'd like to remove the lock sandwiched between the spaces indicator and the monitor icon, how do I get rid of it? It locks the screen and I cannot remember how it came to be http://guptaxpn.com/tmp/lock_icon_screenshot.png Thanks for your help! (3 Replies)
Discussion started by: guptaxpn
3 Replies

6. Red Hat

CVS on redhat

Hi all, i am trying to set up a CVS server on linux and to remote access the repository using WinCVS. I am facing some problem and i am unsure whether is it the client or the server not set up properly. In my winCVS client, i clicked Admin ->login and i specify my CVSROOT to be ":... (5 Replies)
Discussion started by: new2ss
5 Replies

7. Debian

What is CVS...?

Hi everyone... Could one of you kind Linux experts please let me know what CVS is In return I will kindly give you a thumbs up :b: a good trade I feel!! (1 Reply)
Discussion started by: TonyChapman
1 Replies

8. Solaris

lock users in cvs

dears is there any one know how to make any user readonly (2 Replies)
Discussion started by: murad.jaber
2 Replies

9. UNIX for Advanced & Expert Users

Cvs Cr-lf

I've experienced a problem with CVS when I've checked out sh script. When new build was created sources were checked out from CVS under Windows. Later this build was deployed under Linux und I recieved error from shell becouse of CR-LF EOL in file. I've tryed command dos2unix and become script... (7 Replies)
Discussion started by: Hitori
7 Replies

10. UNIX for Dummies Questions & Answers

how to lock keyboard without using lock command

how can I lock my keyboard while I'm away from the computer without using lock command. What other commands gives me the option to lock keyboard device? thanks (7 Replies)
Discussion started by: dianayun
7 Replies
Login or Register to Ask a Question
CVSUTILS(1)						      General Commands Manual						       CVSUTILS(1)

NAME
cvsutils - CVS utilities for use in working directories SYNOPSIS
cvsu [options] cvsco [ options ] cvsdiscard [ options ] cvspurge [ options ] cvstrim [ options ] cvschroot [ options ] cvsdo [ options ] DESCRIPTION
The idea of cvsutils is to facilitate working with the files in the working directory of a developer using CVS (Concurrent Versions Sys- tem). From the point of view of CVS, working directories have low value, since they can easily be recreated using the cvs checkout command. Also the cvs update command will show the status of the files, i.e. whether they have been modified, added or removed. CVS in it's current state is a client-server system that does most of its work on the server side. CVS provides only few (if any) means for managing the working directory without communicating with the server. There are, however, several reasons why such means are necessary: * There is enough information on the client side to create fast tools for sorting and purging the working directory without contacting the CVS server. * Checking out a big module over a slow line can take too much time. * There should be support for disconnected operations. * CVS poses certain unnecessary restrictions on read-only users, e.g. cvs add command doesn't work for them. CVSU
cvsu is "cvs update offline". It lists the files found in the current directory (or in the directories which you specify). Following is taken into account: * Attributes of the file. * Information about the file in CVS/Entries. * Timestamp of the file compared to the timestamp stored in CVS/Entries. Run cvsu --help to see supported command line options. The options can be abbreviated. This functionality is provided by Perl, and can vary from one machine to another. CVSCO
cvsco is a "cruel checkout". In other words, it removes results of compilation and discards local changes. It deletes all the files except listed unmodified ones and checks out everything which seems to be missing. Please note, that cvsco doesn't update files which haven't been modified locally. It only reloads missing files and files which it erases. CVSDISCARD
cvsdiscard is "discard my changes". In other words, it discards local changes but keeps results of compilation. It works like cvsco, but it only deletes files which are likely to cause merge conflicts. CVSPURGE
cvspurge leaves all files known to CVS, but removes the rest. Unlike cvsco, it doesn't remove local changes. It is useful to test local changes in the otherwise clean source tree. CVSTRIM
cvstrim removes files and directories unknown to CVS. Files listed in .cvsignore are not removed. The idea is to remove the files that are not resulted from the normal build process - backups, coredumps etc. cvstrim relies on .cvsignore files being correct. Note that the back- ups for modified files are removed. CVSCHROOT
cvschroot makes it possible to change CVS/Root in all subdirectories to the given value. Currently the only argument accepted is the new CVSROOT value. Old-style CVS/Repository files that contain the full path to the repository are updated to reflect the change. New-style CVS/Repository don't need to be changed. If the environment variable CVSROOT is defined, it overrides the contents of CVS/Root. In other words, it is treated as the old CVS root. CVSDO
cvsdo simulates some of the CVS commands (currently add, remove and diff) without any access to the CVS server. Using cvsdo add and cvsdo remove allows you to create diffs with cvs diff -N, and all removed and added files will appear in the diff correctly, as if you had used cvs add and cvs remove respectively. cvsdo diff tries to locate the backup copies of the modified files. If they can be found, they are compared with the current version using diff. Only those backup copies are used that have the modification date equal the date listed in CVS/Entries for the modified file. cvsdo diff patches the diff output to make it more robust to apply. An exception is made for files named "ChangeLog" - in this case diff will be instructed to omit all context lines, so that the patch can be applied even if other changes have been written to the ChangeLog. Also the added files are handled properly. The header of the diff output is patched in such way that at least GNU patch will create a new file when the resulting patch is applied and remove that file when the patch is reverted. LICENCE
cvsutils is covered by the GNU General Public License (GPL). SEE ALSO
cvs(1), cvs2cl(1). AUTHOR
This manual page was written by Uwe Hermann <uwe@debian.org>, for the Debian GNU/Linux system (but may be used by others). February 27, 2002 CVSUTILS(1)