Jeg er lidt ny med Ubuntu. Grunden til at jeg ikke slipper windows helt endnu er at jeg ikke kan komme på trådløst net med min bærbare. Den er af typen: Fujitsu Siemens Li1718 (http://www.fujitsu-siemens.co.uk/home/p ... _1718.html).
For at aktivere netkortet skal man fysisk trykke på en speciel netværksknap. Problemet er bare at denne knap ikke virker i Ubuntu. Jeg har prøvet utallige guides og howto's, men har omsider fundet denne som ser troværdi ud: http://ubuntuforums.org/archive/index.php/t-644899.html
Somsagt er jeg lidt ny i brug af terminal osv, og jeg har lidt problemer med at udføre guiden.
Guiden er som følger:
Kode: Vælg alt
On with the HOWTO:
1. Make sure your system is up to date, and includes the necessary tools to compile the new kernel modules:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install build-essential
2. Get the patched source:
wget http://www.cakey.de/acerhk/archives/acerhk-0.5.35.tgz
wget http://snapshots.madwifi.org/special/madwifi-ng-r2756+ar5007.tar.gz
3. Build the new Madwifi modules, to enable support for the Atheros AR5007EG card:
tar xfvz madwifi-ng-r2756+ar5007.tar.gz
cd madwifi-ng-r2756+ar5007
make
sudo make install
4. Build the new acerhk module, needed to enable the wireless button on the machine:
cd ..
tar xfvz acerhk-0.5.35.tgz
cd acerhk-0.5.35
make
sudo make install
5. Create a file containing instructions which the system will carry out when the acerhk module is loaded - see comments in the file:
sudo gedit /etc/modprobe.d/amilo_special_keys.modprobe
and paste the following into the file, save and exit
# set up kernel module acerhk to enable Fujitsu Siemens Amilo Li1718 special keys
# and enable wireless when the module is inserted.
# NOTE: to have the wireless hardware disabled until you press the wireless key on the laptop,
# simply replace "echo 1" with "echo 0" in the command below.
install acerhk /sbin/modprobe --ignore-install acerhk force_series=6805 autowlan=1; echo 1 > /proc/driver/acerhk/wirelessled
6. Remove the acerhk module which is shipped with Ubuntu:
sudo rm /lib/modules/2.6.22-14-generic/ubuntu/misc/acerhk.ko
7. Rebuild the module dependencies database
sudo depmod -a
8. Tell the system to load the acerhk module at boot time - it won't otherwise, as it's not actually an Acer laptop!
sudo gedit /etc/modules
add on a new line at the end of this file, then save and exit:
acerhk
9. restart your machine and you should have a working wifi card.
Når jeg når til step 3, får jeg denne fejl når jeg skriver "make" i terminalen:
Kode: Vælg alt
markus@markus-laptop:~$ cd madwifi-ng-r2756+ar5007
markus@markus-laptop:~/madwifi-ng-r2756+ar5007$ make
make: *** No targets specified and no makefile found. Stop.
markus@markus-laptop:~/madwifi-ng-r2756+ar5007$ sudo make install
make: *** No rule to make target `install'. Stop.
Kan godt være jeg er komplet idiot men kunne godt bruge lidt hjælp.
På forhånd tak.