URL(4) BSD Kernel Interfaces Manual URL(4)NAME
url -- Realtek RTL8150L USB Ethernet driver
SYNOPSIS
url* at uhub?
urlphy* at mii?
DESCRIPTION
The url driver provides support for USB Ethernet adapters based on the Realtek RTL8150L USB-ether bridge chip.
The url driver supports the following adapters:
CompUSA USBKR100
GreenHouse GH-USB100B
Melco Inc. LUA-KTX
Sitecom LN013
For more information on configuring this device, see ifconfig(8).
DIAGNOSTICS
url%d: watchdog timeout A packet was queued for transmission and a transmit command was issued, however the device failed to acknowledge the
transmission before a timeout expired.
url%d: no memory for rx list The driver failed to allocate an mbuf for the receiver ring.
SEE ALSO arp(4), mii(4), netintro(4), usb(4), ifconfig(8)HISTORY
The url device driver first appeared in NetBSD 1.6.
AUTHORS
The url driver was written by Shingo WATANABE <nabe@nabechan.org>.
BSD September 18, 2006 BSD
Check Out this Related Man Page
CUE(4) BSD Kernel Interfaces Manual CUE(4)NAME
cue -- CATC USB-EL1210A USB Ethernet driver
SYNOPSIS
To compile this driver into the kernel, place the following lines in your kernel configuration file:
device uhci
device ohci
device usb
device cue
Alternatively, to load the driver as a module at boot time, place the following line in loader.conf(5):
if_cue_load="YES"
DESCRIPTION
The cue driver provides support for USB Ethernet adapters based on the Computer Access Technology Corporation's USB-EL1210A chipset.
The USB-EL1210A supports a 512-bit multicast hash filter, single perfect filter entry for the station address and promiscuous mode. Packets
are received and transmitted over separate USB bulk transfer endpoints.
The CATC chipset supports only 10Mbps half-duplex mode, hence there are no ifmedia(4) modes to select.
For more information on configuring this device, see ifconfig(8).
HARDWARE
The cue driver supports CATC USB-EL1210A based USB Ethernet adapters including:
o Belkin F5U011/F5U111
o CATC Netmate
o CATC Netmate II
o SmartBridges SmartLink
DIAGNOSTICS
cue%d: watchdog timeout A packet was queued for transmission and a transmit command was issued, however the device failed to acknowledge the
transmission before a timeout expired.
cue%d: no memory for rx list The driver failed to allocate an mbuf for the receiver ring.
SEE ALSO arp(4), netintro(4), ng_ether(4), ifconfig(8)HISTORY
The cue device driver first appeared in FreeBSD 4.0.
AUTHORS
The cue driver was written by Bill Paul <wpaul@ee.columbia.edu>.
BSD July 16, 2005 BSD
here at work. we operate by making all of our unix systems alerts be sent to Microsoft Outlook for us to investigate.
now, there are quite a number of url link alerts that are sent to our inboxes. problem is that we have to copy and paste each of those urls into our browser.
i hate... (4 Replies)
hello all
Iam using this command to substitute the existing line with a # here
sed -i '/url-map = etc/url.c/ s/url-map = etc/url.c/#url-map = etc/url.c/' con.txt
while using this command iam getting errors like
sed: -e expression : Extra characters after command
Any suggestions on... (7 Replies)
Hi All,
I am using the below script to enter the URL at the end of file:
echo "Enter the URL that should point to the particular microsite"
read url
sed "$a $url" redirects.virgin-atlantic.com.conf > temp
But am getting the below error:
./script.sh:... (7 Replies)
Hello everybody.
I have lines that looks something like this:
<done16=""118"" done18=""$ title=""thisisatitle"" href=""/JoeBanana" alt=""Joe""><done16=""118"" done18=""$ title=""thisisatitle"" href=""/GeraldGiraffe" alt=""Gerald"">
What kind of SED command would I need to use to extract... (4 Replies)
I've been trying to figure out how to extract filenames (with extensions) from a variable that contains a series of URL strings that won't necessarily be the same length or contain the same number of paths as part of a bash shell script. For example
#!/bin/bash
... (3 Replies)
Hi,
I am studying Linux device driver . I got a sample code of Reltek driver which doing basic functionality. Can u help me what modification i can do so that i can make it more good.
Please help me with very useful functionality i can make..
Industrial oriented (2 Replies)
In windows, I can create a shortcut for websites. It's a .url file.
the content of the file is like:
How can I open it, the .url file, in firefox or google chrome in Unix(or just ubuntu)? (2 Replies)
I am trying to extract the url between the anchor tag of html
<a href="http://unix.com">Unix</a>
The urls like above are saved in a file named url_file
sed :\<a.href=\"\(.*\)\"\>.*\<\/a\>:\1:p url_file
The above sed command says no match.
Where is the problem I am unable to... (2 Replies)
Hi all
so I'm new to scripting but I am making a script that is a url shortener. It will take a url off the command line and spit back the shortened version using bit.ly's api
this is what I have so far
if
then
echo "You must supply a URL."
exit 1
fi
read url... (3 Replies)
Hi ,
I am trying to write a mod_header module rule which will look a specific url (https://partner.testing.com) and rewrite it. The header line is given below. where the url comes in between of the line. i know ^ expression can be used for match the beginning of the line. but not sure how to... (3 Replies)
Hello guys,
Here i am writing a script to check for a valid url from a file,i am getting the valid url & i print it in a file and i want to print the invalid url also.how to do that?
#here is my script
if
then
URL=$(grep -E -o... (2 Replies)
i am executing below code to achive my result, but for second row the value is not coming
it should come URL like other two . url start with http:// and end with .xhtml
cat FILE | grep 'Test failed' | awk -F',' '{print $3,$8,$12}'
INPUT
1517679173303,84,SKILLED LANGUAGE - ENTER... (11 Replies)