일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- 우선순위
- React
- Til
- 자료구조
- reactnative
- NextJS
- CSS
- 데이터전송
- 끈기
- 러닝자바스크립트
- 개발공부
- 자바스크립트
- scope
- docker
- Sequence
- coursera
- Linux
- nodejs
- Andrew Ng
- HTTP
- 회고
- 1일1문장
- 클로저
- 스파르타코딩클럽
- 객체
- multer
- javascript
- Machine Learning
- 리눅스
- ES6
- Today
- Total
목록Linux (4)
해나아부지 개발일지
Basic iptables options -A - Append this rule to a rule chain. Valid chains for what we're doing are INPUT, FORWARD and OUTPUT, but we mostly deal with INPUT in this tutorial, which affects only incoming traffic. -L - List the current filter rules. -m conntrack - Allow filter rules to match based on connection state. Permits the use of the --ctstate option. --ctstate - Define the list of states f..
인터넷이 사용이 가능하다면 yum install로 간편하게 의존성까지 설치가 되겠지만 폐쇄망이라면 binary package와 source package를 다운받아 local install을 해주어야 한다. centos.pkgs.org/ CentOS Repositories - pkgs.org RPM Fusion Nonfree Updates Testing Third-Party x86_64 0 - - - centos.pkgs.org 리눅스 패키지를 다운받을 있는 사이트다. 'iptables'를 검색하면 관련 패키지들이 보여진다. 자신의 운영체제에 맞는 패키지를 선택한다. 32bit는 i686, 64bit는 x86_64를 선택하면 된다. 최신 linux는 대부분 64bit라고 한다. 64bit라면 iptabl..
설치파일 다운로드 최근 os들은 모두 64비트이다. 다음 명령어로 확인 가능하다. getconf LONG_BIT linux binaries(x64)를 다운로드한다. 폐쇄망 서버로 파일 전송 sftp, scp를 2가지 방법이 있다. sftp는 보내기,받기 가능하고 scp는 보내거나 받기만 가능하다. scp 방식 파일 복사 //기본 포트 22 scp 파일경로/파일이름 [user]@[ip]:[복사될디렉토리경로] // 포트가 따로 지정되어 있을 경우 scp -P [포트] 파일경로/파일이름 [user]@[ip]:[복사될디렉토리경로] 디렉토리 복사(-r) scp -r /test_dir root@192.168.0.10:/home tar.xz 컴파일(압축해제) tar --help -x, extract files fro..
df -h 파티션들의 정보를 정리해서 보여주는 명령어 [root@ncdcams /]# df -h Filesystem Size Used Avail Use% Mounted on devtmpfs 1.9G 0 1.9G 0% /dev tmpfs 1.9G 0 1.9G 0% /dev/shm tmpfs 1.9G 8.9M 1.9G 1% /run tmpfs 1.9G 0 1.9G 0% /sys/fs/cgroup /dev/mapper/centos-root 10G 1.3G 8.8G 13% / /dev/sda1 1014M 150M 865M 15% /boot /dev/mapper/centos-home 25G 33M 25G 1% /home tmpfs 379M 0 379M 0% /run/user/0 주요 파티션으로는 root 파티션과..