来自:https://www.kernel.org/doc/html/latest/admin-guide/sysctl/user.html sysctl 命令: sysctl命令被用于在内核运行时动态地修改内核的运行参数, 可用的内核参数在目录/proc/sys中。它包含一些TCP/ip堆栈和 虚 ...
分类:
系统相关 时间:
2020-06-15 16:01:07
阅读次数:
94
夜神模拟器无法使用 https://support.microsoft.com/en-us/help/4526424/windows-10-driver-cant-load-on-this-device Memory integrity You are receiving this message ...
分类:
其他好文 时间:
2020-06-15 13:48:50
阅读次数:
181
#代码如下:from selenium import webdriverimport timebase_url = "http://www.xx007.cn/login.asp"#账户usr_name = "benq81"#密码usr_pwd = "jenny8174"driver = webdri ...
分类:
编程语言 时间:
2020-06-15 12:25:30
阅读次数:
44
简而言之,内存不够了。 https://serverfault.com/questions/828839/kernel-reported-iscsi-connection-10-error-1022-invalid-or-unknown-error-code I got a couple of re ...
分类:
其他好文 时间:
2020-06-15 11:56:54
阅读次数:
130
zhuanzi;https://blog.csdn.net/prcyang/article/details/89946190?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522159215640719724848304873%2522%2 ...
分类:
其他好文 时间:
2020-06-15 09:35:18
阅读次数:
189
package main import ( "database/sql" "fmt" _ "github.com/go-sql-driver/mysql" ) // 定义表字段 type user struct { id int name string age int } var db *sql.D ...
分类:
数据库 时间:
2020-06-14 23:49:35
阅读次数:
78
结合中断上下文切换和进程上下文切换分析Linux内核的一般执行过程 一,实验目标 以fork和execve系统调用为例分析中断上下文的切换 分析execve系统调用中断上下文的特殊之处 分析fork子进程启动执行时进程上下文的特殊之处 以系统调用作为特殊的中断,结合中断上下文切换和进程上下文切换分析 ...
分类:
系统相关 时间:
2020-06-14 23:29:32
阅读次数:
52
SSM框架整合 1、导入项目依赖 <dependencies> <!--Junit--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency ...
分类:
其他好文 时间:
2020-06-14 19:06:33
阅读次数:
49
lsmod:内容来自/proc/modules modinfo:show information about linux kernel module modprobe: modprobe --show-depends ext4 显示ext4内核模块的依赖关系 --dry-run 测试目的 --sho ...
分类:
其他好文 时间:
2020-06-14 18:44:20
阅读次数:
64
1.手写数字数据集 from sklearn.datasets import load_digits digits = load_digits() 2.图片数据预处理 x:归一化MinMaxScaler() y:独热编码OneHotEncoder()或to_categorical 张量结构 训练集测 ...
分类:
其他好文 时间:
2020-06-14 16:33:10
阅读次数:
62