今天决定把Debian 10.1自带的4.19内核升级到5.2.14。 需要的工具automake、make、g++(包含gcc)、bison、flex、libelf-dev、libssl-dev、bc。 懒人命令: sudo apt install -y automake make g++ bis ...
分类:
其他好文 时间:
2021-04-23 11:58:49
阅读次数:
0
交换机配置: 创建IPTV接口: IPTV跃点设置为20,防止上网走这个端口。 防火墙配置: config rule option target 'ACCEPT' option proto 'udp' option name 'IPTV-DHCP' option family 'ipv4' opti ...
分类:
其他好文 时间:
2021-04-22 16:16:44
阅读次数:
0
make 时出现: /usr/bin/ld: 找不到 -lboost_serialization 0x00 存在库但是没有链接指向库导致找不到 使用 locate 定位库文件 locate libxxx.so 定位结果: /usr/local/ahuasdk/libXXX.so 利用软链接将两者链接 ...
分类:
其他好文 时间:
2021-04-21 12:34:38
阅读次数:
0
Centos8.3-NIS NIS-Server 安装nis相关的软件包 dnf -y install ypserv rpcbind 修改主机名 hostnamectl set-hostname node1.skills.com 设置nis域 ypdomainname skills.com echo ...
分类:
其他好文 时间:
2021-04-20 14:04:05
阅读次数:
0
这个问题出现在在使用VS编码当中,电脑意外关机,导致的文件的缺失或者损坏。 使用反编译软件(如:ILSpy)对编译后的 .EXE文件进行反编译,在翻遍的结果中将相关代码拷贝至目标路径下,替换所需文件。 按照目标文件的格式,选择性粘贴(例如winform 中*.cs 和 *.Design.cs文件,存 ...
分类:
移动开发 时间:
2021-04-19 15:26:49
阅读次数:
0
关于整型切片的初始化,下面正确的是: s := make([]int) s := make([]int, 0) s := make([]int, 5, 10) s := []int{1, 2, 3, 4, 5} [答案]: BCD [解析&更多]: 再在使用make初始化切片的时候,除了类型,长度也 ...
分类:
其他好文 时间:
2021-04-19 15:15:15
阅读次数:
0
考研英语 阅读理解 考研阅读(真题)-The Postal Service Needs More than a Band-Aid 考研阅读(真题)-A Rise in Critical Skills for Sharing News Online 考研阅读(真题)-Smartphones Won't ...
分类:
其他好文 时间:
2021-04-15 12:23:27
阅读次数:
0
需求分析: 随机生成算式题目以及其结果 具体设计: 一个随机生成算式的方法Make() 一个计算结果的方法JiGuo() 具体编码: Make() public static String Make(){ StringBuilder bu = new StringBuilder(); int cou ...
分类:
其他好文 时间:
2021-04-12 12:44:40
阅读次数:
0
构建乘积数组 给定一个数组A[0,1,...,n-1],请构建一个数组B[0,1,...,n-1],其中B中的元素B[i]=A[0]*A[1]*...*A[i-1]*A[i+1]*...*A[n-1]。不能使用除法。 收获:先把公式想清楚了再编程序就会思路清晰,写程序写的快。 b[0] 1 A[1] ...
分类:
编程语言 时间:
2021-04-12 12:10:16
阅读次数:
0
func longestValidParentheses(s string) int { stack := []int{}//存左括号的下标位置 var n = len(s) flags := make([]int, n) var length = 0 var maxLength = 0 for i ...
分类:
其他好文 时间:
2021-04-12 11:45:04
阅读次数:
0