日常工作中慎用rm命令,用find 和 rsync来替代rm的操作linux下新建一个test的目录,新建名位(file1~file10)10个文件,删除除了file5的其他文件创建目录 mkdir test 进入目录 cd test创建文件 touch file{1..10} 方法1:使用find来实现删除的方法find -type f ! -name "file5"|xa
打开sshd配置文件 vim /etc/ssh/sshd_config 在最后面增加一行 :PermitRootLogin without-password保存配置文件后重启sshd服务service sshd restart
有时为了特殊需求,只允许普通账户登陆Linux,而不允许root账户登陆,而普通账户登陆后,然后再su 到root下是可以的。打开sshd的配置文件 vim /etc/ssh/sshd_config 加入一行:PermitRootLogin no重启sshd服务: service sshd restart
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号