自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 资源 (6)
  • 收藏
  • 关注

原创 VCSA-6.7U3无DNS、无法改主机名为IP的解决方案

首先看到的是丁工这一篇无DNS安装vcsa的这个情况,再第一步完成后,再5480内修改主机名为IP时报错,由于vcsa自带dns功能,我们可以由本机去解析本机的DNS。访问VCSA,然后:(也可以在控制台上打开SSH和shell,通过ssh登录)这里我使用esxi,进入这个vcsa的remote屏幕,F2打开,开启ssh。2.在操作安装的第二阶段。网关:192.168.1.254。

2023-10-31 10:11:22 1228 1

原创 记录一次VCSA添加ESXI主机失败的处理过程

由于网络环境较复杂,且网段都是冲突的,目前采取异地组网+端口映射方案。之前端口映射仅仅映射443,能正常搜索,且可以正常可以输入root密码并添加到机器。提示“无法访问指定的主机(X.X.X.X)。此主机在网络上不可用、网络配置有问题或主机上的管理服务无响应”。在映射端添加902为标准映射就ok了,以后添加esxi主机着力检查443/902端口是否联通。但是又有如上提示,esxi提示,已有该用户,翻看博文,

2023-10-31 09:41:45 532 1

原创 青龙2.12.1 最新版 ninja 余量0 不可用解决办法

由于某些原因,需要升级到最新版本的青龙,但是发现ninja不可以用ninja的api给出如下提示{"code":500,"message":"Response code 401 (Unauthorized)"}也就是没有获得登陆授权等信息,随即翻看青龙官方的git查找相关issue,发现在2.12以上更改了auth的位置,太坑爹了吧。然后ninja作者也不进行改动,我也懒得发pr。。。随即写下解决办法,服务一下各位朋友。安装过程如下安装ninja功能面板进入容器 ,进入容器,进入

2022-05-22 23:57:39 3100 7

原创 windows11系统下vone客户端连接服务器失败,请确认网络连接是否正常解决方案

询问400客服方便快捷,为了方便各位使用,也为了大家少去百度问题描述:使用vone连接vpn,访问公司内网,vone证书包括连接地址,密码等等都设置正确的情况下,点击连接提示:连接服务器失败,请确认网络连接是否正常!如下图所示:第一步、先看看信任网站有没有加入,我的新电脑刚升级就没加,记得把下面https的关了,不然没法选择IP控制面板——>Internet选项 Internet属性——>受信任的站点——>站点第二步、控制面板>网络和Internet,点击Intern

2022-02-11 18:21:24 14723 19

原创 JS node.js module export

这里有一个module,导出和使用的命名。counter.jsvar i = 0;function count1() { return ++i;}exports.count2 = count1;main.jsvar counter1 = require('./counter');console.log(counter1.count2());调用的都是...

2020-03-23 16:19:09 141

原创 novnc 踩坑安装记录

将安装noVNC踩过的坑一一记录下来。1:windows版本无法采用配置文件来进行代理。解决办法,使用linux,或多开几个进程。2:websockify is a package and cannot be directly executed#1292查看github,有解决办法,https://github.com/novnc/noVNC/issues/1292,原...

2020-03-11 17:56:07 1675

原创 bat 脚本一闪而过 闪退 排查过编码写法权限 原因:路径带括号导致

记录bat无法打开问题。已排查编码以及写法和权限。该脚本部署过非常多的机器了,突然在一台机器上无法打开,开头加pause也不生效,使用powershell排查,是文件路径里带了括号,括号删除就可以了。bat文件调用的所有目录都不应该带括号。因为这样导致cmd错误的识别,产生冲突。删除之,问题解决。补充,调试运行不需要管理员权限的bat脚本,可按住shift并单击右键,打开powersh...

2019-12-25 17:29:14 1550

原创 3. 无重复字符的最长子串

Example 1:Input: "abcabcbb"Output: 3 Explanation: The answer is "abc", with the length of 3. Example 2:Input: "bbbbb"Output: 1Explanation: The answer is "b", with the length of 1.Ex...

2019-12-24 16:00:34 73

原创 c++ map

最全的c++map的用法此文是复制来的0.01. map最基本的构造函数;map<string ,int>mapstring; map<int,string >mapint;map<sring,char>mapstring; map< char ,string>mapchar;map<char,int>mapchar; ma...

2019-12-24 13:46:33 123 1

原创 1. 两数之和 c++

题目描述:给定一个整数数列,找出其中和为特定值的那两个数。你可以假设每个输入都只会有一种答案,同样的元素不能被重用。示例:给定 nums = [2, 7, 11, 15], target = 9因为 nums[0] + nums[1] = 2 + 7 = 9所以返回 [0, 1]class Solution {public: vector<int&g...

2019-12-19 11:45:30 304 1

转载 C++标准组成部分 流

我们一直使用cout将数据写到屏幕,使用cin从键盘读取数据,但对他们的工作原理却没有全面的了解。 其实C++没有定义如何将数据写入屏幕或文件,也没有定义如何将数据读入程序。然而,使用c++编写程序时,这些是不可缺少的部分,标准的C++库包含用来方便输入输出的(I/O)的iostream库。 将输入和输出同语言分开并使用库来处理输入输出的优点是,更容易使语言独立于平台。也就是说,可...

2019-12-19 09:21:53 189

原创 关于ubuntu server 16.04LTS无法通过静态ip上网的问题分析 路由器禁用静态上网

# This file describes the network interfaces available on your system# and how to activate them. For more information, see interfaces(5).source /etc/network/interfaces.d/*# The loopback network ...

2019-11-25 15:07:36 326

原创 ch340 ch341 驱动安装失败 提示 inf中的服务安装段落无效 代码28

之前记得安装过这个驱动,但是近期无法使用,网上用了诸多办法,比如管理员模式运行、禁用驱动签名以及下载最新的驱动等等。后来再看其他论坛中找到原因是在C:\Windows\System32\drivers缺少文件 serenum.sys 从其他电脑拷贝上即可。这里提供文件下载连接以及最新的驱动http://www.wch.cn/download/CH341SER_EXE.htmlhttp...

2019-07-31 11:20:54 3543 3

原创 SDSoc学习(二):搭建平台,使用EMIO点亮LED

简介 本次开发使用环境 Windows 10 SDSoc 18.2 vivado 18.2 开发板 zedboard。本次实验通过vivado搭建硬件平台,SDSoc来编写代码。The FPGA is an inherently parallel processing fabric capable of implementing any logical and arithmetic func...

2019-07-18 14:50:48 447

原创 手把手教你让台式机通过笔记本连手机的热点或者是WiFi上网的方法

笔记本已通过WiFi连接到Internet,用一根网线让台式机通过笔记本来上网。首先将笔记本和台式机的以太网口用一根网线接起来。当笔记本是Windows 10的时候,方法:1)任务栏右下角的网络图标单击右键,选择“打开网络和Internet”设置。2)在打开的设置窗口中,点击“更改适配器选项”。3)在你连接到Internet的无线网卡项目上右键,“属性”。4)在...

2019-07-03 16:47:09 3243

新版青龙 ninja解决方案

青龙2.12.1 最新版 ninja 余量0 不可用解决办法 https://blog.csdn.net/qq_34909804/article/details/124918932?spm=1001.2014.3001.5501 由于某些原因,需要升级到最新版本的青龙,但是发现ninja不可以用 ninja的api给出如下提示 {"code":500,"message":"Response code 401 (Unauthorized)"} 也就是没有获得登陆授权等信息,随即翻看青龙官方的git 查找相关issue,发现在2.12以上更改了auth的位置,太坑爹了吧。然后ninja作者也不进行改动,我也懒得发pr。。。随即写下解决办法,服务一下各位朋友。 安装过程如下 安装ninja功能面板

2022-05-23

noVNC搭建文档以及工具.zip

noVNC 安装的工具以及说明文档,windows不支持token多用户,自用工具

2020-03-12

自动脚本工具.zip

setlocal setlocal DisableDelayedExpansion set "param=%~f0" cmd /v:on /c echo(^^!param^^!| findstr /R "[| ` ~ ! @ %% \^ & ( ) \[ \] { } + = ; ' , |]*^" endlocal if %errorlevel% EQU 0 ( %ErrLine% echo Disallowed special characters detected in file path name. echo Make sure file path name do not have following special characters, echo ^` ^~ ^! ^@ %% ^^ ^& ^( ^) [ ] { } ^+ ^= ^; ^' ^, goto MASend ) ::======================================================================================================================================== if %winbuild% LSS 7600 ( %ErrLine% echo Unsupported OS version Detected. echo Project is supported only for Windows 7/8/8.1/10 and their Server equivalent. goto MASend ) ::======================================================================================================================================== : ================================================ : Self-elevate passing args and preventing loop : Written by @AveYo aka @BAU : ================================================ setlocal reg query HKEY_USERS\S-1-5-20 1>nul 2>nul && goto GotPrivileges_1 If "%ElevError%"=="Y" goto Elev_Err_1 set "args="%~f0" %*" & call set "args=%%args:"=\"%%" echo Initializing... powershell -c "start cmd -ArgumentList '/c set ElevError=Y& call %args%' -verb runas" && exit /b :Elev_Err_1 %ErrLine% echo Right click on this file and select 'Run as administrator' goto MASend :GotPrivileges_1 endlocal

2020-01-03

下载脚本地址.zip

setlocal setlocal DisableDelayedExpansion set "param=%~f0" cmd /v:on /c echo(^^!param^^!| findstr /R "[| ` ~ ! @ %% \^ & ( ) \[ \] { } + = ; ' , |]*^" endlocal if %errorlevel% EQU 0 ( %ErrLine% echo Disallowed special characters detected in file path name. echo Make sure file path name do not have following special characters, echo ^` ^~ ^! ^@ %% ^^ ^& ^( ^) [ ] { } ^+ ^= ^; ^' ^, goto MASend ) ::======================================================================================================================================== if %winbuild% LSS 7600 ( %ErrLine% echo Unsupported OS version Detected. echo Project is supported only for Windows 7/8/8.1/10 and their Server equivalent. goto MASend ) ::======================================================================================================================================== : ================================================ : Self-elevate passing args and preventing loop : Written by @AveYo aka @BAU : ================================================ setlocal reg query HKEY_USERS\S-1-5-20 1>nul 2>nul && goto GotPrivileges_1 If "%ElevError%"=="Y" goto Elev_Err_1 set "args="%~f0" %*" & call set "args=%%args:"=\"%%" echo Initializing... powershell -c "start cmd -ArgumentList '/c set ElevError=Y& call %args%' -verb runas" && exit /b :Elev_Err_1 %ErrLine% echo Right click on this file and select 'Run as administrator' goto MASend :GotPrivileges_1 endlocal

2020-01-03

serenum.7z

ch340安装失败缺少文件 serenum.sys 需要放在C:\Windows\System32\drivers中

2019-07-31

CY7C64225_driver.7z

The PC may pop-up a dialog box asking for driver installation. ZedBoard has a USB-UART bridge based on the Cypress CY7C64225 chipset. Use of this feature requires that a USB driver be installed on your Host PC. If Windows recognizes the USB-UART and loads the software driver, then amber LED D6 will light. Please skip ahead to the next section. However, if the host PC does not recognize the USB-UART and enumerate it as a COM port device refer to the “ZedBoard_USB-UART_Setup_Guide.pdf” document in the link below for instructions on installing this driver. When driver installation is complete, continue to the next step.

2019-07-10

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除