원문 : http://www.ischo.net -- 조인상 // 시스템 엔지니어

Writer : http://www.ischo.net -- ischo // System Engineer in Replubic Of Korea

+++++++++++++++++++++++++++++++++++++++++++++++++++++++

 

본문 : http://www.ischo.net -- 조인상 //시스템 엔지니어

+++++++++++++++++++++++++++++++++++++++++++++++++++++++


>>패스워드  변경된 시간이나 타임을 로그로 쌓아주는거 없나요?

>패스워드가 변경된 시간은 바로 직전에 변경된 타임을 확인할 수 있고요.
>로그로 남는것은 없는것으로 압니다.
>
>직전 변경된 시간은
>
>cat /etc/security/passwd 하셔서 해당 유저의  lastupdate로 확인하시면 됩니다.
>
>cics:
>        password = YPtO4K39L2Ia.
>        lastupdate = 956124518
>        flags =
>
>
>lastupdate 다음에 오는 수는 초(second)로 1970.1.1부터 현재 시간까지를 초로 환산한 수치입니다.

/etc/security/passwd  File
--------------------------
- http://publib16.boulder.ibm.com/doc_link/en_US/a_doc_lib/files/aixfiles/passwd_security.htm#a1219924

lastupdate 다음에 오는 수를 Date로 바꾸는 것은 아래의 freeware Windows 프로그램으로 가능합니다.
- http://www.snapfiles.com/get/unixtimestamp.html

C program to convert UNIX time into standard date formats
-------------------------------------------------------
If you compile this as ptime, then you get the human readable info as:
UNIX> ptime  859956093
Tue Apr  1 23:41:33 1997

/*
* ptime.c
*
* mhpower@shamash.org, 21 October 1997
*
* Prints a human-readable representation of a Unix time value specified on the command line.
* If no value is specified, the current time is used.
*/
#include <stdio.h>
#include <time.h>
#include <sys/types.h>

main(argc, argv)
  int argc;
  char *argv[];
{
  time_t t;

  t = (argc == 2) ? atoi(argv[1]) : time(0);
  if (argc > 2)
    puts("usage: ptime [integer_time_value]");
  else
    fputs(ctime(&t), stdout);
}
번호 제목 글쓴이 날짜 조회 수
공지 [공지] 게시자료 열람자유. 불펌금지입니다. 조인상 2010.12.07 120164
51 NFS를 이용한 백업스크립트 조인상 2010.05.11 17549
50 장비별 OS 설치 가능버전 리스트 조인상 2010.05.11 17522
49 root 패스워드 잊어 버렸을때 지우는 방법 조인상 2010.05.11 17388
48 AIX 5L V5.3 TL5 부터 제공되는 보안 설정 조인상 2011.04.21 17317
47 Power5 Hardware Information Reference Code file 조인상 2010.11.10 17313
46 cde 로그인 문제시 조인상 2010.05.11 17299
45 IBM p시리즈에 ess800 볼륨 멀티패스로 붙이기 file 조인상 2010.05.11 17137
44 FastT600 어레이 구성방법 메뉴얼 file 조인상 2010.05.11 17112
43 PowerHA SystemMirror 7.1 Update 조인상 2012.02.25 17111
42 default gateway odm에서 정보 삭제하는 방법 조인상 2010.05.11 17012
41 아답터 hot plug(hot swap) 방법 조인상 2010.05.11 16976
40 pSeries_Family_Nutshell - 20060907 file 조인상 2010.05.11 16928
39 시간 동기화시키기 조인상 2010.05.11 16885
38 gcc 4.11 다운 받는곳 조인상 2010.05.11 16767
37 AIX Essentials - Asynchronous I/O 조인상 2011.12.02 16759
36 C 컴파일러 라이센스 입력방법 조인상 2010.05.09 16600
35 로그인 다수 실패해서 로그인이 안될때 조인상 2010.05.11 16538
34 JFS2 파일시스템 수퍼블록이 훼손 되었을 경우 조인상 2010.05.11 16521
33 IBM pSeries, Storage 전원스펙 file 조인상 2010.05.11 16456
32 IBM Ess800 storage 관련 조인상 2010.05.11 16389
서버에 요청 중입니다. 잠시만 기다려 주십시오...