기록해! 정리해!

Rinux (7) 본문

Rinux

Rinux (7)

zsuling 2022. 6. 7. 16:24

fedora20_4.ppt
1.23MB

 

º

du  --디렉토리별 디스크 사용정보 체크

df --디스크별(하드별) 남은공간 체크

[root@localhost ~]# df -h

/dev/sda1   976M  150M  760M  17% /boot  --하드디스크의 장치 드라이브

 

[root@localhost ~]# du /home 

 

free -m --시스템 메모리 사용상태 확인

[root@localhost ~]# free -m

 

swap: 하드디스크를 메모리처럼 사용할 수 있는 기법

 

º

[root@localhost /]# cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.old

 --수정해야할 때는 우선 원본파일을 .old이런식으로 복사해서 저장하도록하자

 

º

#> systemctl  status  httpd.service  (상태확인)

#>systemctl  start  httpd.service ( stop | restart )

#>systemctl  enable  httpd.service ( disable )

 : httpd 를 부팅 시 자동 실행, start나 stop이나 restart를 껐다 켜도 자동실행할 수 있음

#> systemctl list-units --type=service

: 실행 중인 모든 서비스 목록을 보려면 다음과 같이 명령합니다.

 

º 설정파일은 수정하고나면 무조건 데몬을 restart해줘야함

 

º

-rw-r--r--   1 root root    50  6월  7 12:09  aaa1
lrwxrwxrwx   1 root root     3  6월  7 12:08  aaa2 -> aa1 --심볼리링크

-rw-r--r--   1 root root   187  6월  3 15:59  test01.c --일반파일
-rwxr-xr-x   1 root root 21840  6월  3 15:59  test01.exe 
drwxr-xr-x   2 root root  4096  6월  7 11:55  test100  --디렉토리

 

[root@localhost ~]# cd /dev
[root@localhost dev]# ls -l -a
crw-------   1 root  root     10,  57  6월  7 09:27 vmci 
brw-rw----   1 root  disk      8,   0  6월  7 09:27 sda 
brw-rw----   1 root  disk      8,   1  6월  7 09:27 sda1
brw-rw----   1 root  disk      8,   2  6월  7 09:27 sda2

rwx            rwx            rwx

소유자    소유그룹     모든 사용자

 

(계정을 만들면 소유자가 되고 소유그룹이 된다)

 

 

º chmod

[root@localhost ~]$ touch test1004
[root@localhost ~]$ ls -l

-rw-rw-r--  1 root root     0  6월  7 15:55 test1004

[root@localhost ~]$ chmod 600 test1004
[root@localhost ~]$ ls -l

-rw-------  1 root root     0  6월  7 15:55 test1004

 

[root@localhost ~]$ chmod 777 test1004
[root@localhost ~]$ ls -l

-rwxrwxrwx  1 root root    0  6월  7 15:55 test1004   --x가 있으니까 실행할 수 있는 파일이 됨

 

º chown 

(공개소스를 다운받아서 내껄로 핸들링 할 때- 파일이동, 압축풀기 등을 경험가능) 

 

[root@localhost ~]# cd /home/korea
[root@localhost korea]# ls -l
합계 60
-rw-rw-r--  1 korea korea    58  6월  3 16:16 hello.c

 

[root@localhost korea]# chown root hello.c
[root@localhost korea]# ls -l
합계 60
-rw-rw-r--  1 root  korea    58  6월  3 16:16 hello.c

 

 

 

 

 

 

 

 

'Rinux' 카테고리의 다른 글

Rinux (9) -쉘 스크립트 출력(echo)  (0) 2022.06.08
Rinux (8)- 그누보드  (0) 2022.06.07
Rinux 예제(3)  (0) 2022.06.07
Rinux 예제 (2)  (0) 2022.06.07
Rinux (6) - 기본 명령어  (0) 2022.06.07
Comments