Soy Library

[Linux] 리눅스 기초 본문

Study/Linux

[Linux] 리눅스 기초

Soy_Hwang 2022. 3. 5. 20:35

Linux: 1991년도에 Linus Torvalds가 최초로 만듦. 

 

배포 버전은

1. 데비안: Debian, Ubuntu, KNOPPIX 

2. RedHat계열: fedora, redhat enterprise, CentOS..

3. Slackware계열: openSUSE, SUSE Linux Enterprise

 

Linux shell 종류 

- sh (bourne shell) : 가장 근본이 되는 unix의 쉘. super shell. 

- bash : linux의 super shell. 

- csh : c 문법을 쓰는 shell.

 

Linus file system directories

- /bin : 기본 명령어

- /etc : 기타정보들, config, passwd, rc.d 

- /home: 실제로 user들이 있는 home

- /root : root home 디렉토리 

- /proc 

- /sbin

- /var : 로그파일, ftp(file transfer protocol), spool, mail

- /usr : source or programs 

- /lost+found : 휴지통같은 개념

- inode

 

Prompt

- # : root 사용자

- $ : 일반 사용자

 

Command line tips

- tap : 자동완성

- up & down

- !~ : 히스토리의 아래부터 찾아서 ~로 시작하는 걸 찾아라

- !! : 바로 위에서 실행한 명령

- ctrl + A, ctrl + E : 제일 앞으로, 제일 뒤로 

- history

- man : 설명 (manual) 

- whoami : 사용자가 누구인지 알려줌

- pwd: present workind directory

- cd : change directory

- ls -al : 현재 디렉토리의 파일 리스트 보여줌

 

 

 

 

'Study > Linux' 카테고리의 다른 글

[Linux] 파일의 위치확인 및 압축과 묶기  (0) 2022.03.12
[Linux] 사용자 정보 관리  (0) 2022.03.12
[Linux] vi editor 실습  (0) 2022.03.08
[Linux] vi 에디터  (0) 2022.03.06
[컴퓨터 용어] 컴퓨터 용어 기초  (0) 2022.03.05