본문 바로가기
Linux System/Linux

[cmd] install 명령어

by rewyear 2020. 8. 5.

cp와 유사한 명령이지만 cp에 비하여 다양한 복사 옵션들이 존재하는 명령어

 

install -d 디렉토리 // 지정한 path에 디렉토리가 존재하지 않는다면 직접 만듬
ex) install -d /usr/lib/testlib/


install -m [권한 모드] 파일 디렉토리 // 파일에 대한 권한을 설정하여 디렉토리로 copy
ex) install -m 755 AAA alphabet/ // AAA의 권한모드가 755로 변경되어 copy됨

install -g // 소유그룹 설정 

install -o // 소유자 설정

install -s // strip이 수행. 심볼릭테이블이 삭제되므로 파일의 크기가 줄어듬
300x250

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

Console, Terminal, TTY  (0) 2022.03.10
[func] mmap() / munmap() - memory 맵핑  (0) 2021.07.23
[func] poll  (0) 2020.04.07
[func] fcntl  (0) 2020.04.07
Patch file 만들기(git diff 활용)  (0) 2020.03.04