当前位置:   article > 正文

linux相关的管理知识_linux上,移动硬盘没有正常umount就拔出会有什么影响

linux上,移动硬盘没有正常umount就拔出会有什么影响

linux相关的管理知识

关闭linux系统
linux系统不同于window,不能直接按开关键进行硬关机,
因为linux的文件系统是mount到具体的硬件 (例如硬件,CD)上的,关机前需要将文件系统与硬件umount,直接关机,系统没有umount的机会,会很容易造成文件系统的损坏。

shutdown -h now
  • 1

立刻关机 h指halt

shutdown -h +15
  • 1

延时15分钟关机

shutdown -r +15
  • 1

15分钟后重启 r 指reboot

Cmnd_Alias TOOLS = /bin/mount, /bin/umount, /sbin/shutdown
  • 1

为非root用户授权关机,mount,umount权限

配置文件相关

hosts
hosts.allow
hosts.deny
  • 1
  • 2
  • 3
# this machine
127.0.0.1      localhost

# other hosts in the local network
192.168.0.1    enterprise.mycompany.com      enterprise
192.168.0.2    constellation.mycompany.com  constellation
192.168.0.3    intrepid.mycompany.com        intrepid
192.168.0.4    exeter.mycompany.com          exeter
192.168.0.5    router.mycompany.com          router
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

hosts文件内容, ip 主机名 对照, 用于主机解释

ALL : 192.168.
imapd: .friendly.com, 999.99.
sshd: .friendly.com
  • 1
  • 2
  • 3

hosts.allow 与 hosts.deny,主机访问控制(允许或禁止访问)

search mycompany.com
domain mycompany.com
nameserver 192.168.0.3
nameserver 999.99.9.9
nameserver 999.99.9.8
  • 1
  • 2
  • 3
  • 4
  • 5

resolv.conf 路由服务器配置表

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/空白诗007/article/detail/745085
推荐阅读
相关标签
  

闽ICP备14008679号