摘要: 1. 创建桌面启动器(编辑/usr/share/applications/eclipse.desktop)[Desktop Entry]Encoding=UTF-8Name=eclipseComment=Eclipse IDEExec=/opt/eclipse/eclipseIcon=/opt/eclipse/icon.xpmTerminal=falseStartupNotify=trueType=ApplicationCategories=Application;Development;2. 加上执行权限 chmod a+x/usr/share/applications/eclipse.d. 阅读全文
posted @ 2013-08-11 11:59 Melvin.Yang 阅读(393) 评论(0) 推荐(0) 编辑
摘要: 1. 修改/etc/profile文件(注意:如果只修改~/.bash_profile文件,在terminal执行的时候结果正常,但是eclipse不能正常启动。) export JAVA_HOME=/usr/java/jdk1.7.0_04 export PATH=.:$JAVA_HOME/bin:$JAVA_HOME/jre/bin:$PATH2. 注销或是重启3. 执行java -version查看效果 阅读全文
posted @ 2013-08-11 11:52 Melvin.Yang 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 1. 查看当前使用内核版本 uname -a2. 查看系统所有内核 dpkg --get-selections | grep linux3. 卸载旧内核 apt-get purge linux-image-3.5.0-xx-generic,其中xx为具体版本号4. 卸载内核头文件 apt-get purgelinux-headers-3.5.0-xx,其中xx为具体版本号 阅读全文
posted @ 2013-08-11 10:29 Melvin.Yang 阅读(187) 评论(0) 推荐(0) 编辑