'System Story'에 해당되는 글 85건
- 벤더별 ps 명령어로 명령어 라인 모두 보기 2010/03/24
- 웹서버 접속제한 설정하기 (.htaccess) 2010/03/09
- .htaccess 특정폴더 패스워드 걸기 2010/03/09
- /usr/lib/dld.sl: Can't open shared library: /usr/local/lib/libssl.sl 2010/03/03
- IP주소체계 및 네트워크 작동법 2010/02/27
- HP-UX 11.11(64bit)에 Oracle 9.2.0.1 설치하기 2010/02/27
- Unix History (유닉스 역사) 도표 2010/02/27
- ksh shell에서 bash TAB키 자동 완성기능 사용하기 2010/02/27
- 유닉스 시스템 SHELL 변경 2010/02/27
- UNIX의 역사 2010/02/27
- 아파치 웹서버 로그 파일 상세분석 2010/02/27
- vi 에서 문자열 찾기/바꾸기 총정리 2010/02/27
- hp-ux rcp를 이용한 데이터 전송 2010/02/26
- 웹에서 터미널 원격 접속 2010/02/26
- hp unix reboot & shutdown 2010/02/26
- scp를 이용한 파일 전송 2010/02/26
- SCP 사용법 2010/02/26
- UNIX 명령어 정리 2010/02/26
- HP-UX 쉘 명령어 총정리 2010/02/26
- 유닉스 명령어 요약 (Sun,AIX,HP) 2010/02/26
벤더별 ps 명령어로 명령어 라인 모두 보기
1) solaris
/usr/ucb/ps -auxww
-a Includes information about processes owned by others.
-u Displays user-oriented output. This includes fields USER, %CPU, %MEM, SZ, RSS, and START as described below.
-x Includes processes with no controlling terminal.
-w Uses a wide output format (132 columns rather than 80). If the option letter is repeated, that is, -ww, uses arbitrarily wide
output. This information is used to decide how much of long commands to print.
2) hp-ux
ps -ex
-e Select all processes.
-x Shows the command line in extended format.
3) linux
ps -auxww
-a select all processes on a terminal, includ-ing those of other users
-u user user name
-x select processes without controlling ttys
-w wide output
4) AIX
ps -aeww
-a Displays information about all processes with terminals (ordinarily only the user's own processes are displayed).
-eww Wraps display from the e flag as many times as necessary.