摘要:
1、linux中SBIT权限用于对目录进行设定 使只有文件或者目录的所有者才能删除文件或者目录 测试不加 SBIT权限的情况: [root@linuxprobe home]# mkdir test01 test02 [root@linuxprobe home]# chmod 777 test01 # 阅读全文
摘要:
linux系统中chgrp命令用户改变文件或者目录的所属组 chgrp 为 change group的缩写 用法: chgrp 【选项】 文件/目录 1、创建测试文件 [root@linuxprobe test]# ls [root@linuxprobe test]# whoami root [ro 阅读全文
摘要:
1、创建测试文件 [root@linuxprobe test]# whoami root [root@linuxprobe test]# touch a.txt b.txt ## 测试文件 [root@linuxprobe test]# su - liujiaxin01 ## 切换至普通用户 [li 阅读全文
摘要:
1、linux系统中文件和目录的权限 按照用户可分为所有者、所属组和其他人。 所有者用u代表(user) 所属组用g代表(group) 其他人用o代表(other) 按照具体的权限可以分为可读、可写、可执行、无权限 可读用r代表(read),用数字4表示 可写用w代表(write),用数字2表示 可 阅读全文
摘要:
1、创建测试用户 [root@linuxprobe home]# for i in liujiaxin{01..05};do useradd -g root $i;echo "123456" | passwd --stdin $i;done##创建测试用户,指定所属组为root,密码为123456 阅读全文
摘要:
1、使用conda创建环境遇到如下问题: 2、备份原来的配置文件 mv .condarc .condarc.backup 3、创建新的配置文件 vim .condarc ##输入: channels: - https://mirrors.tuna.tsinghua.edu.cn/anaconda/p 阅读全文