码迷,mamicode.com
首页 >  
搜索关键字:kernel panic    ( 5754个结果
代码注释示例
/** @brief Blurs an image using a Gaussian filter. The function convolves the source image with the specified Gaussian kernel. In-place filtering is s ...
分类:其他好文   时间:2020-01-29 18:22:52    阅读次数:85
安装Linux系统Centos6版本
1.下载VMware软件 2.下载Centos6文件 http://archive.kernel.org/centos-vault/6.8/isos/x86_64/CentOS-6.8-x86_64-bin-DVD1.iso 网页下载比较慢,推荐使用迅雷下载 3.打开VMware创建一个新的虚拟机 ...
分类:系统相关   时间:2020-01-29 10:21:21    阅读次数:107
Golang 切片
1. 为什么需要切片,和数组区别? 数组是定长的,切片是变长的 底层是数组存储 声明 var identifier []type 区分数组是[]中没有数字 var arr = [3]int {1, 2, 3} fmt.Println(arr) var sl = []int {1, 2, 3} fmt ...
分类:其他好文   时间:2020-01-28 23:27:31    阅读次数:84
使用nginx实现基于tcp协议的https协议多域名指向的分别转发功能
零、环境 os:centos8 阿里云 kernel:Linux ${hostname} 4.18.0-80.11.2.el8_0.x86_64 #1 SMP ${time} x86_64 x86_64 x86_64 GNU/Linux nginx:nginx-1.17.5 一、编译安装nginx ...
分类:Web程序   时间:2020-01-28 23:21:06    阅读次数:147
NFS服务
介绍NFS(NetworkFileSystem),网络文件系统,基于RPC实现在远程主机上完成读写功能,NFS服务端功能由Kernel中提供,所以只能在Linux、UNIX中使用,另外只能根据IP地址限制用户访问。RPC(RemoteProcedureCall),实现两个远程主机之间功能函数的调用、参数传递功能。在Linux中一些通用功能都被做成库,本地的应用程序需要使用这些功能时,直接调用即可,
分类:其他好文   时间:2020-01-28 17:33:27    阅读次数:59
Linux Kernel Modules 内核模块管理
Linux 设备驱动以Kernel Module形式存在,Linux Kernel Module可以动态加载到内核中。 - lsmod Show the status of modules in the Linux Kernel - modinfo Show information about a ...
分类:系统相关   时间:2020-01-26 22:08:43    阅读次数:106
golang工具代码持续汇总
// int64 转字节数组 func IntToHex(num int64) []byte { buf := new(bytes.Buffer) err := binary.Write(buf, binary.BigEndian, num) if err != nil { log.Panic(er ...
分类:其他好文   时间:2020-01-22 18:35:11    阅读次数:82
均值滤波,中值滤波,最大值滤波,最小值滤波
均值滤波: 均值滤波是图像处理中常用的手段,从频率域观点来看均值滤波是一种低通滤波器,高频信号将被去掉,因此可以帮助消除图像尖锐噪声,实现图像平滑,模糊等功能。理想的均值滤波是用每个像素和它周围像素计算出来的均值替换图像中每个像素。采样Kernel数据通常是3x3的矩阵,如下所示: 从左到右,从上到 ...
分类:其他好文   时间:2020-01-22 10:32:05    阅读次数:111
一次ssh不能登陆问题
看提示应该是进程数满了 ps -eLf | wc -l 查看当前进程数 [root@qc-app-16-63 containers]# ps -eLf | wc -l2625 查看允许最大进程数 sysctl kernel.pid_max [root@qc-app-16-63 containers] ...
分类:其他好文   时间:2020-01-21 20:18:56    阅读次数:77
papers
ICCV 2019 ACNet: Strengthening the Kernel Skeletons for Powerful CNN via Asymmetric Convolution Blocks github: https://github.com/DingXiaoH/ACNet ...
分类:其他好文   时间:2020-01-20 16:19:36    阅读次数:94
5754条   上一页 1 ... 38 39 40 41 42 ... 576 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!