- 리눅스 개요 NOTE01 📗 - 1강, 2강
- 리눅스 설치 NOTE02 📗 - 3강, 4강, 5강
- 리눅스 네트워크 설정 - 6강, 7장
- 베이직 커맨드 (기본명령어)
- 베이직 커맨드 (cp/mv)
- vi editor
- User account management
- 권한(permission)
- Ownership
- 특수권한(sticky bit / SetUID / SetGID)
- ACL & 권한 응용 계정 관리
- Umask
- Compress1
- Compress2
- RPM 1
- Filesystem & mount
- Root password 관리 & GRUB bootloader
- Process
- Target mode(run level)
- Linux에서 아파치 서버 실행
- Apache Download
- sudo apt-get install apache2
- sudo service apache2 start: Apache 시작
- sudo service apache2 stop: Apache 서버 멈추기
- 'http://localhost'를 입력하면 웹서버 실행 완료
- Apache setting
- 시작 apache 서버 실행 위치는 '/var/www/html'
- 초기 실행 위치를 수정하기
- sudo nano /etc/apache2/apache2.conf
- 수정: <Directory /var/www/html> -> <Directory [원하는 위치]>
- sudo nano /etc/apache2/sites-enabled/000-default.conf
- 수정: DocumentRoot /var/www/html -> DocumentRoot [원하는 위치]
- sudo /etc/init.d/apache2 restart
- Apache Download