为什么 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.d包含 SSH 客户端配置。中找到的sshd_config.d包含 SSH 服务器配置。

相关内容