LC(4) BSD Kernel Interfaces Manual LC(4)NAME
lc -- DEC EtherWORKS III Ethernet interfaces device driver
SYNOPSIS
lc0 at isa? port ? iomem ? irq ?
DESCRIPTION
The lc device driver supports DEC EtherWORKS III Ethernet interfaces, which are based on the LEMAC Ethernet chip. This includes the DE203,
DE204, and DE205.
MEDIA SELECTION
The EtherWORKS III series supports various combinations of media, depending on model. Some models also support media autoselect. Media is
selected with ifconfig(8)'s media directive.
SEE ALSO ifmedia(4), intro(4), isa(4), ifconfig(8)BUGS
The lc does not currently support EISA LEMAC interfaces.
BSD November 10, 1997 BSD
Check Out this Related Man Page
TL(4) BSD Kernel Interfaces Manual TL(4)NAME
tl -- Ethernet driver for Texas Instruments ThunderLAN based board
SYNOPSIS
tl* at pci? dev ? function ?
Configuration of PHYs is necessary. See mii(4).
DESCRIPTION
The tl device driver supports network adapters based on the Texas Instruments ThunderLAN chip.
HARDWARE
Supported cards include:
Compaq Netelligent
in baseboard and PCI variants (10BASE-T-only variant untested).
Compaq NetFlex 3/P
in baseboard variant only (the PCI variant doesn't use the same chip!).
It Baseboard Compaq Deskpro 4000 5233MMX Ethernet
(This has been tested on the Deskpro 4000M only).
TI TravelMate 5000 series laptop docking station's Ethernet board.
MEDIA SELECTION
The different models of the supported boards come with some subset of RJ-45, BNC and AUI connectors. Media selection is done using
ifconfig(8) using the standard ifmedia(4) mechanism. Refer to those manual pages for more information.
The tl driver doesn't have full automatic media selection. By default it will do an Nway (IEEE 802.3u) negotiation on the 10BASE-T port for
the speed and duplex mode with the link partner. If the AUI or BNC port is used, an explicit media type must be specified to ifconfig(8).
SEE ALSO ifmedia(4), mii(4), netintro(4), pci(4), ifconfig(8)BUGS
The board marked as untested will always claim having an AUI connector, where it may be a BNC one.
BSD May 16, 2009 BSD
I have about 5000 columns of data that i need to convert all of it into pecentages. for shorter colums i have been using this code:
{print $1/($1+$2)*100,$2/($1+$2),$3/($3+$4)*100 .....}
but this is a teadious process... is there anyway to do it without having to write all of them out?
sample... (20 Replies)
Hi All
I have this csv file and I need to calculate the average of FPS.
FPS:27.7420, Interval:1314184238772
FPS:25.9798, Interval:1314184242646
FPS:27.4772, Interval:1314184246311
FPS:26.1623, Interval:1314184250159
FPS:26.4515, Interval:1314184253972
FPS:31.5896, Interval:1314184257163... (24 Replies)
nawk -F, 'NR==FNR{file=FILENAME;a++;next} a{if(FILENAME~file)next;b++;}
END{ for(i in a){if(a && !b){print "NEW: "i}} for(i in b){if(b)print i"\t\t"b}}' OFS=, 123.csv *.csv
I need to include 123.csv into the equation for the total output currently it compares whatever is on 123.csv against... (27 Replies)
Hi Team,
how can i calculate the number as below in shell script for below expression.
34 /50 * 100 equals to 68%
now how i would represent this in shell script.
Thanks,
Jewel (23 Replies)
Just my second week working on awk I need a hint for the following tasks.
I want to limit my logfile from the very outset to 200 lines. All I do until now is
head -c 10K >> /home/uplog.txt | awk 'END{print NR " swap " NF$5; exit}' /home/uplog.txt;
After being read it shall print the very... (27 Replies)
Can anyone explain what each line of the code does and how it works? I have no experience with python so I am not sure how the arrays and such work. I found this code while looking through the forums.
f = open("exams","r")
l = f.readline()
while l:
l = l.split(" ")
values = l
... (22 Replies)
Please help me to write a script
Match with ACNO & NAME if it matched calculate the total val1 val2 val3 and val4 and GT is total of ACNO wise.please check the output
Table
-----------------
1005|ANDP|ACN|20|50|10|30
1005|ANDP|ACN|20|10|30|40
1001|AND|NAC|40|50|40|50... (22 Replies)
Hi, Just wanting to know if there is any issues today with the site. Initially I thought it is my internet connection or computer but regardless which one I use, the site has been slow and it is also not showing with the right fonts etc. I've been trying for the last 12+ hours and it's always been... (21 Replies)
Hi folks,
I have a script where i am trying to calc the difference between two epoch dates and then have a condition based on the resultant value.
When I run the script it keeps complaining;
expr: syntax error
./testdiff.sh: line 11: syntax error in conditional expression
./testdiff.sh:... (25 Replies)
This exercise has taught me a lot about POSIX, dash and their limits.
I decided to experiment with fixed point arithmetic using dash as the shell.
If you want to test it then change the shebang to your directory where 'dash' is or use 'bash' instead.
This was one of the hardest things I have... (21 Replies)