Commit c7e81a1f authored by 王进波's avatar 王进波

update

parent f8382342
......@@ -47,4 +47,70 @@ Linux/Windows
例如我需要从`F:\nltk_data\models\moses_sample`导航到`F:\nltk_data\models\moses_sample\phrase-model`这个目录下,我们在`cd`命令中输入`cd phrase`后直接按`Tab`键,命令行就会显示出`cd phrase-model`,如果第一条不是目标目录,就继续按`Tab`键。
Windows的 Powershell 对目录补全支持很好,但是 cmd 命令行就表现的很弱智,按`Tab`始终只能列举当前路径下的子目录。
\ No newline at end of file
Windows的 Powershell 对目录补全支持很好,但是 cmd 命令行就表现的很弱智,按`Tab`始终只能列举当前路径下的子目录。
### 查看磁盘占用
> du | sort | head
- du : 计算出单个文件或者文件夹的磁盘空间占用.
- sort : 对文件行或者标准输出行记录排序后输出.
- head : 输出文件内容的前面部分
用下面的命令找出 `/var` 目录下大小排名前十的目录
```shell
du -a /var | sort -n -r | head -n 10
```
```shell
root@ubuntu:/# du -a / | sort -n -r | head -n 10
10823042 /
7711604 /var
5229488 /var/lib
3993252 /var/lib/mysql
2244688 /var/log
1548216 /usr
1408200 /var/log/syslog.1
1052096 /var/lib/docker
935112 /root
825220 /var/lib/docker/overlay2
```
用下面的命令输出可读性更高的内容
```shell
cd /var
du -hsx * | sort -rh | head -10
```
```sehll
root@ubuntu:/# sudo du -hsx * | sort -rh | head -10
7.4G var
1.5G usr
914M root
208M lib
166M swapfile
133M swap
65M boot
8.5M bin
7.4M sbin
5.3M run
```
### mysql 主从复制状态查询
Start the MySQL command-line utility on the slave server:
```shell
# cd /opt/mysql/mysql/bin
# mysql -u root -p
Enter password:
```
Check the replication status using the show slave status command (the status of the slave server is conveyed by the Slave_IO_Running and Slave_SQL_Running column values):
```shell
mysql> SHOW SLAVE STATUS \G;
```
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment