From b08f4096533577934b885fa9df41d3881d141612 Mon Sep 17 00:00:00 2001 From: Gerard Beekmans Date: Thu, 15 Feb 2001 15:26:52 +0000 Subject: Initial XML commit git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@174 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/create-utmp.xml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 chapter06/create-utmp.xml (limited to 'chapter06/create-utmp.xml') diff --git a/chapter06/create-utmp.xml b/chapter06/create-utmp.xml new file mode 100644 index 000000000..fad585278 --- /dev/null +++ b/chapter06/create-utmp.xml @@ -0,0 +1,28 @@ + +Creating the /var/run/utmp, /var/log/wtmp and /var/log/btmp +files + + +Programs like login, shutdown, uptime and others want to read from and write +to the /var/run/utmp /var/log/btmp and /var/log/wtmp. These files contain +information about who is currently logged in. It also contains information +on when the computer was last booted and shutdown and a record of the +bad login attemps. + + + +Create these files with their proper permissions by running the +following commands: + + +
+ + touch /var/run/utmp /var/log/wtmp /var/log/btmp + /var/log/lastlog && + chmod 644 /var/run/utmp /var/log/wtmp /var/log/btmp + /var/log/lastlog + +
+ +
+ -- cgit v1.2.3-54-g00ecf