Sponsored Content
Full Discussion: utmp files
Operating Systems AIX utmp files Post 302100687 by funksen on Thursday 21st of December 2006 11:55:24 AM
Old 12-21-2006
you can limit the size of these files to a fixed number of lines with a shell script if thats an option for you

Code:
LINECOUNT=whatever you want

tail - "$LINECOUNT" /var/adm/wtmp > /tmp/wtmp.tmp
/tmp/wtmp.tmp > /var/adm/wtmp
rm /tmp/wtmp.tmp

(test before use, haven't done so yet, but should work ^^)

put this in a file and run in crontab every hour or whenever
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Error login user file utmp

could probably help me with a unix problem. Basicallyu, when the users try to connect to the server they get this messge: No UTMP entry. you must exec "LOGIN" from the lowest level "sh" They are connecting using a windows emulator called TINYTERM. We cannot connect from the console either... (3 Replies)
Discussion started by: jernesto_diaz
3 Replies

2. SCO

SCO utmp file

I am tring to recover a SCO system remotely, when I try to login with multiple user support, i get the following message No UTPM entry, you must execute from the lowest level (sh) Can anyone shed some light on this issue. I have never came seen this error before. Also it will allow me to... (1 Reply)
Discussion started by: scott_williams1
1 Replies

3. Solaris

: /var/adm/utmp exists!

Solaris 8 E420R, 4CPU, 4GB. We get the following message in /var/adm/messages: Feb 22 04:39:43 hostname See utmp(4) for more information Feb 22 05:39:43 hostname /usr/lib/utmpd: WARNING : /var/adm/utmp exists! So I followed the instructions and saw that DESCRIPTION The utmp and... (2 Replies)
Discussion started by: dangral
2 Replies

4. Programming

utmp ACCOUNTING

the utmp.h ACCOUNTING macro is set to 9 on my system. my question is: what "accounting" is it referring to? (2 Replies)
Discussion started by: thmnetwork
2 Replies

5. UNIX for Advanced & Expert Users

/etc/utmp file does not get updated with boot up details

In a frequent interval the system bootup is not updating the /etc/utmp file with the system boot details. This leads to blank output of who - b command. What can be the reason for the same? (1 Reply)
Discussion started by: jyoti_mil
1 Replies

6. Programming

How come nothing is added to utmp in this case?

Given the following: #include <string.h> #include <stdlib.h> #include <pwd.h> #include <unistd.h> #include <utmp.h> #include <stdio.h> #include <time.h> int main(int argc, char *argv) { struct utmp entry; char *fd; system("echo before adding entry:;who"); ... (1 Reply)
Discussion started by: frequency8
1 Replies

7. UNIX for Dummies Questions & Answers

Help Needed using utmp file!

Hi. I am working on a small assignment where i need to extract the login information of currently logged in users in a Linux client-server environment.I am able to extract only the userID,IP/HOST name,TTY,device name,GID,PID and login time using the structure 'utmp'.Also when i am saving the... (2 Replies)
Discussion started by: maverixxx
2 Replies

8. Shell Programming and Scripting

How to retrieve all the linked script files/ctl files/sql files?

Hi I am going to migrate our datawarehouse system from HP Tru 64 Unix to the Red Hat Linux. Inside the box, it is running around 40 cron jobs; inside each cron job, it is calling other shell script files, and the shell script files may again call other shell script files or ctl files(for... (1 Reply)
Discussion started by: franksubramania
1 Replies

9. Solaris

Locked out of server due to utmp growing out of control

:(Dear Solaris Experts, The file /var/adm/utmpx is steadily growing on our standbye Sun Sparc T5220 Solaris 10 server. I have tried everything such as the following steps without success: root@rainbow # uname -a SunOS rainbow 5.10 Generic_141444-09 sun4v sparc... (2 Replies)
Discussion started by: gjackson123
2 Replies

10. UNIX for Beginners Questions & Answers

Automate splitting of files , scp files as each split completes and combine files on target server

i use the split command to split a one terabyte backup file into 10 chunks of 100 GB each. The files are split one after the other. While the files is being split, I will like to scp the files one after the other as soon as the previous one completes, from server A to Server B. Then on server B ,... (2 Replies)
Discussion started by: malaika
2 Replies
last(8) 						      System Manager's Manual							   last(8)

NAME
last - Displays information about previous logins SYNOPSIS
/usr/bin/last [-n maxlines | -maxlines] [-f filename] [name...] [tty...] FLAGS
Reads information about previous logins from filename instead of from the accounting file /var/adm/wtmp. Limits the output to maxlines number of record lines. Limits the output to maxlines number of record lines. Provides SVID conformance, and is equivalent to -maxlines. DESCRIPTION
The last command displays, in reverse chronological order, all previous logins and logouts entered in the currently active /var/adm/wtmp file. The list of output records can be restricted to maxlines number of record lines if the -maxlines or the -n maxlines flag is speci- fied. The last command also displays logins and logouts by the user specified with the name parameter, and logins and logouts from termi- nals specified with the tty parameter. The tty terminal references can be fully named (for example, tty0) or abbreviated (for example, 0). For each process, the following information is displayed according to session, with the most recent session listed first: Time session began Duration of session The tty terminal on which session took place The following information is included when applicable: Terminations when rebooting Continuing sessions If the last command is interrupted, an indication of how far the search has progressed in the /var/adm/wtmp file is provided. If the com- mand is interrupted by a quit signal, an indication as to how far the search has progressed is provided, but the search continues. To obtain information about the mean time between reboots, use the word shutdown as the name parameter. EXAMPLES
The following example displays all recorded logins and logouts for user root and all recorded logins and logouts from the console terminal: last root console The following example displays the time between system reboots: % last shutdown shutdown ~ Fri Aug 28 17:59 shutdown ~ Mon Aug 17 09:07 wtmp begins Mon Aug 17 08:51 In the previous example, the shutdown pseudouser is used to list the mean time between system reboots. FILES
Specifies the command path. Header file defining structures used to organize login information. The login/logout database file. RELATED INFORMATION
Commands: lastcomm(8) Files: utmp(4), wtmp(4). delim off last(8)
All times are GMT -4. The time now is 01:42 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy