레드햇에서 man 페이지의 기본 PAGER 로 "less" 를
사용하고 있는데 레드햇 9에 들어있는 less 에 문제가
있어 모두 && 로 처리됩니다.

다음 링크에 있는 패키지로 교체를 권합니다..
http://redhat.okwecan.com/pds/linux/korean/less/

참고로 /usr/bin/less 파일은 less-378-7 패키지의 파일과
충돌합니다.
설치시 아래의 force옵션을 주어 설치하시면 됩니다.

#rpm --force -ivh less-378-8KR.i686.rpm
2005/07/05 14:56 2005/07/05 14:56
fstab 에 LABEL=/ 이부분이 지워졌거나 실수로
수정 되었을 경우 리부팅시 Refair filesystem>>
이라는 코멘드 라인이 뜹니다.

위와 같은 코멘드 라인이 뜨면서 파일시스템이 마운트
되지 않는 경우 위 코멘드 라인에 다음과 같이 써서
정상적으로 마운트 하실 수 있습니다.

mount / -o remount,rw
2005/07/05 14:55 2005/07/05 14:55
ctime - Many times this is understood as a creation time but that wrong. Ctime is change time
of file stats such as ownership, what permissions it has etc.

mtime - File modification time. Value of mtime is updated when content of file changes.

atime - File access time. Value of atime is modified when file is opened.

풀어서 말하자면
-atime : 파일을 열어본 시간 또는 디렉토리에 cd명령으로 접근한 시간
-mtime :파일의 내용이 변경된 시간 ls -l 에서 나오는 시간
-ctime :파일의 정보가 변경된 시간 chmod, chown과 연관성이 있습니다.
2005/07/05 14:55 2005/07/05 14:55