码迷,mamicode.com
首页 >  
搜索关键字:kernel panic    ( 5754个结果
GNS3 0.7.3模拟使用ASA802-k8来做安全实验
GNS3模拟ASA
分类:其他好文   时间:2020-07-15 12:55:31    阅读次数:71
Demystifying Containers - Part I: Kernel Space(翻译)
原文: https://medium.com/@saschagrunert/demystifying-containers-part-i-kernel-space-2c53d6979504 This series of blog posts and corresponding talks aims ...
分类:其他好文   时间:2020-07-14 16:33:00    阅读次数:54
PyTorch 深度学习实践 - CNN
Convolutional Layer import torch in_channels, out_channels = 5, 10 width, height = 100, 100 kernel_size = 3 batch_size = 1 input = torch.randn(batch_s ...
分类:其他好文   时间:2020-07-14 13:50:42    阅读次数:98
CentOS6.5 mini安装到VirtualBox虚拟机中
下载Oracle VM VirtualBox 下载下来安装 下载镜像 http://archive.kernel.org/centos-vault/6.5/isos/i386/CentOS-6.5-i386-minimal.iso 安装虚拟机 这里我安装的是32bit的centOS6.5 mini版 ...
分类:其他好文   时间:2020-07-13 13:50:57    阅读次数:79
[LINUX] centos7 文件目录的学习
bin → usr/bin:所有可执行的二进制文件 boot:启动处理的重要文件,包括内核文件 dev:所有硬件设备相关的文件 etc:应用的配置文件和启动,关闭脚本等 home:用户的home路径 lib → usr/lib:内核和共有的静态链接库 lib64 → usr/lib64:kernel ...
分类:系统相关   时间:2020-07-12 20:36:37    阅读次数:91
Linux启动过程详解
一、Linux启动过程 第一步:开机自检,加载BIOS 第二步:读取MBR 第三步:Boot Loader grub引导菜单 第四步:加载kernel内核 第五步:init进程依据inittab文件夹来设定运行级别 第六步:init进程执行rc.sysinit 第七步:启动内核模块 第八步:执行不同 ...
分类:系统相关   时间:2020-07-12 19:06:58    阅读次数:95
重构核Hilbert空间(RKHS)
在支持向量机SVM中,通常使用核函数将样本输入空间转化为重构核Hilbert空间(Reproducing kernel Hilbert space,RKHS),提高算法处理非线性分类问题的性能。相比于Hilbert空间,重构核Hilbert空间有着很多优秀的性质。下面从RKHS的定义、RKHS刻画、 ...
分类:其他好文   时间:2020-07-12 18:54:02    阅读次数:145
Linux CentOS 7防火墙常用命令汇总
systemctl命令: 1、启动防火墙 systemctl start firewalld.service 或 systemctl start firewalld 2、关闭防火墙 systemctl stop firewalld.service 或 systemctl stop firewalld ...
分类:系统相关   时间:2020-07-12 10:40:13    阅读次数:90
go-defer用例
package main import ( "fmt" ) func main() { a := 1 b := 2 defer func() { err := recover() //recover只能放在defer之后使用 fmt.Println(err) }() //匿名函数 swap(a, b ...
分类:其他好文   时间:2020-07-12 01:17:27    阅读次数:88
Linux运维之内存分析2
Don't Panic!Your ram is fine! 不要惊慌,你的内存很好 What's going on?(这是怎么回事?) Linux is borrowing unused memory for disk caching. This makes it looks like you ar ...
分类:系统相关   时间:2020-07-12 01:07:14    阅读次数:111
5754条   上一页 1 ... 13 14 15 16 17 ... 576 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!