Sponsored Content
Top Forums UNIX for Dummies Questions & Answers how to lock keyboard without using lock command Post 23326 by killerserv on Thursday 20th of June 2002 09:49:52 PM
Old 06-20-2002
how to lock keyboard without using lock command

You can either Modify your /etc/csh.cshrc and /etc/csh.login file to set a timeout. Else you can set your shell prompt to freeze the screen after certain time or no-activity. I code a csh using autologout : the shell variable can be set to log out or lock the shell after a given number of minutes of inactivity.

Quote:
Originaly Posted by trynew
Kelam_Magnus, yes, i got a cool idea than yours
bring along your keyboard and mouse when you leaving your computer... HAHA
trynew: Hope the Explanation can be seen towards more Unix oriented and user friendly on this Forum.
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

host lock up

hey fellows, hope you can help me, in advance thanks. I work on a sco unix 3.2 system and I've had a host lock up error message, I wan to know if there is a releasse note for an upgrade where I can see this bug is reported and fixed. Can somebody help me? THANKS!!! Thank you very much... (1 Reply)
Discussion started by: alex_slb
1 Replies

2. HP-UX

How to Lock In HP-UX

Hi , How should i implemet a lock function Hp-ux . I want to a lock a file through fcntl in Hp-ux . But is not locking properly . Thanks Narendra (7 Replies)
Discussion started by: naren_chella
7 Replies

3. UNIX for Advanced & Expert Users

file lock

I have an Essbase installation on Solaris 10 and need to get the backups configured. Unfortunately several key files are locked and Essbase (OLAP application) is not releasing the locks when the Essbase or the applications within stop running. It appears I can use chmod to unlock the files but I... (0 Replies)
Discussion started by: JavaBrian
0 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. 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

6. Red Hat

command line tool to disable screen lock and/or screen saver

Hi, I have a simple question : how to disable screen lock and/or sreen saver with command line with RHEL5.4 ? (1 Reply)
Discussion started by: albator1932
1 Replies

7. Shell Programming and Scripting

lock on files

Hi, I want to write a code where in the file once taken genrates a lock number and other developer/user cannot take the file to make any changes in it. He gets the file only as read only. (2 Replies)
Discussion started by: rac
2 Replies

8. Shell Programming and Scripting

Need help in lock and unlock and after the changes

Requirement:First i need to unlock the directory which i had a script for it.If i select app1 it should unlock the directory and after chnages in the script once need to lock the directory with lock command The below highlighed variables in lock and unlock has to be changed according... (2 Replies)
Discussion started by: bhas85
2 Replies
lock_try_read(9r)														 lock_try_read(9r)

NAME
lock_try_read - General: Tries to assert a complex lock with read-only access SYNOPSIS
#include <kern/lock.h> boolean_t lock_try_read( lock_t lock_structptr ); ARGUMENTS
Specifies a pointer to the complex lock structure, lock. This is the lock structure associated with the resource on which you want to try to assert a complex lock with read-only access. The lock structure is an opaque data structure; that is, its associated members are refer- enced and manipulated by the operating system and not by the user of the complex lock mechanism. DESCRIPTION
The lock_try_read routine tries to assert a complex lock (without blocking) with read-only access for the resource associated with the specified lock structure pointer. To release a complex lock with read-only access successfully asserted by lock_try_read, call the lock_done routine. NOTES
You must call lock_init (once only) prior to calling lock_try_read to initialize the lock structure pointer for the resource. A resource, from the kernel module's standpoint, is data that more than one kernel thread can manipulate. You can store the resource in global vari- ables and in data structure members. RETURN VALUES
The lock_try_read routine returns one of the following values: The attempt to acquire the read-only complex lock was successful. The attempt to acquire the read-only complex lock was unsuccessful. FILES
SEE ALSO
Routines: lock_done(9r), lock_terminate(9r), lock_try_write(9r), lock_write(9r) Data Structures: lock(9s) lock_try_read(9r)
All times are GMT -4. The time now is 07:35 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy