유닉스
- 멀티태스킹, 멀티유저 지원 운영체제
- C언어로, 초기는 어셈블리어
package 관리
- 데비안(Deb)계열
- 레드햇(RPM)계열
포트 관련
http://xxx.xxx.xxx.xxx 나 http://xxx.xxx.xxx.xxx:80 으로 접속하는 결과는 같은 처리를 보여줍니다.
이는 브라우저 등에서 ip뒤에 붙는 port가 없는 경우, 기본port인 80으로 처리를 하는 것이고,
domain을 사용하는 경우는 domain -> ip adress로 변경하는 DNS를 거치게 되는데,
이때 DNS에 등록된 ip+port 정보로 처리를 합니다
https://sevendollars.tistory.com/43
https://lovefor-you.tistory.com/416
22번 SSH
80번 HTTP
ssh-server install
opensw@opensw-VM:~$ sudo apt update
[sudo] password for opensw:
opensw@opensw-VM:~$
opensw@opensw-VM:~$ sudo apt install openssh-server
opensw@opensw-VM:~$
opensw@opensw-VM:~$ sudo systemctl status ssh
opensw@opensw-VM:~$
IP 확인
opensw@opensw-VM:~$ ip addr
호스트에서 Ubuntu 가상머신으로 접속
user@pc:~$ ssh opensw@192.168.56.200
'전공 > 리눅스' 카테고리의 다른 글
리눅스 명령어 (0) | 2023.01.11 |
---|---|
리눅스 파일 속성 (0) | 2023.01.10 |
리눅스 프로그래밍 개발 환경 (0) | 2023.01.09 |
CentOS + Linux Services (0) | 2023.01.06 |
리눅스 쉘 (0) | 2022.12.27 |