上一页 1 2 3 4 5 6 ··· 8 下一页

2014年4月24日

kernel3.13 针对 Vmware安装存在的问题解决

摘要: vthread-3| W110: Failed to build vmnet. Failed to execute the build commandVMware module patches and installationVMware Workstation 10.0.1 and Player ... 阅读全文

posted @ 2014-04-24 16:22 凌峰布衣 阅读(1078) 评论(0) 推荐(0) 编辑

2014年4月12日

xgcom linux下的串口助手

摘要: 好用到爆@@!2、Install:Source code: http://code.google.com/p/xgcom/ svn checkout http://xgcom.googlecode.com/svn/trunk/ xgcom get source code here , compile and install. or you can get tar ball: http://code.google.com/p/xgcom/downloads/list Some lib and tools are needed: make, automake,libglib2.0-dev,lib. 阅读全文

posted @ 2014-04-12 10:49 凌峰布衣 阅读(3400) 评论(0) 推荐(0) 编辑

2014年4月11日

ubuntu 13.10 无法播放 mp3

摘要: 添加源:#deb cdrom:[Ubuntu 13.10 _Saucy Salamander_ - Release i386 (20131016.1)]/ saucy main restricted# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to# newer versions of the distribution.#deb http://cn.archive.ubuntu.com/ubuntu/ saucy main restricted#deb-src http://cn.archive.u 阅读全文

posted @ 2014-04-11 16:43 凌峰布衣 阅读(612) 评论(0) 推荐(0) 编辑

ubuntu 13.04添加 flash_plugin

摘要: mv libflashplayer.so /usr/lib/mozilla/plugins 阅读全文

posted @ 2014-04-11 16:41 凌峰布衣 阅读(175) 评论(0) 推荐(0) 编辑

2013年9月25日

Linux安装mysql——源码安装

摘要: 1.假设已经有mysql-5.5.10.tar.gz以及cmake-2.8.4.tar.gz两个源文件若没有,则使用 apt-get cache search sql apt-get source sql*****来获取源码。 (1)先安装cmake(mysql5.5以后是通过cmake来编译的) [root@ rhel5 local]#tar -zxv -f cmake-2.8.4.tar.gz[root@ rhel5 local]#cd cmake-2.8.4[root@ rhel5 cmake-2.8.4]#./configure[root@ rhel5 cmake-2.8.... 阅读全文

posted @ 2013-09-25 17:33 凌峰布衣 阅读(300) 评论(0) 推荐(0) 编辑

Ubuntu 12.04中MyEclipse 10.6+下载+安装+破解

摘要: 至于MyEclipse在Ubuntu的安装教程网上很多,那我为什么我还写这篇文章呢?这次重装Ubuntu之后, 在安装MyEclipse 10.6过程中遇到了一个问题,所以把MyEclipse的安装方法记下来并附上问题解决办法。一.获取myeclipse官网下载:http://www.myeclipseide.com/,进入官网找到适合自己得版本,我这里是下载的myeclipse-10.6-offline-installer-linux.run.(注意,官网已被河蟹,真搞不懂,myeclipse官网竟然也落到如此下场.天朝这是种么了.同学们,走.翻.墙.去!!!).博主理解找不到资源的痛苦,上 阅读全文

posted @ 2013-09-25 14:30 凌峰布衣 阅读(9963) 评论(0) 推荐(1) 编辑

2013年9月24日

[零基础学JAVA]Java SE面向对象部分.面向对象基础(06)

摘要: 1.interface 接口2.设计模式(工厂模式)3.异常的捕获 java://接口中定义的全是public,即使不声明也是public的,//如果一个类定义的时候全部由抽象方法和全局常量所组成的话,那么这种类就称为接口/*interface A { // 定义接口 public static final String INFO = "Hello World ." ; public abstract void print() ;}interface B { public abstract void get() ;} class C implements A ,B{ pub 阅读全文

posted @ 2013-09-24 17:57 凌峰布衣 阅读(209) 评论(0) 推荐(0) 编辑

[零基础学JAVA]Java SE面向对象部分.面向对象基础(05)

摘要: 1.继承2.多态3.final4.重载与覆写5. this/super6.抽象类7.接口java:class Person{ private String name; private int age; public Person(){ System.out.println("Person"); } public Person(String arg){ System.out.println(arg); } //this关键字的时候强调过一句话:如果一个类之中有多个构造方法之间使用this()互相调用的话, //那么至少要保留有一个构造方法作为出口,而这个出口就一定会去调用父类 阅读全文

posted @ 2013-09-24 15:41 凌峰布衣 阅读(178) 评论(0) 推荐(0) 编辑

2013年9月22日

[零基础学JAVA]Java SE面向对象部分.面向对象基础(04)

摘要: 2.代码块1.内部类3.链表2.代码块:1.) 普通代码块。2.)静态代码块。3.)构造代码块。4.)同步代码块。class Test{//构造块 { System.out.println("Constract Test block"); } static { a = 10; } Test(){ System.out.println("Constract Test"); } private static int a;}public class BlockTest{ public static void main(String args[]){ //普通块 阅读全文

posted @ 2013-09-22 17:50 凌峰布衣 阅读(249) 评论(0) 推荐(1) 编辑

[零基础学JAVA]Java SE面向对象部分.面向对象基础(03)

摘要: 1.静态变量的使用2.单例模式的使用。3.构造方法的私有化。4.string的使用,两种构造的不同。 小的记忆错误: · 数组的长度:数组名称.length 这个没()哈~~ · 字符串的长度:调用的是里面的方法:字符串对象.length() 这个有()哈~Java:class Info{ //静态变量可以在定义时初始化,是所有对象共同产生的 static String city = "chengdu"; String name ; int age; //单例模式 一个类只有个一实例化模型 private Info(){} private static 阅读全文

posted @ 2013-09-22 17:47 凌峰布衣 阅读(393) 评论(0) 推荐(1) 编辑

上一页 1 2 3 4 5 6 ··· 8 下一页

导航