본문 바로가기

분류 전체보기88

network protocol 🧀 network: 두 대 이상의 컴퓨터들을 연결하고 서로 통신(이야기)할 수 있는 것 | 컴퓨터들이 통신 기술을 이용하여 그물망처럼 연결된 통신 이용 형태 🧀 protocol: an established set of rules that determine how data is transmitted between different devices in the same network => allwos connected devices to communicate with each other, regardless of any differences in their internal processes, structure or design -------------------------------------------- -.. 2021. 4. 30.
data units in computer systems //*********컴퓨터는 0과 1만의 형태를 이해한다[전기적 신호 0->off 1->on]**********// 📅 bit: 2진수 binary로 0 or 1의 값을 가짐 📅 nibble: made up of 4 bits => 16 possible binary values, 0000 to 1111 📅 byte: made up of 8 bits => 256 possible binary values, 컴퓨터가 일반적으로 사용하는 단위 📅 kilobyte: 1024 bytes => roughly one full A4 page of text 📅 megabyte: 1024 kilobytes => mp3 music file is around 4MB 📅 gigabyte: 1024 megabytes => DVD c.. 2021. 4. 28.
zabbix overview 🔥 zabbix: 수많은 종류의 네트워크 서비스, 서버 등의 네트워크 하드웨어를 감시하고 추적하여 관리자에게 장애 발생을 신속히 알리기 위해 만들어진 네트워크 관리 시스템이다 => monitoring tool [zabbix structure] 🔥 zabbix-server: a central repository for storing data(supported versions including MySQL/PostgreSQL/SQLite) collected by zabbix agents and uses a database for storing historic data and trends 🔥 zabbix-agent: zabbix works by "deploying zabbix agents on the machi.. 2021. 4. 23.
Git사용법 Git이란? 버전 관리 시스템 소스코드를 여러 개발 PC와 저장소에 분산해서 저장 Git의 3가지 상태 Committed : 데이터가 로컬 데이터베이스에 저장됨 Modified : 수정한 파일을 아직 로컬 데이터베이스에 커밋하지 않음 Staged : 현재 수정한 파일을 곧 커밋할 것이라고 표시함 Git이 하는 일 워킹 트리(프로젝트의 특정 버전을 Checkout함)에서 파일을 수정 Staging Area에 파일을 Stage해서 커밋할 스냅샷을 생성 Staging Area에 있는 파일들을 커밋해서 Git 디렉터리에 영구적인 스냅샷으로 저장 Git설치 https://git-scm.com/download/linux https://git-scm.com/download/mac https://git-scm.com/.. 2021. 4. 23.