2014년 4월 11일 금요일

[기타] SMART 가이드라인

SMART 가이드라인

  • Specific 구체적인
  • Measurable 측정가능한
  • Agreed to, Attainable, Achievable 달성가능한
  • Realistic 현실적인
  • Time-bound 시간 제한적인

2014년 3월 13일 목요일

[Isilon] InsightIQ root password

administrator@isilon-insightiq:~$ sudo su -
[sudo] password for administrator:
root@isilon-insightiq:~#
root@isilon-insightiq:~#
root@isilon-insightiq:~# passwd
Enter new UNIX password:
Retype new UNIX password:
passwd: Authentication token manipulation error
passwd: password unchanged

2014년 1월 2일 목요일

[용어설명] IT 용어

PIN = Personal Identification Number
 > 기존 마그네틱 보다 암호화 강화됨. 
 > 집적회로(IC) 칩에 저장된 비밀번호 
 > 휴대폰, 신용카드 등에서 활용

EOSL
 > End of Service Life

N/A
 > Not Applicable 해당없음
 > Not Available 자료없음, 이용불가

SDN
 > Software Defined Network

CIM
 > Common Information Model

Multi-Tenant
 > 클라우드 환경에서 다수의 인프라가 공존하는 상태를 의미.
 > 클라우드의 기본 전제가 됨.
EP
 > Enterprise Portal

TBD
 > To Be Determined
 > 아직 정해지지 않았음

NFV
 > Network Function Virtualization

DPDK
 > Data Plane Development Kit

SKU
 > stock keeping unit (재고 보유 단위)


2013년 12월 17일 화요일

[Network] ping 1초 단위 확인

[Windows]
* 1초 설정 시 그냥 ping 명령어 사용
  ping -w 1000을 사용할 경우도 그냥 ping 과 같음

* 1초 이상의 응답 대기 시간 설정 방법
5초로 설정 시 ping -w 5000 을 사용

경로가 없을 때,  "Destination net unreachable" 메시지
응답 "Request timed out"은 기본 시간 간격인 1초 동안 ping 명령에 대한 응답이 없음을 의미

참조링크: https://msdn.microsoft.com/ko-kr/library/cc737478(v=ws.10).aspx



[Linux의 경우]

ping -i 옵션을 주면 됨. (초단위임)

예를 들면,
ping -i 1 8.8.8.8 은 1초,
ping -i 0.1 8.8.8.8은 0.1초

2013년 9월 4일 수요일

[P2V] A specified parameter was net correct. spec.synchronizeImmediately.

Error Messages : A specified parameter was net correct. spec.synchronizeImmediately.


아래 체크를 빼면 된다.



2013년 7월 30일 화요일

Windows 7 - Precess kill

Windows 7에서 Precess kill 하는 방법

C:\Users\SID>tasklist

이미지 이름                    PID 세션 이름              세션#  메모리 사용
========================= ======== ================ =========== ============
System Idle Process              0 Services                   0         24 K
System                           4 Services                   0      1,760 K
...
firefox.exe                   4800 Console                    1    240,112 K
POWERPNT.EXE                  1628 Console                    1  1,452,836 K
audiodg.exe                   1572 Services                   0     23,040 K
taskeng.exe                   1724 Services                   0      6,012 K
cmd.exe                       6140 Console                    1      3,780 K
conhost.exe                   6996 Console                    1      8,368 K
plugin-container.exe          2480 Console                    1     17,348 K
FlashPlayerPlugin_11_7_70     6204 Console                    1     11,384 K
FlashPlayerPlugin_11_7_70     5448 Console                    1     25,516 K
tasklist.exe                  6472 Console                    1      6,588 K
WmiPrvSE.exe                  2036 Services                   0      7,120 K

C:\Users\SID>taskkill /IM POWERPNT.EXE /F
성공: 프로세스 "POWERPNT.EXE"(PID 1628)이(가) 종료되었습니다.

C:\Users\SID>