如果rpm包没有被篡改,我可以通过哪种方法查看文件的文件类型
ls -l 或者 ll (ls -l 别名)
# ll anaconda-ks.cfg //看第一个字符
-rw-------. 1 root root 2460 6月 1 23:37 anaconda-ks.cfg
file 命令
[root@xiaochen ~]# file anaconda-ks.cfg
anaconda-ks.cfg: ASCII English text
stat 命令
# stat install.log //查看文件的详细属性(其中包括文件时间属性)