1. 터미널 종료(exit, ctrl+d)
user@ubun:~$ exit
user@ubun:~$ ^d
2. 터미널 명령행 편집
- 문자 지우기 : backspace 혹은 del 키를 이용 한글자씩 삭제
- 단어 지우기 : ctrl+w 를 이용 한 단어씩 삭제 가능, 단어는 공백으로 구분
- 행 지우기 : ctrl+u 를 이용 한 줄 단위로 삭제
3. 터미널 명령의 구조
- 명령 [옵션] [인자] 의 형식으로 구성
- 명령 : 리눅스를 사용 하기 위해 사용 되는 명령문
- 옵션 : 명령의 세부 기능을 선택, 옵션은 - 혹은 -- 으로 시작 하고 영문 소문자 혹은 대문자로 구성 됨'
- 인자 : 명령으로 전달 되는 값, 주로 파일명 혹은 디렉터로명 이 사용
4. 기초 명령어
- date : 현재 날짜와 시간을 출력
- clear : 터미널 화면 내용 지우고 회쪽 상단으로 커스 이동
user@ubun:~$ clear
- man : 명령어의 사용 메뉴얼를 보여줌
- ls 명령어에 대한 man 명령어 실행 화면
user@ubun:~$ man ls
LS(1) User Commands LS(1)
NAME
ls - list directory contents
SYNOPSIS
ls [OPTION]... [FILE]...
DESCRIPTION
List information about the FILEs (the current directory by default).
Sort entries alphabetically if none of -cftuvSUX nor --sort is speci‐
fied.
Mandatory arguments to long options are mandatory for short options
too.
-a, --all
do not ignore entries starting with .
-A, --almost-all
do not list implied . and ..
--author
with -l, print the author of each file
Manual page ls(1) line 1 (press h for help or q to quit)
- passwd : 사용자 비밀 번호 변경
sinki@raspberrypi5:~$ passwd
sinki에 대한 암호 변경 중
현재 비밀번호:
새 암호:
새 암호 재입력:
passwd: 암호를 성공적으로 업데이트했습니다
sinki@raspberrypi5:~$