linux - chmod 中数字与 +s
访问量: 362
100: x, execute 执行 ( 包括 想要访问3层目录下的某个文件,那么这三层目录都需要有x权限)
200: w, write
400: r, read
所以, 700 就是 1x + 2w + 4r
所以,想要ssh 不用密码登录生效的话:
/root 700
/root/.ssh 700
/root/.ssh/authorized_keys 600, 700
同时满足上述3个条件才可以。
访问量: 362
100: x, execute 执行 ( 包括 想要访问3层目录下的某个文件,那么这三层目录都需要有x权限)
200: w, write
400: r, read
所以, 700 就是 1x + 2w + 4r
所以,想要ssh 不用密码登录生效的话:
/root 700
/root/.ssh 700
/root/.ssh/authorized_keys 600, 700
同时满足上述3个条件才可以。