ls가 파일을 다른 크기로 두 번 표시하는 이유는 무엇입니까?

ls가 파일을 다른 크기로 두 번 표시하는 이유는 무엇입니까?

50-redhat.conf가 파일 크기가 다른 이 디렉토리에 두 번 나열되는 이유는 무엇입니까?

ls -la /etc/ssh/ssh*

-rw-r--r--. 1 root root         1921 Aug  2 02:58 /etc/ssh/ssh_config
-rw-------. 1 root root         3667 Aug  2 02:58 /etc/ssh/sshd_config
-rw-r-----. 1 root ssh_keys      480 May 20 02:38 /etc/ssh/ssh_host_ecdsa_key
-rw-r--r--. 1 root root          162 May 20 02:38 /etc/ssh/ssh_host_ecdsa_key.pub
-rw-r-----. 1 root ssh_keys      387 May 20 02:38 /etc/ssh/ssh_host_ed25519_key
-rw-r--r--. 1 root root           82 May 20 02:38 /etc/ssh/ssh_host_ed25519_key.pub
-rw-r-----. 1 root ssh_keys     2578 May 20 02:38 /etc/ssh/ssh_host_rsa_key
-rw-r--r--. 1 root root          554 May 20 02:38 /etc/ssh/ssh_host_rsa_key.pub

/etc/ssh/ssh_config.d:
total 8
drwxr-xr-x. 2 root root           28 Aug  4 10:14 .
drwxr-xr-x. 4 root root         4096 Aug  4 10:14 ..
-rw-r--r--. 1 root root          581 Aug  2 02:58 50-redhat.conf

/etc/ssh/sshd_config.d:
total 8
drwx------. 2 root root           28 Aug  4 10:14 .
drwxr-xr-x. 4 root root         4096 Aug  4 10:14 ..
-rw-------. 1 root root          719 Aug  2 02:58 50-redhat.conf

답변1

이 두 파일은 서로 다릅니다. 나타나는 항목에는 ssh_config.dSSH 클라이언트 구성이 포함되어 있습니다. 에 있는 sshd_config.dSSH 서버 구성을 포함합니다 .

관련 정보