摘要:
remount mount -o remount, rw / NFS sudo apt-get install nfs-kernel-server vi /etc/exports 追加 /mnt/nfsroot/rootfs *(rw,sync,no_root_squash,no_subtree_c 阅读全文
摘要:
touch `ifconfig |grep inet|awk -F "[: ]+" '{print $3}'|head -n1` 阅读全文
摘要:
SELECT * FROM C_TABE WHERE code = UNHEX('033e19010201010001030000ff');SELECT * FROM C_LIBRAY_TABLE_NAME WHERE code = UNHEX('033e19010201010001030000ff 阅读全文
摘要:
root@localhost /# cat /proc/mtddev: size erasesize namemtd0: 00080000 00010000 "u-boot"mtd1: 00020000 00010000 "u-env"mtd2: 00060000 00010000 "logo"mt 阅读全文
摘要:
#include <stdio.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <syslog.h> #include <errno.h> void mai 阅读全文
摘要:
yes >> /deb/watchdog 禁用代码 /* * Watchdog Driver Test Program */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include 阅读全文
摘要:
配置文件保留的时间(1w为一周): journalctl --vacuum-time=1w 阅读全文
摘要:
编译: 下载 ftp://ftp.gnu.org/gnu/gdb/gdb-7.11.1.tar.gz gdbserver编译 ./configure --target=arm-linux --host=arm-linux make arm设置 ulimit -c 1024echo /tmp/core 阅读全文
摘要:
ulimit -c 1024echo /tmp/core > /proc/sys/kernel/core_pattern #include <stdio.h> int main() { int* a=NULL; char aa[1]; a=1; aa[20]=1; sleep(10000); pri 阅读全文
摘要:
修改/etc/security/limits.conf: * soft nofile 204800* hard nofile 204800 bugbugbugbugbugbug:虽说是全局修改,但是用systemctrl启动的进程,最大值还是1024 在搭建keepalived遇到此问题 cento 阅读全文
摘要:
iptraf-ng nethogs 阅读全文
摘要:
make COMPILE=gcc BOOT=none APP=0 SPI_SPEED=40 SPI_MODE=DIO SPI_SIZE_MAP=4 阅读全文
摘要:
恢复出厂 AT+RESTORE STA模式 AT+CWMODE=1 smartconfig(广播) AT+CWSTARTSMART=1 停止 AT+CWSTOPSMART airkiss(组播) AT+CWSTARTSMART=2 停止 AT+CWSTOPSMART 获得IP AT+CIFSR 阅读全文
摘要:
在Centos7下,rc.local文件,开机默认是不执行的 必须运行 chmod +x /etc/rc.d/rc.local 命令来确保启动过程中执行此脚本 . 阅读全文