码迷,mamicode.com
首页 >  
搜索关键字:system    ( 49231个结果
linux学习笔记-第十九课-LAMP之php 与 mysql 配置(三)
一、php编译完的php,配置文件为空,我们需要将php的配置文件(php.ini)从解压的源码包中的php.ini-development(开发调试模板)和php.ini-production(生产运行模板)中复制一份到php的配置目录中,且名字改为php.ini1)disable_functions配置默认为空,修改为disable_functi..
分类:数据库   时间:2015-05-09 13:30:54    阅读次数:152
【Linux】关于IP直达文件hosts
hosts文件经常听到,改hosts什么的,但这个文件的真实作用是什么呢?网上对于这个文件解释永远是那种太长不看的理论。让我看的头昏眼花。 一、hosts的基本理论 其实hosts文件在任何一个系统都有,这个hosts在任何系统都没有后缀名,是一个相当于系统全局变量的东西, 在Linux的路径是/etc/hosts,安卓同理root后在/system/etc/hosts,IOS在iF...
分类:系统相关   时间:2015-05-09 11:46:18    阅读次数:175
Java 继承之子父类中的成员变量和函数
成员变量: 先看这样一段代码: //父类。 class Fu { int num = 3; } class Zi extends Fu { int num = 4; void show() { System.out.println("num = "+this.num); } } class ExtendsDemo { public static void main(Str...
分类:编程语言   时间:2015-05-09 11:44:43    阅读次数:176
未能加载文件或程序集“XXX”或它的某一个依赖项。
未能加载文件或程序集“xxx”或它的某一个依赖项。说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。异常详细信息: System.BadImageFormatException: 未能加载文件或程序集“xxx”或它的某一个依...
分类:其他好文   时间:2015-05-09 11:33:18    阅读次数:134
POJ 2367Genealogical tree 简单拓扑排序
Genealogical tree Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 3358   Accepted: 2255   Special Judge Description The system of Martians' blood relatio...
分类:编程语言   时间:2015-05-09 08:54:29    阅读次数:150
Linux文件系统管理
文件系统管理:         重新创建文件系统会损坏原有文件 mkfs:make file system         mkfs -t TYPE 指定的分区         mkfs -t ext2 == mkfs.ext2         mkfs -t ext3 == mkfs.ext3         mke2fs                 -j:创建...
分类:系统相关   时间:2015-05-09 08:50:57    阅读次数:217
php基本配置
找到php配置文件,查看配置文件路径命令:/usr/local/php/bin/php-i|head1.配置disable_functiondisable_functions=eval,assert,popen,passthru,escapeshellarg,escapeshellcmd,passthru,exec,system,chroot,scandir,chgrp,chown,escapeshellcmd,escapeshellarg,shell_exec,pro..
分类:Web程序   时间:2015-05-09 06:38:52    阅读次数:172
序列化 | 反序列化
《项目一: 序列化》 创建一个控制台应用程序,命名为“序列化” using System; using System.Collections.Generic; using System.Configuration; using System.Data.SqlClient; using System.IO; using System.Linq; using System.Runtime.Seri...
分类:其他好文   时间:2015-05-09 01:19:38    阅读次数:158
sublime text2建成C语言(C++)编译环境
四个步骤:下载安装Sublime text2 for windows下载安装 MinGW 与 系统变量设置Sublime Building System 设置编译测试一、下载安装Sublime text2 for windows下载地址:http://www.sublimetext.com/二、下载...
分类:编程语言   时间:2015-05-09 01:15:26    阅读次数:412
面向对象(构造函数)
class Person { private String name;private int age;Person() { System.out.println("A:name="+name+",age="+age); cry(); } Person(String n) { name=n; ...
分类:其他好文   时间:2015-05-08 23:47:01    阅读次数:143
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!