Sponsored Content
Full Discussion: [Solved] Last Login Log
Operating Systems Linux SuSE [Solved] Last Login Log Post 302575809 by hedkandi on Thursday 24th of November 2011 12:56:27 AM
Old 11-24-2011
[Solved] Last Login Log

Hello again

I am using SLES Enterprise 9, and 10 and I was hoping I could implement a user login logs like how medusa does for HP-UX. Is there an equivalent tool for Linux? I am heavily depended on /var/log/lastlog and last commands but surely there must be something more out there.

Or if anyone has medusa for Linux and is willing to share it it would be great!

Thank you

---------- Post updated 11-23-11 at 06:34 PM ---------- Previous update was 11-22-11 at 10:23 PM ----------

Ok, this is what I did. I googled for logwatch (apparently this is the only thing they have for free, and it works great with Linux) and downloaded the tarball. The report comes out like this:

Code:
my-xftp0:~ # logwatch

 ################### Logwatch 7.4.0 (03/01/11) ####################
        Processing Initiated: Thu Nov 24 10:31:32 2011
        Date Range Processed: yesterday
                              ( 2011-Nov-23 )
                              Period is day.
        Detail Level of Output: 0
        Type of Output/Format: stdout / text
        Logfiles for Host: my-xftp0
  ##################################################################

 --------------------- SSHD Begin ------------------------

 Users logging in through sshd:
    priti:
       191.255.XXX.XXX(my-c0005.myhq.itelligence.com.my): 2 times
    root:
       191.255.XXX.XXX(my-c0005.myhq.itelligence.com.my): 2 times

 SFTP subsystem requests: 2 Time(s)

 ---------------------- SSHD End -------------------------


 --------------------- Syslog-ng Begin ------------------------


 Syslog-ng reloaded:                1 Time(s)

 ---------------------- Syslog-ng End -------------------------


 --------------------- Disk Space Begin ------------------------

 Filesystem            Size  Used Avail Use% Mounted on
 /dev/sda1              50G  413M   47G   1% /
 devtmpfs              1.9G  140K  1.9G   1% /dev
 /dev/sda2              10G  9.6M   10G   1% /boot/efi
 /dev/sda4              50G  184M   47G   1% /home
 /dev/sda7             9.9G  151M  9.2G   2% /opt
 /dev/sda8             9.9G  165M  9.2G   2% /tmp
 /dev/sda5             9.9G  2.5G  7.0G  26% /usr
 /dev/sda6             9.9G  250M  9.1G   3% /var


 ---------------------- Disk Space End -------------------------


 ###################### Logwatch End #########################

But is there anything else out there? I am also not sure on how to tweak logwatch

---------- Post updated at 09:56 PM ---------- Previous update was at 06:34 PM ----------

Also I checked the services available for logwatch in /usr/share/logwatch/scripts/services and it doesn't track wtmp logs, I was hoping if anyone would know on how to add this to the logwatch monitoring. I am terrible at scripting!
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Is there a Login Log?

I know I can use the who and finger commands to see what users are currently logged in. Is there a log to show when a user last logged in & out? Or a way to see users that logged in & out on a specific date? Thanks. (2 Replies)
Discussion started by: Dave Miller
2 Replies

2. Solaris

[Solved] Solaris 10 - Ftp Login incorrect

Hey everyone, I am trying to get a 2GB patch cluster FTP'd to a solaris 10 server. I have tried logging in via ftp, and both with root as well as my personal account, I get "Login Incorrect." I have verified that I can log in using telnet. -bash-3.00$ netstat -a |grep ftp *.ftp ... (10 Replies)
Discussion started by: msarro
10 Replies

3. Solaris

[Solved] How to change my default login mode????

Hi guys, I have just installed Solaris 10 x86. My system boots into graphical login by default, I want to have text login only, where can I change that. I tried to use the linux and bsd concept of editing /etc/inittab, and change the default value to 3, but that doesn't work in Solaris. Please... (6 Replies)
Discussion started by: gabam
6 Replies

4. HP-UX

[Solved] root cannot login

Dear all, cannot login to a HP unix server using root as well as other logins. Even root also cannot enter. It seems that they have changed some permissions in / Any way of recovering the system or getting logged in . Thanks in advance Rj (8 Replies)
Discussion started by: jegaraman
8 Replies

5. UNIX for Dummies Questions & Answers

login profile[solved]

i vi .profile Set DATE `date +%m%d%Y%H%M`, but after logout/login, echo $DATE, it shows: Fri Mar 23 15:01:53 EDT 2012, i want to show: 032320121501 please ignore. vi /etc/profile, and export DATE=`date +%m%d%Y%H%M`, worked fine now. (0 Replies)
Discussion started by: lawsongeek
0 Replies

6. Forum Support Area for Unregistered Users & Account Problems

[SOLVED] matrixmadhan - login problem

Hi, This is user : matrixmadhan. Am unable to login despite repeated attempts. I tried recovering via forgot password, but neither of the email ids I gave isnt being recognized. Is there a way I could get some help? Thanks, -matrixmadhan (4 Replies)
Discussion started by: Unregistered
4 Replies

7. Shell Programming and Scripting

[Solved] Do not want to print sftp commands in log

Hi, While running my ksh file, I require the logs to be written to another file. For this I use the below code: write_log() { echo `date +"%d %h, %Y %H:%M:%S"` " : " $* >> ${LOG_FILE} } But inside my ksh file, am connecting to sftp server and executing some commands. So while i see... (8 Replies)
Discussion started by: confused_info
8 Replies

8. Shell Programming and Scripting

[solved] How to see log in real time?

Hi people I have a bash script with a line like this: python example.py >> log & But i can't see anything in the log file while python program is running only if the program ends seems to write the log file. "$ cat log" for example don't show anything until the program ends. Is there... (4 Replies)
Discussion started by: Tieso
4 Replies

9. Solaris

[solved] Ssh passwordless login not working

This is Solaris 10 and sorce+destination are non root user. Somehow it is broke and I am not able to fix it. Already checked permissions on both servers and authorized_keys entry of destination is same as id_rsa.pub of source server. I can not regenerate keys on source server because I do not know,... (0 Replies)
Discussion started by: solaris_1977
0 Replies

10. UNIX for Dummies Questions & Answers

[Solved] How to Redirect Output To Log File?

I have the below script, but when i execute it is still printing to screen is there a way i can stop this and just print everything to the log file. Thank you. #!/bin/bash exec > >(tee "/var/log/ScriptLogs/called_from_incrontab.log") 2>&1 DIR="$1" FILE="$2" echo "STEP 1: Datafile... (5 Replies)
Discussion started by: Ariean
5 Replies
mkdevmaps(1M)                                             System Administration Commands                                             mkdevmaps(1M)

NAME
mkdevmaps - make device_maps entries SYNOPSIS
/usr/sbin/mkdevmaps DESCRIPTION
The mkdevmaps command writes to standard out a set of device_maps(4) entries describing the system's frame buffer, audio, and removable media devices. The mkdevmaps command is used by the init.d(4) scripts to create or update the /etc/security/device_maps file. Entries are generated based on the device special files found in /dev. For the different categories of devices, the mkdevmaps command checks for the following files under /dev: audio /dev/audio, /dev/audioctl, /dev/sound/... tape /dev/rst*, /dev/nrst*, /dev/rmt/... floppy /dev/diskette, /dev/fd*, /dev/rdiskette, /dev/rfd* removable disk /dev/dsk/c0t?d0s?, /dev/rdsk/c0t?d0s? frame buffer /dev/fb ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWcsu | +-----------------------------+-----------------------------+ |Interface Stability |Obsolete | +-----------------------------+-----------------------------+ SEE ALSO
allocate(1), bsmconv(1M), attributes(5) NOTES
mkdevmaps might not be supported in a future release of the Solaris operating system. SunOS 5.10 8 Oct 2003 mkdevmaps(1M)
All times are GMT -4. The time now is 12:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy