Help with 3com driver - Printable Version +- Linux-Noob Forums (https://www.linux-noob.com/forums) +-- Forum: Linux Noob (https://www.linux-noob.com/forums/forum-3.html) +--- Forum: Just Starting Linux (https://www.linux-noob.com/forums/forum-63.html) +--- Thread: Help with 3com driver (/thread-1199.html) Pages:
1
2
|
Help with 3com driver - mollux67 - 2007-08-22 I've just installed Ubuntu 7.04 on my desk computer (P4P800 Motherboard). No problem for that. But in order to get internet, I have to install the 3C2000 driver (3com ethernet controller integrated in the motherboard). So I tried with the "linux driver" avaible on the motherboard installation CD, and I followed the instruction. By typing the command "make load" as indicated, I got pages of errors, only that, and I think t's because my installation folder is called "linux-headers-2.6.20-15" and not linux or linux 2.4 as indicated in the readme file. I thought that the driver I'm tying to install is to old for my OS, so I checked on 3com website if there is a newer version of the 3c2000 driver for linux. There was one, it's a tar file, that I unpacked. It contained 3 files: install.sh, readme, sk98lin.4 and another compressed folder sk98lin.tar.bz2. The readme file tells that I have in a first time to type ./install.sh, in order to launch the installing bash. But then : vincent@vincent-desktop:~/DriverInstall$ .install.sh ./install.sh: 68: Syntax error: "(" unexpected. Could someone please help me??? I don't know what else to do. PS : I'm new in here, I present my self, I'm Vincent alias mollux67, I'm french student, so please excuse me, but correct me, if I make errors by writing english. Help with 3com driver - anyweb - 2007-08-22 welcome to the forums ! you have to untar the bz2 file as it says in the README file see below:- Quote:Login as 'root'.2. Unpack the driver installation package using the command so heres the code, Code: tar xfvj sk98lin.tar.bz2 once done, if the install.sh script is still erroring then make it executable and do this as root usually with sh files you have to make them executable first so to do that become root Code: sudo -i now make the file executable Code: chmod +x install.sh then run it Code: ./install.sh Help with 3com driver - mollux67 - 2007-08-22 Thanks for that answer, but I still have the same error. PS : Sweden's a great country, I've been travelling there several times over all Scandinavia. Takk! Help with 3com driver - anyweb - 2007-08-22 thanks :) did you untar the file before trying to run the install.sh ? Code: tar xfvj sk98lin.tar.bz2 Help with 3com driver - mollux67 - 2007-08-22 Yes, but not in a proper way. Now I exactly did it like you, but I still have the same error! Help with 3com driver - anyweb - 2007-08-22 can you please paste your commands (copy paste them here) and the resulting errors so I can see what you are doing exactly also we are on IRC, see my signature. cheers anyweb Help with 3com driver - mollux67 - 2007-08-22 I've never used IRC before, but I'm gonna paste it here, sorry... Help with 3com driver - mollux67 - 2007-08-22 Code: vincent@vincent-desktop:~$ tar xfvj install-8_23.tar.tar Help with 3com driver - mollux67 - 2007-08-22 A friend of mine told me to type : Code: lspci | grep Ethernet and I got : Code: 3Com Corporation 3c940 10/100/1000 Base-T [Marvell] (rev 12) Maybe the controller is already installed, but internet doesn't work. Maybe is there something to set? ...but I don't knowhow! Help with 3com driver - anyweb - 2007-08-22 Quote:A friend of mine told me to type : all that shows you is that the kernel can see it, it doesnt necessarily mean that it has support for it. try this Code: ifconfig do you see any ip for eth0 ? if not, try Code: dhclient now do ifconfig again any change ? could be that you already HAVE an ip but you dns is wrong (gateway) if that's the case you could ping google's ip but not google.com if thats the case try this Code: route add default gw 192.168.0.1 replace 192.168.0.1 with the ip of your cable modem/router/isp cheers anyweb |