工具

htop

简介topLinux 下常用的监控程序,htop 相当于其加强版,颜色显示不同参数,且支持鼠标操作,更加简单和人性化。

安装

1
2
3
$ git clone https://github.com/hishamhm/htop.git
$ ./autogen.sh && ./configure && make
$ make install

使用

mycli

简介mycli 是用于 MySQLMariaDBPercona 的命令行界面,具有自动补全语法高亮功能。

安装

1
2
$ yum install python-pip
$ pip install mycli

使用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
$ mycli --help
Usage: mycli [OPTIONS] [DATABASE]

A MySQL terminal client with auto-completion and syntax highlighting.

Examples:
- mycli my_database
- mycli -u my_user -h my_host.com my_database
- mycli mysql://my_user@my_host.com:3306/my_database

Options:
-h, --host TEXT Host address of the database.
-P, --port INTEGER Port number to use for connection. Honors
$MYSQL_TCP_PORT.
-u, --user TEXT User name to connect to the database.
-S, --socket TEXT The socket file to use for connection.
-p, --password TEXT Password to connect to the database.
--pass TEXT Password to connect to the database.
--ssl-ca PATH CA file in PEM format.
--ssl-capath TEXT CA directory.
--ssl-cert PATH X509 cert in PEM format.
--ssl-key PATH X509 key in PEM format.
--ssl-cipher TEXT SSL cipher to use.
--ssl-verify-server-cert Verify server's "Common Name" in its cert
against hostname used when connecting. This
option is disabled by default.
-V, --version Output mycli's version.
-v, --verbose Verbose output.
-D, --database TEXT Database to use.
-d, --dsn TEXT Use DSN configured into the [alias_dsn]
section of myclirc file.
--list-dsn list of DSN configured into the [alias_dsn]
section of myclirc file.
-R, --prompt TEXT Prompt format (Default: "\t \u@\h:\d> ").
-l, --logfile FILENAME Log every query and its results to a file.
--defaults-group-suffix TEXT Read MySQL config groups with the specified
suffix.
--defaults-file PATH Only read MySQL options from the given file.
--myclirc PATH Location of myclirc file.
--auto-vertical-output Automatically switch to vertical output mode
if the result is wider than the terminal
width.
-t, --table Display batch output in table format.
--csv Display batch output in CSV format.
--warn / --no-warn Warn before running a destructive query.
--local-infile BOOLEAN Enable/disable LOAD DATA LOCAL INFILE.
--login-path TEXT Read this path from the login file.
-e, --execute TEXT Execute command and quit.
--help Show this message and exit.

shortcut

1
2
3
4
5
# 快捷键
向下翻页:Ctrl + f
向上翻页:Ctrl + b
磁盘文件排序:du -h * | sort -n
删除单行:dd

crontab

简介:用来定期执行程序的命令。

使用在线工具

typora

简介Markdown 是一种轻量级标记语言,人们使用易读易写的纯文本格式编写文档,然后转换成有效的 html 文档,TyporaMarkdown 的完美支持、丰富的主题、高效的快捷键操作,无一不令人爱不释手。

安装下载

使用

1
2
3
4
5
6
7
8
9
加粗: Ctrl/Cmd + B
标题: Ctrl/Cmd + H
插入链接: Ctrl/Cmd + K
插入代码: Ctrl/Cmd + Shift + C
行内代码: Ctrl/Cmd + Shift + K
插入图片: Ctrl/Cmd + Shift + I
无序列表: Ctrl/Cmd + Shift + L
撤销: Ctrl/Cmd + Z
一级标题:Crtl + 1

zentao

简介禅道,国产的开源项目管理软件,专注研发项目管理,内置需求管理、任务管理、bug 管理、缺陷管理、用例管理、计划发布等功能,实现了软件的完整生命周期管理。

使用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 安装
$ wget http://dl.cnezsoft.com/zentao/11.5.1/ZenTaoPMS.11.5.1.zbox_64.tar.gz
$ tar -zxvf ZenTaoPMS.11.5.1.zbox_64.tar.gz -C /opt
$ /opt/zbox/zbox start
$ /opt/zbox/zbox -ap 8080 -mp 3307 (-ap:修改Apache端口,-mp:修改MySQL端口)

# 启停httpd
./httpd -k start
./httpd -k stop

# 地址
http://10.133.0.53:8080

# 账号
admin/Haier@123

mindoc

官方网站 | 项目地址 | 安装参考