分类 Shell 中的文章

命令帮助里 [ ] < > 的含义

方括号 [ ] 方括号 [ ] 代表可选项,表示里面的元素(参数、值或信息)是可选的。可以选零个或多个。注意不要将方括号本身也输入到命令中。 尖括号 < > 尖……

阅读全文

Gateway 为 0.0.0.0

pi@raspberrypi:~ $ route -n Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 0.0.0.0 10.10.68.1 0.0.0.0 UG 202 0 0 eth0 0.0.0.0 172.20.10.1 0.0.0.0 UG 303 0 0 wlan0 10.10.68.0 0.0.0.0 255.255.255.0 U 202 0 0 eth0 172.20.10.0 0.0.0.0 255.255.255.240 U 303 0 0 wlan0 后两条是自动生成的,因为是直连的网段,不需要……

阅读全文

双网卡默认路由

双网卡在两个都是default路由时,会怎样选择路径? pi@raspberrypi:~ $ route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface default 10.10.68.1 0.0.0.0 UG 202 0 0 eth0 default 172.20.10.1 0.0.0.0 UG 303 0 0 wlan0 10.10.68.0 0.0.0.0 255.255.255.0 U 202 0 0 eth0 172.20.10.0 0.0.0.0 255.255.255.240 U……

阅读全文

Wi-Fi 指令大全

# iwlist 用于对 /proc/net/wireless 文件进行分析,得出无线网卡相关信息 # iwlist wlan0 scanning 搜索当前无线网络 # iwlist wlan0 frequen 显示频道信息 # iwlist wlan0 rate 显示连接速度 # iwlist wlan0 power 显示电源模式 # iwlist wlan0 txpower 显……

阅读全文

Linux运维指令

32 bits or 64 bits? 查看系统是32位还是64位 getconf LONG_BIT 或 uname -m Generate a random password 30 characters long 生成一个30字符的随机密码 strings /dev/urandom | grep -o '[[:alnum:]]' | head -n 30 | tr -d '\n'; echo Recursively remove all empty directories 递归删除所有空……

阅读全文

万能的脚本

Linux ping指定网段所有Ip Linux命令ping中,不支持设置接收毫秒超时,默认接收超时未4s,最小设置为1s,但是如果ping网段所有ip……

阅读全文

支持输入流的命令

支持输入流的命令:能够读写文件内容的命令。 简单性质:能够读写文件内容的命令都支持管道(注意是对文件内容的操作,ls就不可以,因为它不能操作文……

阅读全文

hugo常用命令

目录介绍 www.lyjiot.cn/ ├── archetypes # 包括内容类型,在创建新内容时自动生成内容的配置 │ └── default.md ├── config.toml # 网站的主配置文件 ├── content # 网站内容,全部使用markd……

阅读全文

cp .*出问题了

有如下目录,我想把 .x .y .z这三个隐藏目录拷贝到a目录下 liyongjun@box:~/project$ tree -a . ├── a ├── .x ├── .y └── .z 于是执行了下面这条命令 liyongjun@box:~/project$ sudo cp -r .* a/ 谁承想.*也……

阅读全文

ulimit用户限制

# 撸码 今天研究算法时需要用到一个很大的数组,代码如下: #include <stdio.h>#include <stdlib.h>#include <stdint.h> int main(int argc, char *argv[]) { uint16_t list[100000000] = {0}; printf("OK\n"); return EXIT_SUCCESS; } 数组大小为 2字节 * 100,000,000 ≈ 200M字节 # 运行报错 运行 liyongjun@Box:~/project/my/c/study$……

阅读全文