logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

VMware 中Intel VT-x is disabled 解决方法

在vsphere client装虚拟机的时间出现报错"This host supports Intel VT-x, but Intel VT-x is disabled"             虚拟机已经被配置为64位客户操作系统。然而,64位操作不可用。              此主机支持英特尔虚拟化技术(VT-x),但是英特尔虚拟化技术被禁用了。网上看到有很多人说是BIOS

/etc/security/limits.conf 系统资源配置文件详解

/etc/security/limits.conf是Linux资源使用配置文件,用来限制用户对系统资源的使用语法:    [root@localhost~]# cat /etc/security/limits.conf* soft nproc 65535      # 警告设定所有用户最大打开进程数为65535* hard nproc 65535     

linux 下使用diff命令比较两个文件夹

diff -ruNa s1 s2 > s12.diff

kubernetes 创建pod yaml文件内容详解

基础的必选参数# pod的最基础的yaml文件最少需要以下的几个参数apiVersion: v1 # API版本号,注意:具有多个,不同的对象可能会使用不同APIkind: Pod# 对象类型,podmetadata:# 元数据name: string # POD名称namespace: string # 所属的命名空间spec: # specification of the resource c

python 基础之 socket接口与web接口

python 网络编程 主要有socket模块、BaseHTTPServer模块。socket属于更底层次,方便在日常运维工作中使用, http web接口更适合开放给外部人员使用,毕竟大多数语言都很方便支持http请求。首先看最基本socket客户端与服务端实例:#!/usr/bin/python#coding=utf-8import sockethost = 'xx'sock...

到底了