10.21.2008

opensuse安家Dell 1310

最近没什么事,蜘蛛基本上被干掉了,然后听了,看了win的一些事,咋说呢?
不让我们用,我们就不用贝。

Ubuntu升级内核把我的BSD干掉了。很晕
正好好久没用,算了直接删了吧,桌面方面感觉比较一般吧。
换换口味,搞了一套opensuse(11.0),最新版的,
主要是内核和驱动问题,新版的可能解觉得好一点。

昨天晚上回去搞的,装上基本上不用汉化。不错的说
可是网卡驱动有问题,我的Dell 1310 网卡是8111/8168B,可是opensuse
用R8169来驱动,不行,就换贝。网上down了8168B的驱动
make 但是 不能 install 晕,直接 cp 过去
depmod -a
rmmod r8169
modprobe r8168
网卡解决

显卡也要装呀,要不然可能一些桌面效果不能实现。
还是用nv官方的驱动
NVIDIA-Linux-x86-177.80-pkg1.run
sudo gdm-stop
一步步安装ok了

声卡不发声,还是以前的办法,修改一下sound
cat /etc/modprobe.d/sound
#options snd slots=snd-hda-intel
# u1Nb.01UYOr8aW80:82801H (ICH8 Family) HD Audio Controller
alias snd-card-0 snd-hda-intel
options snd-hda-intel index=0 model=dell

无线bcm4310
b43都不行,只能用ndiswrapper
找到windows的dell驱动,r174291/DRIVER_US
ndiswrapper -i bcmwl5.inf
然后设置网络。OK

Labels: ,

10.08.2008

有些笔记本键盘锁定问题

我装Ubuntu 8.0.4.1 不知道什么原因,开机有时会无法使用键盘。
重启就好了,但是在Win下就没问题。

最后找到一个方案,不知道可行不
在grub的kernel 后面追加上 i8042.nopnp=1 i8042.dumbkbd=1 参数
比如我的
title Ubuntu 8.04.1, kernel 2.6.27-rc6liu
root (hd0,6)
kernel /boot/vmlinuz-2.6.27-rc6liu root=UUID=745f0f17-3ce8-456d-9b6f-e8165d35778f ro quiet splash locale=zh_CN i8042.nopnp=1 i8042.dumbkbd=1
initrd /boot/initrd.img-2.6.27-rc6liu

PS:今天把抓取的问题解决了,可以消停一段时间了。呵呵

Labels:

9.22.2008

dell 1310 & Ubuntu

I install Ubuntu 8.0.4.1 on my Dell 1310

It really took me a time for resolve the Drivers problems.

Graphics Card: GF8400 GS
I installed NVIDIA-Linux-x86-173.14.05-pkg1.run for My Graphics Card
but it doesn't work on my new kernel linux-2.6.27-rc6liu
finally I found the driver developed by https://launchpad.net
https://launchpad.net/ubuntu/+source/nvidia-graphics-drivers-173/173.14.09-0ubuntu4
download / dpkg
Now the Graphics is Ready!

Sound Card: Intel-Hda
add the following lines to /etc/modprobe.d/alsa-base
options snd-hda-intel index=0 model=dell
Reboot, It works.

Wireless Card is ready!
I installed Ndiswrapper
sudo apt-get install ndisgtk ndiswrapper-common

dell 1310 wireless card 1395 installations:
echo -e 'blacklist bcm43xx\nblacklist wl' | sudo tee -a /etc/modprobe.d/blacklist
sudo apt-get install ndiswrapper-utils-1.9
mkdir ~/bcm43xx; cd ~/bcm43xx

find wireless driver in Dell driver CD
R174291.exe into /home/edy/R174291
cd /home/edy/R174291
sudo ndiswrapper -i bcmwl5.inf
ndiswrapper -l
sudo depmod -a
sudo modprobe ndiswrapper
sudo cp /etc/network/interfaces /etc/network/interfaces.orig
echo -e 'auto lo\niface lo inet loopback\n' | sudo tee /etc/network/interfaces
sudo ndiswrapper -m
echo 'ndiswrapper' | sudo tee -a /etc/modules
echo 'ENABLED=0' | sudo tee -a /etc/default/wpasupplicant

sudo rmmod b43
sudo rmmod b44
sudo rmmod b43legacy #this step added Apr 27 2008
sudo rmmod wl #this step added Sep 20 2008
sudo rmmod ssb
sudo rmmod ndiswrapper
sudo modprobe ndiswrapper
sudo modprobe ssb
sudo modprobe b44 #this step added May 1 2008

k.o. le
Tks to everyone who contribute for freedom in Linux/Unix World.

https://help.ubuntu.com/community/WifiDocs/Driver/bcm43xx/Feisty_No-Fluff

Labels: