Linux
-
자주 사용하는 리눅스 커맨드 (Commonly used Linux commands by ChatGPT)Linux 2022. 12. 15. 21:47
ChatGPT에 자주 사용하는 리눅스 커맨드를 알려달라고 하니 10개의 커맨드를 알려줬다. The most commonly used Linux commands Here are some examples of the most commonly used Linux commands, along with a brief description of what they do: ls: Lists the files and directories in the current directory. For example, ls would print the names of all the files and directories in the current directory to the terminal. cd: Changes the curre..
-
Linux - 유저 그룹 권한Linux 2022. 6. 17. 18:16
유저와 그룹은 고유의 권한이 있다. 이러한 권한은 주로 파일에 적용된다. 파일 권한 정의 - r: 읽을수 있는지 - w: 쓸수 있는지 - x: 실행할 수 있는지 이러한 권한은 유저(User)와 그룹(Group), Other(어디에도 속하지 않은)에 대해서 각각 정의 할 수 있다. 유저 그룹 Other +-+-+-+ +-+-+-+ +-+-+-+ |R|W|X| |R|W|X| |R|W|X| +-+-+-+ +-+-+-+ +-+-+-+ 4 2 1 4 2 1 4 2 1 $ ls -al -rw-r--r-- 1 yundream develop 5632 2006-04-19 18:09 uname.c -rwxr-xr-x 1 yundream develop 5632 2006-04-19 18:09 yundream.txt 출처 ht..
-
Linux - 모니터링(cpu, 메모리)Linux 2022. 6. 11. 00:27
CPU 코어 전체 개수 grep -c processor /proc/cpuinfo 물리 CPU 수 grep ^processor /proc/cpuinfo | wc -l CPU당 물리 코어 수 grep 'cpu cores' /proc/cpuinfo | tail -1 하이퍼스레딩 확인 cat /proc/cpuinfo | egrep 'siblings|cpu cores' | head -2 siblings: 8 cpu cores: 4 siblings가 cpu cores 2배이므로 하이퍼스레딩 활성화 메모리 용량 확인 cat /proc/meminfo | grep MemTotal