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
SMSH(4) BSD Kernel Interfaces Manual SMSH(4)NAME
smsh -- SMSC LAN9118/LAN9218 Family Ethernet interfaces device driver
SYNOPSIS
smsh0 at gxio? port 0x40000300 gpirq 99
DESCRIPTION
The smsh device driver supports SMSC LAN9118 and LAN9218 Family Ethernet interfaces.
The ISA attachment of the smsh driver supports any LAN9118 Family Ethernet interface on the ISA bus, the on-board LAN9118 Family Ethernet
found in many embedded PCs. However, no ISA attachment has been written yet.
LAN9218 Family supports also HP Auto-MDIX.
MEDIA SELECTION
Media selection done using ifconfig(8) using the standard ifmedia(4) mechanism. Refer to those manual pages for more information.
SEE ALSO ifmedia(4), intro(4), isa(4), mii(4), ifconfig(8)HISTORY
The smsh driver first appeared in NetBSD 6.0.
AUTHORS
The smsh driver was written by KIYOHARA Takashi <kiyohara@kk.iij4u.or.jp>.
BUGS
No ISA attachment yet.
BSD December 2, 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)