linux questions

来源:互联网 发布:mac air 远程桌面 编辑:程序博客网 时间:2024/05/04 20:38

(1)ntpdate ntp.fudan.edu.cn提示no server suitable for synchronization found 

1)防火墙问题:udp的123端口

2)上层路由器设置问题

解决方法:

yum install -y rdate

rdate time-b.nist.gov

rdate -s time-b.nist.gov

(2)实时监控文件内容

tail -f filename

(3)source file,sh、. file.sh、bash file.sh、sh file.sh和./file.sh区别

A:source file.sh和. file.sh是在当前bash中读取file.sh内容执行,file.sh无需执行权限;

B:bash file.sh和sh file.sh是当前bash的子shell中读取file.sh内容执行,当前bash是子shell的父亲,file.sh无需执行权限;

C:./file.sh需要执行权限;

(4)


0 0
原创粉丝点击