Kan iemand mij precies uitleggen wat ik precies moet doen. Ik heb een readme, maar ik snap er niks van 
Zou iemand mij stap voor stap kunnen uitleggen wat ik hierbij moet doen.
Alvast bedankt,
Trip.X
(ps: ben net begonnen met linux, dus alvast sorry als dit een domme vraag is)
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| 1> $tar -xvzf DPB_RT2860_Linux_STA_x.x.x.x.tgz go to "./DPB_RT2860_Linux_STA_x.x.x.x" directory. 2> In Makefile set the "MODE = STA" in Makefile and chose the TARGET to Linux by set "TARGET = LINUX" define the linux kernel source include file path LINUX_SRC modify to meet your need. 3> In os/linux/config.mk define the GCC and LD of the target machine define the compiler flags CFLAGS modify to meet your need. ** Build for being controlled by NetworkManager Please set 'HAS_WPA_SUPPLICANT=y' and 'HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y'. ** Build for being controlled by WpaSupplicant with Ralink Custom Event Please set 'HAS_WPA_SUPPLICANT=y' and 'HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=n'. command: #./wpa_supplicant -Dralink -ira0 -c wpa_supplicant.conf -d 4> $make # compile driver source code 5> $cp RT2860STA.dat /etc/Wireless/RT2860STA/RT2860STA.dat # !!!check if it is a binary file before loading !!! 6> load driver #[kernel 2.4] # $/sbin/insmod rt2860sta.o # $/sbin/ifconfig ra0 inet YOUR_IP up #[kernel 2.6] # $/sbin/insmod rt2860sta.ko # $/sbin/ifconfig ra0 inet YOUR_IP up 7> unload driver $/sbin/ifconfig ra0 down $/sbin/rmmod rt2860sta |
Zou iemand mij stap voor stap kunnen uitleggen wat ik hierbij moet doen.
Alvast bedankt,
Trip.X
(ps: ben net begonnen met linux, dus alvast sorry als dit een domme vraag is)