본문 바로가기

Linux6

'$> ps aux' column. [항목별 내용] USER : 프로세스 소유자의 로그인 이름 PID : 프로세스의 프로세스 ID RSS : 프로세스의 실제 메모리(상주 집합) 크기(1KB 단위) SZ : 프로세스 코어 이미지의 1KB 단위 크기 TTY : 프로세스를 위한 제어 워크스테이션 STAT : 프로세스 상태를 포함하고 있습니다. (0 : 존재하지 않음 , A : 사용 중 , I : 중간 , Z : 취소 , T : 중지 , K : 사용가능한 커널프로세스) STIME : 프로세스의 시작 시간 TIME : 프로세스에 대한 총 수행 시간 COMMAND : 명령 이름 %CPU : 프로세스 시작 이후에 프로세스가 CPU를 사용한 시간의 백분율. 값은 프로세스에서 CPU를 사용한 시간을 프로세스의 경과 시간으로 나누어 계산됩니다. 멀티프로세서.. 2008. 11. 16.
If all [else] fails, you may still be able to communicate with the Kernel. 예전에 본거였는데, 돌아다니다가 보여서 적어둬요☆ Alt+SysRq If all else fails, you may still be able to communicate with the Kernel. To use, just press the Alt and SysRq (PrintScreen) keys and one of the keys listed below, all together. You should try switch into a terminal window, if possible, first by pressing Ctrl+Alt+F2. If your computer is not responding you can use the following steps to perform a reboot with l.. 2008. 10. 26.
Directory Tree #include #include #include #include #include #include void printdir(char *dir, int depth) { DIR *dp; struct dirent *entry; struct stat statbuf; if((dp=opendir(dir))==NULL) { fprintf(stderr,"cannot open directory: %s\n", dir); return ; } chdir(dir); while((entry=readdir(dp))!=NULL) { lstat(entry->d_name,&statbuf); if(S_ISDIR(statbuf.st_mode)) { if(strcmp(".",entry->d_name)==0 || strcmp("..",entry.. 2007. 9. 19.
ubuntu [한글입력, 한/영 한자키, 글꼴] & [APM 설치] 와 기뻐라 /ㅅ/ ...근데 굴림, 돋움, 바탕 된다더니 굴림밖에 안뜨더라 ㅅㅂㄹㅁ ㄱ- 6.10 깔았는데 root 계정으로 로그인했더니 gnome이 영어라서 ㅈㅈ 치고 6.06 LTS 로 다시 돌아갔다. ...근데 LTS가 뭐지 ㄱ- [Ubuntu] 한글입력, 한/영 한자키, 글꼴 설정 | Unix and Linux 2005/12/28 20:26 http://blog.naver.com/nanocare/150000525858 참고문서 KoreanSetupHowto BeautifyKoreanFonts Xft Bold Patch 1. 로케일 언어 설정 코드: $ sudo dpkg-reconfigure locales ############# http://blog.naver.com/idesparado?Redir.. 2006. 11. 17.