Jeg har til at loade mine dyk fra min dykkercomputer og til en pc en infrared usb adapter.
Den vil jeg gerne kunne bruge på Ubuntu også.
Den medfølgende cd med drivere indeholder også en til linux men hvordan får den istalleret ?
Når jeg åbner den er der flere filer, bla. en som hedder install og er et tekstdokument som indeholder følgende tekst som er rusisk for mig
Kode: Vælg alt
1. make : To compile the driver.
2. make install: To install a driver.
3. make remove: Remove the driver.
4. make clean: delete the modules
Instructions:-
1. make
2. make install
3. irattach <device name> (ex:- irda0, Device name can found in the log file)
Applications:
1. irxfer :- ircp application is used to transmit and recieve data from other computer through irda device.
a) irxfer <file or filenames> : To send a file to the other computer.
b) irxfer : To recieve files which are send by the other computer.
Note: Using the ircp application recieve file are stored in / directory.
2. irobex_palm3: This application is used to transmit and recieve data from the palm Devices.
a) irobex_palm3 : To recieve files from the palm device.
b) irobex_palm3 <file> : To send a file to the palm device.
Note: Using irobex_palm3 application recieve files are stored in /tmp directory.
3. For printer usage
1. Configure the printer using the print configuration tool by specifying the device name /dev/irlpt0.
2. or, cat <filename> > /dev/irlpt0
Hvad gør den smarte ? han søger hjælp i forum
Der er også en som hedder Makefile
Den indeholder følgende
Kode: Vælg alt
obj-m := mcs7780.o
KDIR := /lib/modules/$(shell uname -r)/build
#KDIR := /usr/src/redhat/SOURCES/linux-2.6.11
PWD := $(shell pwd)
default:
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules;
install:
-modprobe irda
insmod mcs7780.ko
remove:
rmmod mcs7780
clean:
rm -rf *.*o
rm -rf .*.mod.c
Giver det nogen mening ?
Mvh.
Svend Åge