📄 utmp.5
字号:
.\" Copyright (c) 1980, 1991, 1993.\" The Regents of the University of California. All rights reserved..\".\" Redistribution and use in source and binary forms, with or without.\" modification, are permitted provided that the following conditions.\" are met:.\" 1. Redistributions of source code must retain the above copyright.\" notice, this list of conditions and the following disclaimer..\" 2. Redistributions in binary form must reproduce the above copyright.\" notice, this list of conditions and the following disclaimer in the.\" documentation and/or other materials provided with the distribution..\" 3. All advertising materials mentioning features or use of this software.\" must display the following acknowledgement:.\" This product includes software developed by the University of.\" California, Berkeley and its contributors..\" 4. Neither the name of the University nor the names of its contributors.\" may be used to endorse or promote products derived from this software.\" without specific prior written permission..\".\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION).\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF.\" SUCH DAMAGE..\".\" @(#)utmp.5 8.2 (Berkeley) 3/17/94.\".Dd March 17, 1994.Dt UTMP 5.Os BSD 4.Sh NAME.Nm utmp ,.Nm wtmp ,.Nm lastlog.Nd login records.Sh SYNOPSIS.Fd #include <utmp.h>.Sh DESCRIPTIONThe file.Aq Pa utmp.hdeclares the structures used to record information about currentusers in the file.Nm utmp ,logins and logouts in the file.Nm wtmp ,and last logins in the file.Nm lastlog .The time stamps of date changes, shutdowns and reboots are also logged inthe.Nm wtmpfile..PpThese files can grow rapidly on busy systems, daily or weekly rotationis recommended. If any of these files do not exist, it is not created.Thesefiles must be created manually and are normally maintained in either the script.Pa /etc/dailyor the script.Pa /etc/weekly .(See.Xr cron 8 . ).Bd -literal -offset indent#define _PATH_UTMP "/var/run/utmp"#define _PATH_WTMP "/var/log/wtmp"#define _PATH_LASTLOG "/var/log/lastlog"#define UT_NAMESIZE 8#define UT_LINESIZE 8#define UT_HOSTSIZE 16struct lastlog { time_t ll_time; char ll_line[UT_LINESIZE]; char ll_host[UT_HOSTSIZE];};struct utmp { char ut_line[UT_LINESIZE]; char ut_name[UT_NAMESIZE]; char ut_host[UT_HOSTSIZE]; long ut_time;};.Ed.PpEach time a user logs in, the.Xr loginprogram looks up the user's.Tn UIDin the file.Nm lastlog.If it is found, the timestamp of the last time the user loggedin, the terminal line and the hostnameare written to the standard output. (Providing the login is not.Em quiet ,see.Xr login 1 . )The.Xr loginprogram then records the new login time in the file.Nm lastlog ..PpAfter the new.Fa lastlogrecord is written ,.\" the.\" .Xr libutil 3.\" routinethe file.Nm utmpis opened and the.Fa utmprecord for the user inserted.This record remains there untilthe user logs out at which time it is deleted.The.Nm utmpfile is used by the programs.Xr rwho 1 ,.Xr users 1 ,.Xr w 1 ,and.Xr who 1 ..PpNext, the.Xr loginprogram opens the file.Nm wtmp ,and appends the user's.Fa utmprecord.The same.Fa utmprecord, with an updated time stamp is later appendedto the file when the user logs out. (See.Xr init 8 . )The.Nm wtmpfile is used by the programs.Xr last 1and.Xr ac 8 ..PpIn the event of a date change, a shutdown or reboot, thefollowing items are logged in the.Nm wtmpfile..Pp.Bl -tag -width shutdownxx -compact.It Li reboot.It Li shutdownA system reboot or shutdown has been initiated.The character.Ql \&~is placed in the field.Fa ut_line ,and.Li rebootor.Li shutdownin the field.Fa ut_name .(See.Xr shutdown 8and.Xr reboot 8 . ).Pp.It Li dateThe system time has been manually or automatically updated.(See.Xr date 1 . )The command name.Xr dateis recorded in the field.Fa ut_name .In the field.Fa ut_line ,the character.Ql \\*(Baindicates the time prior to the change, and the character.Ql \&{indicates the new time..El.Sh FILES.Bl -tag -width /var/log/lastlog -compact.It Pa /var/run/utmpThe.Nm utmp file..It Pa /var/log/wtmpThe.Nm wtmp file..It Pa /var/log/lastlogThe.Nm lastlog file..El.Sh SEE ALSO.Xr last 1 ,.Xr login 1 ,.Xr who 1 ,.Xr ac 8 ,.Xr init 8.Sh HISTORYA.Nm utmpand.Nm wtmpfile format appeared in.At v6 .The.Nm lastlogfile format appeared in.Bx 3.0 .
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -