随笔分类 - [01]LINUX
摘要:vim /etc/profile 添加 TMOUT=180 export TMOUT 重新加载配置 source /etc/profile
阅读全文
摘要:授权登录限制 vi /etc/pam.d/system-auth 添加 auth required pam_tally2.so deny=3 unlock_time=30 even_deny_root root_unlock_time=60 sshd登录错误限制 vim /etc/pam.d/ssh
阅读全文
摘要:gsettings set com.canonical.Unity.Launcher launcher-position Bottom
阅读全文
摘要:1、下载(使用开源版本,源码包) https://www.zentao.net/dl/zentao/15.0.rc3/ZenTaoPMS.15.0.rc3.zip 2、解压放入项目文件夹下面 3、配置nginx server { listen 80; #listen [::]:80 default_
阅读全文
摘要:sudo composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/
阅读全文
摘要:find . -name "*.ttss" | xargs rm -f
阅读全文
摘要:备份 sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup 修改 sudo gedit /etc/apt/sources.list 增加阿里云源 # aliyun deb http://mirrors.aliyun.com/ubuntu
阅读全文
摘要:public static function newCurl($url, $data = array(), $timeout = 5) { $ch = curl_init(); if (is_array($data) && $data) { $formdata = http_build_query(
阅读全文
摘要:sudo find ./Public/ -name *.txt | sudo xargs rm -rf
阅读全文
摘要:1、下载 https://gitee.com/liushuai05/wechat_web_devtools 【gitee】 https://github.com/cytle/wechat_web_devtools/tags 【github】 2、解压 sudo tar -zvxf wechat_we
阅读全文
摘要:输入法内置的插入项有: 1. 输入【rq】(日期的首字母),输出系统日期【2006年12月28日】; 2. 输入【sj】(时间的首字母),输出系统时间【2006年12月28日19:19:04】; 3. 输入【xq】(星期的首字母),输出系统星期【2006年12月28日 星期四】;
阅读全文
摘要:![](https://img2020.cnblogs.com/blog/422101/202008/422101-20200806112833666-582239251.png)
阅读全文
摘要:composer require lustre/php-dfa-sensitive use DfaFilter\SensitiveHelper; /** * 过滤敏感词 */ public function getSensitiveWord() { $json = new Json(); $red
阅读全文
摘要:$ select-editor Select an editor. To change later, run 'select-editor'. 1. /bin/ed 2. /bin/nano < easiest 3. /usr/bin/code 4. /usr/bin/vim.basic 5. /u
阅读全文
摘要:sudo git --git-dir=".git" pull origin master 等同于 sudo git pull origin master 也可以重命名.git sudo git --git-dir=".antgit" pull origin master
阅读全文
摘要:public function downFile($url, $file_name) { header('Content-Description: File Transfer'); header('Content-Type: application/vnd.android.package-archi
阅读全文
摘要:先安装sdk composer require alibabacloud/sdk 需要知道 AccessKeyID,AccessKeySecret <?php /** * composer require alibabacloud/sdk * 获取阿里云相关的token */ namespace C
阅读全文
摘要:v='aaa_111' array=(${v//_/ }) # 注意后面有空格 # 增加跳转小程序配置 if [[ $JUMP_XCX != '' ]]; then # 可以判断空字符串 和 空数组 NEW_JUMP_XCX='' for v in ${JUMP_XCX[@]};do array=(
阅读全文
摘要:JUMP_XCX=('xxx_111' 'yyy_222' 'zzz_333') if [[ $JUMP_XCX != '' ]]; then # 可以判断空字符串 和 空数组 NEW_JUMP_XCX='' for v in ${JUMP_XCX[@]};do if [[ $NEW_JUMP_XC
阅读全文
摘要:// 全局通用日志工具 function setlog($param = [],$result = [],$name='',$filename = '',$path = ''){ if (!$path) { $path = BASE_PATH.'../../logs/'; } if (!$filen
阅读全文