개인 자료 정리 홈페이지 입니다.

Note > 리눅스 명령어 모음uname

By a3040, Published on Invalid Date

현재 시스템의 커널 및 운영 체제 정보를 표시하는 데 사용됩니다.


-a: 전체

-s: 운영 체제 이름 표시

-n: 네트워크 노드(호스트) 이름 표시

-r: 커널 릴리스 버전 표시

-m: 시스템 아키텍처 표시


uname -a

Note > 리눅스 명령어 모음hostname

By a3040, Published on Invalid Date

현재 시스템의 호스트 이름을 표시하는 데 사용됩니다. 호스트 이름은 컴퓨터 또는 네트워크 장치를 식별하는 데 사용되는 고유한 이름입니다.


example@example:~/nslookup$ hostname

a3040kr.cafe24.com

example@example:~/nslookup$ cat /etc/hostname

a3040kr.cafe24.com


Note > 리눅스 명령어 모음nslookup

By a3040, Published on Invalid Date

도메인 이름을 IP 주소로 또는 IP 주소를 도메인 이름으로 변환하는 데 사용되는 유틸리티입니다. 


도메인 이름을 IP 주소로 조회:

example@example:~/nslookup$ nslookup a3040.com

Server:     116.120.57.123

Address:    116.120.57.123#53


Non-authoritative answer:

Name:  a3040.com

Address: 183.111.227.134


Note > 리눅스 명령어 모음route

By a3040, Published on Invalid Date

OSI 모델에서 두 번째 데이터링크 계층의 프레임화된 패킷을 패킷내의 IP와 물리맥 주소를 이용해서 패킷의 경로를 제어할수 있도록 IP 경로를 추가, 삭제, 수정하고 네트워크 인터페이스와 관련된 정보를 확인하는데 사용하는 명령어입니다.


라우팅 테이블 확인하기: route


경로 추가하기:

route add -net 192.168.0.0 netmask 255.255.255.0 gw 192.168.1.1


경로 추가후 

- 패킷의 목적지 주소가 192.168.0.5인 경우, 이 주소는 192.168.0.0/24 네트워크에 속하므로 추가된 라우트에 따라 192.168.1.1을 통해 전송

- 192.168.126.5라면, 목적지 주소는 라우트에 해당하지 않으므로 기본 라우트를 사용하여 전송


경로 삭제하기:

route del -net 192.168.0.0 netmask 255.255.255.0


기본 게이트웨이 설정하기:

route add default gw 192.168.1.1


라우팅 경로 설정을 테스트 해보고 싶은 경우에는 virtualbox같은 툴 등을 이용해서 guest를 설치하고 virutalbox에서 가상 이더넷카드를 추가한 후 설정 테스트를 해볼수 있습니다.


Note > npm cli 명령어 모음npm help

By a3040, Published on Invalid Date

npm help

npm <command>


Usage:


npm install    install all the dependencies in your project

npm install <foo> add the <foo> dependency to your project

npm test      run this project's tests

npm run <foo>   run the script named <foo>

npm <command> -h  quick help on <command>

npm -l       display usage info for all commands

npm help <term>  search for help on <term> (in a browser)

npm help npm    more involved overview (in a browser)


All commands:


  access, adduser, audit, bugs, cache, ci, completion,

  config, dedupe, deprecate, diff, dist-tag, docs, doctor,

  edit, exec, explain, explore, find-dupes, fund, get, help,

  hook, init, install, install-ci-test, install-test, link,

  ll, login, logout, ls, org, outdated, owner, pack, ping,

  pkg, prefix, profile, prune, publish, query, rebuild, repo,

  restart, root, run-script, search, set, shrinkwrap, star,

  stars, start, stop, team, test, token, uninstall, unpublish,

  unstar, update, version, view, whoami