查找 find . -type f -size +10M -print0 | xargs -0 du -h | sort -nr 删除,指定名字的所有文件 find ./xx -name "xx" -type f -print -exec rm -rf {} \; 计数 ls -l|grep "^- ...
分类:
系统相关 时间:
2021-04-07 11:19:58
阅读次数:
0
本次针对的MySQL版本为5.7,首先分别在A服务器和B服务器上安装MySQL,可以通过yum安装也可以通过wget下载直接编译安装。安装方式可以多种多样,但必须要确保安装成功。 1.修改A服务器的my.cnf文件 vim /etc/my.cnf 并添加如下内容: server-id=1 auto_ ...
分类:
数据库 时间:
2021-04-07 10:52:00
阅读次数:
0
通过修改系统环境变量: vim /etc/profile 添加 export PIPENV_DEFAULT_PYTHON_VERSION=3.7 export PIPENV_PYPI_MIRROR=https://pypi.tuna.tsinghua.edu.cn/simple 立即生效: sour ...
分类:
其他好文 时间:
2021-04-06 15:03:15
阅读次数:
0
补充命令: tracepath 网址 -- 路由跟踪 netstat –an -a 所有开放端口号查询 -n ip地址查看 netstat –an | grep 80 查看80端口号是否开启 tree 查看目录的结构关系 find 查找文件位置 可用--type b/d/c/p/l/f 参数指定文件 ...
分类:
其他好文 时间:
2021-04-06 15:02:57
阅读次数:
0
初次学习mybatis,跑一个最简单的demo,然而报错: java.sql.SQLException: Error setting driver on UnpooledDataSource. Cause: java.lang.ClassNotFoundException: Cannot find ...
分类:
数据库 时间:
2021-04-06 14:48:09
阅读次数:
0
阿里云Ubuntu Server 20.04 apt-get update -y apt-get upgrade -y apt-get install -y xorg-dev apt-get install -y libgtk2.0-dev apt-get install -y vim vim-sc ...
分类:
系统相关 时间:
2021-04-06 14:36:20
阅读次数:
0
LeetCode第235场周赛题解 截断句子 按照题目要求模拟即可,把单词读入到vector中,然后按要求拼接即可 class Solution { public: string truncateSentence(string s, int k) { vector<string> a; string ...
分类:
其他好文 时间:
2021-04-06 14:34:00
阅读次数:
0
Shortcut Keys Configure Summary You can use shortcut keys to quickly insert or modify styles or do other operations supported by Typora. You can find ...
分类:
其他好文 时间:
2021-04-06 14:21:02
阅读次数:
0
1. 安装需要的软件 ~]# yum install -y vim net-tools sysstat createrepo mkisofs rsync syslinux 2. 创建目录及文件拷贝 创建本地yum源 ~]# mount /dev/sr0 /mnt #挂载镜像或者U盘,如果是U盘就是/ ...
分类:
其他好文 时间:
2021-04-06 14:20:16
阅读次数:
0
1 安装 sudo apt-get install zsh 2 修改默认shell chsh -s /bin/zsh 3 配置passwd sudo vim /etc/passwd root:x:0:0:root:/root:/bin/bash改成root:x:0:0:root:/root:/bin ...
分类:
系统相关 时间:
2021-04-05 12:42:45
阅读次数:
0