- 浏览: 45705 次
- 性别:
- 来自: 安康
最新评论
-
wolfboy:
执行了 delete mysql.user where us ...
mysql新建用户本地无法登录 -
leon.s.kennedy:
高 实在是高
mysql新建用户本地无法登录 -
pockter:
谢谢,刚刚碰到情况,按照上面的步骤解决了。就那么简单
ubuntu无线上网配置WPA/WPA2路由
文章列表
一直以来没法玩war3,因为总是在wine启动时报驱动错误。今天看了一个帖子,恍然大悟,在wine命令前设置驱动变量到32位驱动库即可。
export LIBGL_DRIVERS_PATH=/usr/lib32/dri
由于linux内核对于WPA的加密方式支持不是很好,所有使用普通方式的命令行无法连接WPA2类型的路由。
首先检查是否安装了wpasupplicant,ubuntu10.04已经安装了。
使用命令生成需要的配置文件
wpa_passphrase ESSID PWD > xxx.conf
然后将生成的xxx.conf放到一个确定的目录下,我的放到了~/netconf下面。
然后运行:
sudo wpa_supplicant -B -i wlan0 -Dwext -c ~/netconf/lncmcc.conf
使用iwconfig wlan0检查已经连接上路由
然后就是自 ...
参见:
https://wiki.ubuntu.com/X/KernelModeSetting
我的是ATI的显卡。
直接命令
sudo su
echo options radeon modeset=0 > /etc/modprobe.d/radeon-kms.conf
但是修改后mplayer出不来图像了。nnd,不想删除mplayer再编译安装了,郁闷阿,只好不玩wine+war3了。
据网上其他说升级到内核2.6.34也可以解决该问题,供有兴趣折腾得童鞋试试。
安装以后一直发现声音很小
使用alsamixer调节没什么差别,耳机里面声音比较正常,但是扩音的声音令人发指。
看到网上发贴,学习后坐下列操作:
ls -al /dev/snd
展示如下:
total 0
drwxr-xr-x 3 root root 220 2010-05-17 18:27 .
drwxr-xr-x 17 root root 3820 2010-05-18 22:03 ..
drwxr-xr-x 2 root root 80 2010-05-17 18:27 by-path
crw-rw----+ 1 root audio 11 ...
安装就不多废话了。
安装后^+space,发现fcitx不起作用,执行下面操作解决:
gconf-editor
打开的是“配置编辑器”,找到“/desktop/gnome/interface/gtk-im-module”,设置为“xim”。OK了
感谢dbott67
原文地址:http://ubuntuforums.org/showthread.php?t=280473
HOWTO: Mounting SMB/CIFS Shares
A few of the downsides on the Nexstar LX NAS device that I purchased is that:
1. It does not support CIFS
2. It does not support SATA drives (IDE only)
3. It is 10/100 Mbps (no gigabit)
4. ...
出此是用mysql,因为root权限过高,所以新建一用户appadmin,权限仅为要用到的数据库。创建语句如下:grant select,insert,update,delete on test.* to appadmin@"%" identified by "password";其中@“%”是可以在任何地址登录。
创建后到mysql.user下查看,有该用户。但是使用mysql -u appadmin -ppassword 登录,提示无法登录:ERROR 1045 (28000): Access denied for user 'appadmin'@'l ...