第一种音量调节的示例#region 音量控制 private Point
mouse_offset; private void pictureBox7_MouseDown(object sender, MouseEventArgs
e) { ...
1.首先使用RMAN做一次备份(必需有次备份)
rman target /
backup database;
or
backup database root;
backup pluggable database pdb;
2.在pdb中创建test用户并授权
sqlplus / as sysdba
alter session set container=pdb;
cr...
分类:
数据库 时间:
2014-06-11 00:37:06
阅读次数:
403
原题地址:https://oj.leetcode.com/problems/container-with-most-water/题意:Givennnon-negative
integersa1,a2, ...,an, where each represents a point at coordina...
分类:
编程语言 时间:
2014-06-10 20:05:44
阅读次数:
213
题目
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).
The robot can only move either down or right at any point in time. The robot is trying t...
分类:
其他好文 时间:
2014-06-10 18:43:37
阅读次数:
254
mount 命令
1 查看分区
ls /dev/sda*
或者 fdisk -l
2 挂载操作
mount /dev/sda1 /mnt/ #将sda1挂载到 /mnt目录下#
3查看挂载情况
mount 或者 ls /mnt/
4 取消挂载
umount /dev/sda1
5 如果sda1正在使用中无法卸载可以使用
duser -m /mnt...
分类:
系统相关 时间:
2014-06-10 18:31:24
阅读次数:
283
环境:rhel5.4 x64位虚拟机,过程:1、将OS
系统安装光盘iso上传到虚拟机中,挂载iso光盘:mount -t iso9660 -o loop /tmp/RHEL-5.4_x86_64_DVD.iso
/mnt2、找到安装光盘中repodata文件夹位置,例如rhel在/mnt/Serv...
分类:
其他好文 时间:
2014-06-10 16:07:33
阅读次数:
235
本人使用的Tomcat版本为apache-tomcat-6.0.18(用的是解压包),解压路径为E:\apache-tomcat-6.0.18\apache-tomcat-6.0.18\,我如果部署在myEclipse里启动可以正常启动,当然也可以访问我的工程,但是如果我直接在tomcat源文件b....
分类:
编程语言 时间:
2014-06-10 08:32:35
阅读次数:
264
贪心算法,每条路径最短2格,故前k-1步每次走2格,最后一步全走完由于数据比较小,可以先打表#include
#include #include #include using namespace std;typedef pair Point;int main(){
int n, m, k, f...
分类:
其他好文 时间:
2014-06-10 00:33:15
阅读次数:
302
服务器:192.168.20.204客户端:192.168.20.2031.
在服务器配置/etc/export 添加可以共享的文件夹和允许的客户端地址/home/dir
192.168.20.203(rw,no_root_squash,async)要加上no_root_squash,async,不...
分类:
其他好文 时间:
2014-06-09 19:39:09
阅读次数:
358
挂在的信息一般通过
nfs_parse_mount_option。可以直接打印。会有很多信息。1.修改的地方在super.c该文件涉及到获取超级快等操作。修改enum{};在里面添加
Opt_username, Opt_passwd,2.修改另一个枚举类型,添加:Opt_username,"user...
分类:
其他好文 时间:
2014-06-09 19:20:42
阅读次数:
8232