VMware创建虚拟机的时候遇到一个经典报错: Attempting to start up from: EFI VMware Virtual SCSI Hard Drive (0.0) … unsuccessful. EFI VMware Virtual SATA CDROM Drive (1.0 ...
分类:
系统相关 时间:
2019-11-30 11:24:54
阅读次数:
1520
Linux系统实现虚拟内存有两种方法:交换分区(swap分区)和交换文件 交换文件 查看内存:free -m , -m是显示单位为MB,-g单位GB 创建一个文件:touch /root/swapfile 使用dd命令,来创建大小为2G的文件swapfile: dd if=/dev/zero of= ...
分类:
系统相关 时间:
2019-11-29 00:39:21
阅读次数:
114
回退命令: repo forall -c 'commitID=git log --before "2019-11-24 23:59" -1 --pretty=format:"%H"; git reset --hard $commitID' 参数含义: forall 操作分支中的所有仓库 -c 只操作 ...
分类:
其他好文 时间:
2019-11-28 21:35:56
阅读次数:
322
执行recover操作时: RMAN> recover database; Starting recover at 28-NOV-19 using channel ORA_DISK_1 starting media recovery channel ORA_DISK_1: starting arch ...
分类:
其他好文 时间:
2019-11-28 19:10:25
阅读次数:
59
原文: https://zixue.3d66.com/changjianwenti/tiwen_9679.html win10查看硬盘序列号方法步骤:1、Win+R键运行cmd,进入命令行界面: 2、先在命令提示符中输入 diskpart 命令并回车如下图 然后输入 list disk 回车查看有几 ...
一、缓存位置 在浏览器开发者工具的 Network 的 Size 栏会出现的三种情况: from Service Worker from memory cache from disk cache 真正的网络请求(显示资源的具体大小,示例:15.6KB) 1、Service Worker 本质是作为服 ...
分类:
系统相关 时间:
2019-11-26 19:57:38
阅读次数:
97
1.git 创建和删除分支: 创建:git branch 分支名字 本地删除:git branch -D 分支名字 远程删除:git push origin :分支名字 2.git 回退到以前提交的版本 git log:查看提交的日志 git reset --hard commit_id(这个是提交 ...
分类:
其他好文 时间:
2019-11-26 12:00:34
阅读次数:
88
题目链接: 题解思路:首先按数组中的下标建一棵线段树,假设原数组是a,我们用一个新数组b记录a,将b数组先按权值排序、再按下标排序,然后再用数组记录m次询问,按k从小到大排序,再对每个询问二分线段树右边界,最后把m次询问按原来的顺序排回来,最后按顺序输出答案即可。 #include<bits/std ...
分类:
其他好文 时间:
2019-11-25 15:09:10
阅读次数:
59
F2. Wrong Answer on test 233 (Hard Version) Your program fails again. This time it gets "Wrong answer on test 233" . This is the harder version of the ...
分类:
其他好文 时间:
2019-11-25 00:15:57
阅读次数:
68
D2. Optimal Subsequences (Hard Version) This is the harder version of the problem. In this version, 1≤n,m≤2?105. You can hack this problem if you lock ...
分类:
其他好文 时间:
2019-11-25 00:14:02
阅读次数:
72