1. file & directiory 리눅스는 문자를 입력해 제어를 한다. (CLI (command line interface) GUI ) pwd : 현재 내가 어디에 위치해 있는지 확인 mkdir hello_linux : 디렉토리 생성 touch empty_file.txt : 비어있는 파일 생성 ls -l 각각의 파일과 디렉토리를 자세히 보여줌 (-l : 파라미터) cd hello_linux/ : 디렉토리로 이동 cd /home/ubuntu : 가고자 하는 디렉토리로 이동 cd .. : 현재 디렉토리의 부모 디렉토리로 이동 rm hello_linux : 삭제 실패 rm empty_file.txt : 삭제 성공 rm -r hello_linux : 삭제 성공 ( -r : recursive (안에 있는 모든..