
linux
iteye_3794
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
linux 环境下mysql忽略大小写
mysql数据库在window环境下默认是忽略大小写的,而linux环境中则相反,数据库移植过去后可能会影响到应用工程的正常使用。 解决方法: 用root帐号登录后,在/etc/my.cnf 中的[mysqld]后添加添加lower_case_table_names=1,重启MYSQL服务( /etc/init.d/mysqld restart),这时已设置成功:不区分表名的大小写; ...原创 2015-12-29 11:37:21 · 184 阅读 · 0 评论 -
linux下提示bash:command not found的解决方法
如果是新安装的linux系统,如果进行精简安装可能会出现bash:command not found 的提示,大家在安装的时候可以选择默认安装basic的组件,一般就可以解决问题。到时候可以再升级。 如果新装的系统,运行一些很正常的诸如:shutdown,fdisk的命令时,悍然提示:bash:command not found。那么首先就要考虑root 的$PATH里是否已经包含了这些环境变...原创 2014-07-30 16:11:32 · 12646 阅读 · 0 评论 -
JDK安装错误_The download file appears to be corrupted. Please refer
Unpacking... Checksumming... 1 The download file appears to be corrupted. Please refer to the Troubleshooting section of the Installation Instructions on the download page for more information. ...原创 2014-07-30 17:48:04 · 834 阅读 · 0 评论 -
jdk 安装
一般情况下,我们都要将linux自带的OPENJDK卸载掉,然后安装SUN的JDK 首先:查看Linux自带的JDK是否已安装 # java -version // 查看已经安装的JAVA版本信息 一般将获得如下信息: java version "1.6.0" OpenJDK Runtime ...原创 2014-07-30 17:50:37 · 129 阅读 · 0 评论