본문 바로가기

전체 글

(24)
Windows 에서 IGMP Version 변경하기 IGMP 패킷 또는 Multicast stream 수신 테스트를 위해 Windows PC에서 VLC Player로 간단하게 테스트를 하는 경우, wireshark로 패킷을 캡쳐해보면 항상 IGMPv3 으로 Join 이 오는 것을 볼 수 있다. Windows의 default값이 IGMPv3으로 되어 있어서 그런 것인데, 내가 원하는 IGMP 버전 (IGMP v1 / v2 / v3)으로 변경하는 방법을 소개 한다. 1) 시작 -> 실행 -> regedit (또는 윈도우+R 키 -> regedit) 2) 왼쪽 폴더 목록에서 HKEY_LOCAL_MACHINE ->SYSTEM->CurrentControlSet->Services->Tcpip 순으로 이동 한다. 3) 오른쪽 빈 공간에서 마우스 오른쪽 클릭을 하여 새..
CPU load를 올리는 간단한 방법 cpu load를 임의로 올려서 테스트가 필요할 때, 아래와 같이 1 줄로 해결 할 수 있다. for i in 1 2 3 4; do while : ; do : ; done & done 결과 # for i in 1 2 3 4; do while : ; do : ; done & done # topMem: 185284K used, 176408K free, 0K shrd, 0K buff, 26116K cachedCPU: 90% usr 9% sys 0% nic 0% idle 0% io 0% irq 0% sirqLoad average: 5.20 1.69 0.60 5/85 2314 PID PPID USER STAT VSZ %VSZ CPU %CPU COMMAND2309 2306 admin R 3340 1% 3 25% s..
grep으로 파일 안에서 특정 단어 갯수 세기 grep을 이용하여 파일 안에서 특정 단어의 갯수를 세는 방법. 파일에 아래와 같은 내용이 있다고 했을 때, "word" 의 개수를 세어보자 wordexcelpowerpointwordword grep -o [단어] [파일명] | wc -w 결과jwsung@jwsung-ubuntu:~$ cat office.txtwordexcelpowerpointwordwordjwsung@jwsung-ubuntu:~$ grep -o word office.txt | wc -w3
Managed entity identifiers 1 ONTB-PON2 ONU data3 PON IF line cardholder4 PON IF line card5 Cardholder6 Circuit pack7 Software image8 UNIB-PON9 TC AdapterB-PON10 Physical path termination point ATM UNI11 Physical path termination point Ethernet UNI12 Physical path termination point CES UNI13 Logical N x 64 kbit/s sub-port connection termination point14 Interworking VCC termination point15 AAL1 profileB-PON16 AAL5 profile17..
OneNote 2016 데스크탑용 무료 다운로드 업무 자료 정리를 OneNote와 Evernote로 하고 있는데, PC를 새로 포맷 후 Windows 10 운영 체제에서 OneNote를 다운로드 받기 위해 페이지 (http://www.onenote.com/download?omkt=ko-kr)를 접속하면 이미 설치 되어 있다는 문구가 표시 된다. 물론 이것은 Windows 10에 내장 된 OneNote App를 말하는 것이고, 뭐 간단하게 사용할 것이면 나쁘지 않지만 가벼운 만큼 기능이 많이 빠져 있다. 내가 원하는 것은 요렇게 생긴 기능 많은 OneNote 2016 이란 말이다. 아까 말한 웹페이지로 다시 돌아가서, 밑을 자세히보면 '다음 플랫폼에서도 사용할 수 있습니다' 며, Windows 데스크톱 이라는 문구가 보인다.이것을 클릭하여 설치하면 우리..
SFF specifications SFF (Small Form Factor) Committee 는 초기 2.5인치 하드 디스크 드라이브의 규격을 정의하는 것에서 시작 되었다. 여기서 볼만한 문서들은 SFP와 관련된 것이 대부분 이다. INF-8074 SFP (Small Formfactor Pluggable) 1 Gb/s Transceiver INF-8074i - SFP (Small Form Factor) Transceiver INF-8077i - 10 Gigabit Small Form Factor Pluggable Module (XFP MSA) SFF-8024 SFF Committee Cross Reference to Industry Products SFF-8053 GBIC (Gigabit Interface Converter) SFF-8..
ser2net ubuntu 설치 방법 아래의 command를 순서대로 입력하여 ser2net application을 다운로드 한다. jwsung@jwsung-ubuntu:~$ add-apt-repository ppa:eugenesan/ppa jwsung@jwsung-ubuntu:~$ sudo apt-get update jwsung@jwsung-ubuntu:~$ sudo apt-get install ser2net -y 시리얼 연결 케이블은 USB to RS232를 사용 하였다. 케이블을 연결하기 전과 연결 후 lsusb 명령으로 device ID를 확인한다. jwsung@jwsung-ubuntu:~$ lsusbBus 001 Device 002: ID 0bda:0151 Realtek Semiconductor Corp. Mass Storage D..
우분투 SSH 서버 활성화 SSH 로 ubuntu에 접속하기 위해 openssh server 설치가 필요하다. 1. sudo apt-get install openssh-server 2. IP 확인 3. windows 에서 ssh 로 ubuntu 접속하기