Linux
- open source operating system(OS)
- Linus Torvalds가 1991년에 개발한 OS, 서버용 OS로 많이 사용됨.
- Linux 안에는 Debian, Ubuntu, Redhat, CentOS 등 다양한 OS들이 존재함.
- Linux 중 사용자가 가장 많은 것이 Ubuntu
- GUI(Graphical User Interface) 환경의 Windows, Mac과는 다르게 CLI(Command Line Interface) 환경
- 다른 OS에 비해 비교적 안정적인 환경에서 운영할 수 있음.
Linux의 CLI(Command Line Interface) 소개
- ls (file 목록 보여줌)
- ls -l (file 목록을 자세하게 보여줌)
- ls -a (숨김 파일까지 보여줌)
- cp a.txt a_copy.txt (a.txt를 a_copy.txt로 복사)
- cp -r folder folder_copy (foler를 복사할 때는 -r 필요)
LIST
'Computer Programming > AI' 카테고리의 다른 글
TIL_WSGI(Web Server Gateway Interface)란? (1) | 2023.11.01 |
---|---|
TIL_Web Server와 Web Application Server의 차이는? (0) | 2023.10.31 |
TIL_JavaScript, synchronous와 asynchronous (0) | 2023.10.25 |
TIL_Django, F expressions (1) | 2023.10.24 |
TIL_CNN, RNN, LSTM (0) | 2023.10.19 |