1 生产环境发现一台服务器系统时间产生偏差,造成服务异常,请帮忙校正
##先分析硬件时间不对还是系统时间不对,如果是系统时间不对: [root@localhost ~]# hwclock -w [root@localhost ~]# ##如果是硬件时间不对: [root@localhost ~]# hwclock -s [root@localhost ~]#
也可以使用ntp来同步:
[root@localhost ~]# /usr/sbin/ntpdate time.nist.gov
2.生产有一个数据同步脚本需要执行很长时间,怎样做到无人值守,在管理工具退出的情况下,脚本依然能正常运行。
让脚本在后台执行,断网或是其他情况仍能够在服务器上执行,即:
[root@localhost ~]# mysqlRsync.sh &
或者使用screen:
[root@localhost ~]# screen -S test 在另一个机器上ssh登陆,使用screen -x test连接上面的会话。之后执行脚本: [root@localhost ~]# mysqlRsync.sh ctrl+a,d 剥离会话 screen -r test恢复会话,发现脚本还在运行
3 Linux系统中命令共分为内建命令和外部命令,请分别阐述定义并举例。内建命令、外部命令,别名的优先级是什么?如何定义命令别名以及在执行命令的时候不使用别名?
Linux的命令分为内部命令和外部命令:1.内部命令在系统启动时就调入内存,是常驻内存的,所以执行效率高。2.外部命令是系统的软件功能,用户需要时才从硬盘中读入内存。 关于内置命令(内置命令都写入到了bash当中): [root@localhost ~]# ll /bin/bash -rwxr-xr-x. 1 root root 868692 Jul 18 2013 /bin/bash kill是一个内置命令: [root@localhost ~]# type kill kill is a shell builtin 外部命令是存放在这些目录下的命令: [root@localhost ~]# echo $PATH/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin:/root/script ssh是一个外部命令: [root@localhost ~]# type ssh ssh is /usr/bin/ssh
优先级别排序:别名命令>内置命令>外部命令
不使用别名:
方法1:写命令全路径 /bin/ls test.log 方法2:命令前面加\ [root@localhost ~]# \grep root /etc/passwd root:x:0:0:root:/root:/bin/bash operator:x:11:0:operator:/root:/sbin/nologin 方法3:命令加' '[root@localhost ~]# 'grep' root /etc/passwd root:x:0:0:root:/root:/bin/bash operator:x:11:0:operator:/root:/sbin/nologin
4 hash的作用是什么?请列举出常见的使用方式。
Hash:
系统初始hash表为空,当外部命令执行时,默认会从PATH路径下寻找该命令,找到后会将这条命令的路径记录到hash表中,当再次使用该命令时,shell解释器首先会查看hash表,存在将执行,如果不存在,将会去PATH路径下寻找。利用hash缓存表可大大提高命令的调用速率
Hash常见用法:
hash 显示hash缓存
hash -l 显示hash缓存,可作为输入使用
hash -p path name 将命令全路径path起别名为name
hash -t name 打印缓存中name的路径
hash -d name 清除name缓存
hash -r 清空缓存
5 创建一个文件,文件名格式为 liangchen-当前时间(年-月-日).log
[root@localhost ~]# touch liangcheng-`date +%F`.log
6.history命令总结
对于history已经在我的有道笔记有了详细总结(实在太长,笔记格式复制不上去,看我的笔记也行)
http://note.youdao.com/noteshare?id=ab9ad95d093455fb6bfd9513570e724d
原创文章,作者:21期王逸凡,如若转载,请注明出处:http://www.178linux.com/52832