一.发现问题 利用VM安装Red Hat Linux的时候,第一个iso安装完毕,准备换第二个iso,报错“该光盘无法被挂载”. 二.解决办法 上面的菜单栏中“虚拟机”—>“设置”—>“硬件选项卡”—>“CD/DVD”—>ISO路径选择第二个iso.必须注意的是在运行过程中设置改变虚拟光驱的光盘镜像的过程中,是默认将虚拟光驱断开的,这样即使之后切换了光盘镜像,由于虚拟光驱断开了,所以还是不能加载光盘镜像.在VMW中切换光盘时,设备状态一定要选择“已连接”.…
data.zip文件有4G多,解压的时候出问题了. Archive:  data.zip End-of-central-directorysignature not found.  Either thisfile is not a zipfile, or itconstitutes one disk of a multi-partarchive.  In the latter case the centraldirectory and zipfile comment will be found…
用VM打开以前的虚拟机文件报错 Cannot open the disk 'F:/****.vmdk' or one of the snapshot disks it depends on. 这种问题经常碰到,一般是删除虚拟机系统目录下的  后缀名为 .lck 的文件或文件夹就行了.…
一.linux下编译make文件报错“/bin/bash^M: 坏的解释器 参考文章:http://blog.csdn.net/liuqiyao_01/article/details/41542101#comments 自己测试的结果: [1]使用windows 下的编辑工具 新建文件doc2unix.sh #!/usr/bin/env bash # test PID=$(ps -aef | grep nginx | grep -v grep | grep master |awk '{print…
xshell上传文件报错乱码,解决方法 rz -be 回车 下载sz  filename…
Linux下Oracle11G RAC报错:在安装oracle软件时报file notfound一例 1.现象 之前安装一切都比較顺利,安装oracle软件时,进度到30%时报错:file not found(/u01/app/oracle/product/11.2.0/db_1/owb/external/oc4j_applications/applications/WFMLRSVCApp.ear) 2.应对策略 1.  改变选择语言处.仅仅选择"English": 2.  又一次解压…
JMeter 报告监听器导入.jtl结果文件报错解决方案   by:授客 QQ:1033553122   1. 问题描述 把jmeter压测时生成的 .jtl结果文件导入监听器报告中,弹出如下错误提示 error loadding results file -see log file 2.  原因分析与解决方案 打开logger view,查看出错日志,下,提示没有足够的列用于解析 文件比较大,windows下查看打不开,,所以在Linux上用vim命令打开,定位到那行,结果发现如下截图,数据缺…
Linux  使用终端指令 ar x /Users/apple/Desktop/libWC_LIB_SDKT.a解压一个文件 报错如图所示: 是因为该.a文件包含了多个cpu架构,比如armv7,armv7s,arm64等,此时可以用如下命令 首先需要判断当前.a文件包含了 那些CPU架构,使用指令: otool -Vf /Users/apple/Desktop/libWC_LIB_SDKT.a 结果如图所示: 然后此时使用指令分别进行如下操作: lipo xx. a -thin armv7 -…
python 读取csv文件报错问题 import csv with open('E:/Selenium2script/DDT模块/test.csv','rb') as f: readers = csv.reader(f) next(readers,None) for line in readers: print(line) 输出:_csv.Error: iterator should return strings, not bytes (did you open the file in tex…
Linux下Electron loadURL报错 ERR_FAILED(-2) Not allowed to load local resource 背景 使用electron-vue的时候,窗体创建后加载页面使用的是loadURL函数,并且传入的参数形如: `file://${__dirname}/index.html` PS:在electron-vue中,编译打包后的__dirname是asar所在绝对地址/dist/electron/. 编译打包后的Electron程序启动时候,发现在调用…