分类目录归档:工具类

Docker Centos/Systemd


Docker Centos/Systemd

Linux

Centos With Systemd

Dockerfile

FROM centos:7
ENV container docker
RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == \
systemd-tmpfiles-setup.service ] || rm -f $i; done); \
rm -f /lib/systemd/system/multi-user.target.wants/*;\
rm -f /etc/systemd/sy

Read more

VIM 使用技巧


1. 删除空行

g/^$/d

2. 映射按键

map {lhs} {rhs}
Map the key sequence {lhs} to {rhs} for the modes where the map command applies.  The result, including
{rhs}, is then further scanned for mappings.  This allows for nested and recursive use of mappings.
example : map <M-n> :tabnext

Read more

Idea 快捷键总结


最常用的快捷键

Linux 版本

Ctrl + Alt + 左方向键 退回到上一个操作的地方

Ctrl + Alt + 右方向键 前进到上一个操作的地方

Mac 版本

Command + Option + 左方向键 退回到上一个操作的地方

Command + Option + 右方向键 前进到上一个操作的地方

Read more

CTAGS 支持一门语法


CTAGS 支持一门语法


再~/.ctags 文件中加入以下

Rust

--langdef=Rust
--langmap=Rust:.rs
--regex-Rust=/^[ \t]*(#\[[^\]]\][ \t]*)*(pub[ \t]+)?(extern[ \t]+)?("[^"]+"[ \t]+)?(unsafe[ \t]+)?fn[ \t]+([a-zA-Z0-9_]+)/\6/f,functions,function definitions/
--regex-Rust=/^[ \t]*(pub[ \t]+)?type[ \t]+([a-zA-Z0-9_]+)/\2/T,types,

Read more

hbase Balancer


hbase Balancer


banance 主要有四个命令

banance_switch balancer balancer_enabled balance_rsgroup

banance_switch

功能: 开启或关闭自动banance,返回以前的状态
使用:
balance_switch [true|false]

balancer

功能:手动执行一次整个集群的balance,成功返回true,否则返回false

balancer_enabled

功能:查看当前balancer的状态

balance_rsgroup

功能:只有在开启rsgroup时才会有,手动balance

Read more

Spacemacs table


Spacemacs table


创建一个a x b 的表格

C c |  ->  输入行列数

快捷键

快捷键 说明
Tab 切换到下一个单元格,若是最后一个,则新建一行,调到第一个单元格
M-S-right 在当前列前插入一列
M-S-left 删除当前列
M-S-down 在当前行前插入一行
M-S-up 删除当前行
C-m 移动到下一行,或新建一行
M-up/M-down 将该行向上/向下移动
M-left/M-right 将该列向左/向右移动
C-c ` 编辑当前单元格
C-c C-x C-w 剪切某个区域的表格内容
C-c C

Read more

ORACE install by docker


ORACE install by docker

1. 安装阿里的docker源

cat /etc/docker/daemon.json
{
"registry-mirrors": ["https://pee6w651.mirror.aliyuncs.com"]
}

2. 重启docker服务

systemctl restart docker

3. 选者oracle版本

这里选择12c

sudo docker pull sath89/oracle-12c

4. 运行docker

sudo docker run -d --name oracle -p 

Read more