Linux
文章平均质量分 57
yaoneng321
这个作者很懒,什么都没留下…
展开
-
解决linux mysql不能远程访问
以root用户编辑 /etc/mysql/my.cnf 文件如下:///////////////////////////////////////////////////// ## The MySQL database server configuration file.## You can copy this to one of:# - "/etc/mysql/my....2010-03-05 11:01:01 · 271 阅读 · 0 评论 -
解决mysql“Access denied for user 'root'@'localhost'”
# mysql -uroot -pEnter password:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)使用网上介绍的方法修改root用户的密码:# mysqladmin -uroot -p password 'newpassword'Enter pass...2010-03-03 10:57:34 · 147 阅读 · 0 评论 -
ubuntu server 安装注意问题
安装过程注意要点。1.默认请选择英文版 。2.服务器分区方案 /boot : 200MB (主分区) / :10GB 装系统文件 (主分区) /swap :2GB /usr :10GB 装软件 /home :30GB 放一些软件,日杂备份...2010-02-25 19:35:32 · 143 阅读 · 0 评论 -
ubuntu linux 下安装WinRAR方法
在ubuntu linux 不能把文字直接复制到javaeye的编辑器,唯有把资料拷下来,在windows下发文章吧 首先下载 rarlinux-3.9.2.tar.gz , 当然还有其他的版本,我接下来就用这个文件名来作参考吧; 如果用firefox下载这个文件的话,默认下载到home/username/下载 这个目录下,这个时间我们就要打终端;1)用命令: cd 下载 ...原创 2010-02-22 15:14:32 · 1215 阅读 · 0 评论 -
Error:no such device:3c7c1d30-86c7-4ea3-ac16-30d6b0371b02
在xp+linux双系统基础上重装xp在引导进入系统时发生以下问题:Error:no such device:3c7c1d30-86c7-4ea3-ac16-30d6b0371b02 解决方法:1、livecd 启动进入试用系统(也可以直接进入linux系统用root用户)2、挂载 / 分区,比如 / 分区为 /dev/sda7 sudo mount /dev/sda7 /...原创 2010-05-06 12:04:04 · 173 阅读 · 0 评论 -
linux 配置jdk tomcat apache
tomcat 3.1在RedHat下的安装(错误和疑问请和zy.wang@263.net联系)jsp是sun在servlet基础上发展而来的一种新的web开发工具,在国外Ejb+jsp/servlet+应用服务器+数据库已经已经成为电子商务站点的流行架构。tomcat3.1实现了最新的servlet2.2和jsp1.1标准,sun也是推荐使用tomcat,本文介绍tomcat3.1在RedHat下...2010-03-31 22:14:08 · 81 阅读 · 0 评论 -
Unix time: 1234567890
This are my solutions to convert the Unix time ‘1234567890′ to human readable format: GNU date:% date -d @1234567890Sat Feb 14 00:31:30 CET 2009BSD date:% date -ur 1234567890...2010-03-31 11:20:37 · 120 阅读 · 0 评论 -
java.lang.UnsatisfiedLinkError: no swt-mozilla-gtk-3349 or swt-mozilla-gtk in sw
在linux eclipse 的myeclipse中出现java.lang.UnsatisfiedLinkError: no swt-mozilla-gtk-3349 or swt-mozilla-gtk in swt-mozilla-gtk in swt.library.path, java.library...2010-03-13 15:14:37 · 193 阅读 · 0 评论 -
MyEclipse运行错误解决办法:The Linux WYSIWYG design panel is still under development
在Eclipse/MyEclipse中打开可视化编辑窗口,比如JSP的编辑工具,可能会弹出一个警告窗口,信息如下:The Linux WYSIWYG design panel is still under development. To access anexperimental version of this design panel restart with the comman...2010-03-06 13:40:12 · 106 阅读 · 0 评论 -
ubuntu linux flash 乱码解决
如果出现flash乱码现象,可以用以下两条命令解决:sudo cp /etc/fonts/conf.d/49-sansserif.conf /etc/fonts/conf.d/49-sansserif.conf.baksudo rm /etc/fonts/conf.d/49-sansserif.conf...2010-03-05 17:13:53 · 101 阅读 · 0 评论 -
ubuntu 五笔输入法安装
ubuntu8.10中默认安装了scim,但是这时的scim只支持英文,没有中文输入法。这时,如果是习惯拼音输入的用户,只需要安装拼音输入法就行了。命令如下:sudo apt-get install scim-pinyin如果喜欢用skim前端的话,还可以加上skim-scim-pinyin经过安装 ,就可以用拼音输入法了(当然了,你要用scim-setup设置、激活智能拼音。然后重启...2010-03-04 16:49:30 · 89 阅读 · 0 评论