umask 命令用来限制新文件权限的掩码 也称之为遮罩码,防止文件、文件夹创建的时候,权限过大 当新文件被创建时,其最初的权限由文件创建掩码决定 当用户每次注册进入系统时,umask命令都被执行,并自动设置掩码改变默认值,新的权限将会把旧的覆盖 umask默认配置在/etc/profile 61-6 ...
分类:
其他好文 时间:
2021-04-24 13:22:30
阅读次数:
0
1、测试1 [root@centos7 test2]# i=0 [root@centos7 test2]# max=5 [root@centos7 test2]# while((i<max));do echo $i;((i++));done 0 1 2 3 4 ...
分类:
系统相关 时间:
2021-04-23 12:03:54
阅读次数:
0
1、read从键盘读入 [root@centos7 test]# echo $a [root@centos7 test]# read a 123456 [root@centos7 test]# echo $a 123456 2、-p 参数 加入提示 [root@centos7 test]# unse ...
分类:
系统相关 时间:
2021-04-22 15:41:37
阅读次数:
0
查看当前默认编码方式 show VARIABLES like 'character_%'; 把linan1类型改成utf8 set character_set_database=utf8; ps:这一步我感觉关系不大?不过网上都说让改,我没改好像也没问题 ef连接字符串修改: Data Source ...
分类:
数据库 时间:
2021-04-21 12:44:41
阅读次数:
0
环境:ubnutu 修改daemon.json vim /etc/docker/daemon.json { "graph":"/data/docker-data" } 转移旧文件 docker数据默认存放路径为:/var/lib/docker,我这里转移到/data/docker-data 和dae ...
分类:
其他好文 时间:
2021-04-21 12:22:15
阅读次数:
0
1、yml文件 #spring datasource spring.datasource.url=jdbc:mysql:///db_notice?serverTimezone=GMT%2B8&charactterEncoding=uft8 spring.datasource.username=roo ...
分类:
编程语言 时间:
2021-04-21 12:14:39
阅读次数:
0
1. Binder的系统日志文件 # ps -A | grep suspend system 699 1 2184444 4564 binder_ioctl_write_read 0 S android.system.suspend@1.0-service # ls /proc/699/fd -l ...
分类:
其他好文 时间:
2021-04-19 15:59:18
阅读次数:
0
#!/usr/bin/env python3#!-*- coding:UTF-8 -*- import osclass GetPath():# 获取所有目录 @staticmethod def get_dir(path): print("打印所有目录:") for root, dirs, files ...
分类:
编程语言 时间:
2021-04-14 11:51:07
阅读次数:
0
vi no_interaction_script1.sh #!/bin/bash #提示用户该脚本3秒后退出echo "This script will quit after 3 seconds. " #计时3s sleep 1echo -n "."sleep 1echo -n "."sleep 1 ...
分类:
系统相关 时间:
2021-04-13 12:16:49
阅读次数:
0
利用上一题求深度的做法 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = ...
分类:
其他好文 时间:
2021-04-13 12:05:30
阅读次数:
0