Penguin
Diff: UbuntuDapperNotes
EditPageHistoryDiffInfoLikePages

Differences between version 6 and predecessor to the previous major change of UbuntuDapperNotes.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 6 Last edited on Thursday, July 27, 2006 2:14:49 pm by CraigBox Revert
Older page: version 5 Last edited on Thursday, July 27, 2006 11:52:33 am by VikOlliver Revert
@@ -1,18 +1,26 @@
-!!Ubuntu 6.06 LTS ( The Dapper Drake)  
+!! My Davicom (tulip) network card isn't working  
+There is [a recorded problem with the tulip driver|http://launchpad.net/distros/ubuntu/+source/linux-source-2.6.15/+bug/48287] in the kernel shipped with Ubuntu 6.06. The 'tulip' driver claims the card, but it should be assigned to the 'dmfe' driver.  
  
-! My Davicom card (tulip) isn't working  
-There seems to be some problems with the tulip drivers in Dapper . Using the <tt>dmfe</tt> driver fixes this. 
+This problem was fixed in the package for 2.6.15-24 .40, and the latest kernel from dapper-security should no longer have this bug
  
-Add :%%%  
-<tt> dmfe</tt>%%%  
-to /etc/modules  
+!Manual temporary fix
  
-Cut & paste into terminal:%%%  
- <tt >sudo sh -c "echo dmfe >> /etc/modules" </tt
+<pre >  
+ sudo -s -H  
+rmmod tulip  
+rmmod dmfe  
+modprobe dmfe  
+ /etc/init.d/networking stop  
+/etc/init.d/networking start  
+ </pre
  
-and :%%%  
-<tt> blacklist tulip</tt>%%%  
-to /etc/modprobe.d/blacklist  
+!Manual permanent fix
  
-Cut & paste into terminal:%%%  
- <tt >sudo sh -c "echo blacklist tulip >> /etc/modprobe.d/blacklist"</tt
+Add <tt>dmfe</tt> to ''/etc/modules'' and add <tt>blacklist tulip</tt> to ''/etc/modprobe.d/blacklist''.  
+  
+You can cut and paste these lines into a terminal to do this for you :  
+  
+<pre >  
+sudo sh -c "echo dmfe >> /etc/modules"  
+ sudo sh -c "echo blacklist tulip >> /etc/modprobe.d/blacklist"  
+ </pre