码迷,mamicode.com
首页 >  
搜索关键字:mount point    ( 11132个结果
该分手的八大征兆
该分手的八大征兆Relationships are important – to each other, to our families, to our friends, to the people we care about. There comes a point in romantic rel...
分类:其他好文   时间:2014-06-26 23:29:21    阅读次数:355
自己第一个控制台的游戏——贪吃蛇
一直想自己写个游戏玩玩,好像很厉害的样子,终于今天下定决心写了个最经典的休闲的小游戏——贪吃蛇,当然也有借鉴别人的程序,但是整个代码都是和别人不一样的,直接上代码吧: #include #include #include #include using namespace std; #define ROW 22 #define COL 22 struct Point { char ch...
分类:其他好文   时间:2014-06-26 13:24:30    阅读次数:196
opencv-边缘检测
// ConsoleApplication3_6_23.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include #include using namespace std; using namespace cv; Mat src,dst,gray; int pro_typ...
分类:其他好文   时间:2014-06-26 06:46:25    阅读次数:315
[老生常谈] Linux 下读取windows共享目录
依然,废话不多说直接给命令sudomount-tcifs-ousername=YOURDOMAIN\\username,passwd=‘mypassword‘//10.123.123.123/temp/svrshare$HOME/mymntcdmymntcptemp.txt$HOMEcd~chmod777temp.txt简单讲述一下以上什么意思,第一条就是将//10.123.123.123/temp/svrshare共享目录加载到..
分类:Windows程序   时间:2014-06-26 06:25:00    阅读次数:274
RHEL DHCP服务器及其中继
DHCP服务器:环境:RedHatEnterpriseLinuxServerrelease5.2!!注意:设置ip地址为静态ip地址,我这里设置为:192.168.0.80(一)先挂载光盘并安装dhcp包:挂载:mount/dev/cdrom/mnt/安装包:rpm-ivh/mnt/Server/dhcp*rpm-ivhdhcp-3.0.5-13.el5.i386.rpm(二)编辑配置文件:..
分类:其他好文   时间:2014-06-26 06:06:47    阅读次数:254
C语言常量与指针
C语言功能强大而丰富,还表现在const与指针的结合使用上,对不同的问题,它提供不同的保护,特别有用的是指向常量的指针本文地址:http://www.cnblogs.com/archimedes/p/c-const-point.html,转载请注明源地址。指向常量的指针可以将指针指向常量,这就意味着...
分类:编程语言   时间:2014-06-25 14:43:22    阅读次数:189
esxi主机密码破解
最近换了工作,在别人工作交接中,发现很多esxi主机都没有密码,所有只能破解。如果非要恢复密码,操作如下:用linux启动光盘,如rhel5的安装光盘或knoppix启动创建/mnt/sda5目录,mkdir/mnt/sda5挂载命令:mount-tvfatmount/dev/sda5/mnt/sda5破解:cp/mnt/sda5/stage.tgz/tmp..
分类:其他好文   时间:2014-06-25 10:32:46    阅读次数:683
POJ 1269 Intersecting Lines(线段相交,水题)
Intersecting Lines 大意:给你两条直线的坐标,判断两条直线是否共线、平行、相交,若相交,求出交点。 思路:线段相交判断、求交点的水题,没什么好说的。 struct Point{ double x, y; } ; struct Line{ Point a, b; } A, B; double xmult(Point p1, Point...
分类:其他好文   时间:2014-06-24 21:16:40    阅读次数:155
Linux运维学习之 —— 搭建本地yum源
yum是RPM的前端工具,通过yum命令可以帮我们自动解决安装rpm包之间的依赖关系。下面是搭建本地yum仓库的步骤:1、挂载光盘(光盘为CentOS-6.5-x86_64-bin-DVD2.iso)mount/dev/cdrom1/medials一下/media这个目录,可以看到以下内容2、创建本地文件夹,将Packages下的rpm包全部..
分类:系统相关   时间:2014-06-24 16:18:22    阅读次数:304
Container With Most Water
题目 Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (...
分类:其他好文   时间:2014-06-24 16:00:49    阅读次数:220
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!