drivers unix 5.01 is compatible with drivers epson fx-2190


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers drivers unix 5.01 is compatible with drivers epson fx-2190
# 1  
Old 12-04-2006
drivers unix 5.01 is compatible with drivers epson fx-2190

Please, I'm From Argentina, And I Need To Know If The Drivers Of Program Unix, Version 5.01 Is Compatible Whit Drivers Of The Printer Epson Fx-2190

Thanks, And I Hope Yuor Answer.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

DS8K drivers

Hi, We have all our servers connected to IBM DS8k via SVC. Some servers have SDD drivers and some have SDDPCM drivers. Now we have 2 servers one is physical other is IVM server, which dosen't have these drivers installed on them. They bothe are in production. Now we need to installe these... (6 Replies)
Discussion started by: vjm
6 Replies

2. UNIX for Dummies Questions & Answers

Mach drivers

hello everyone, can anyone tell me what drivers the Mach kernel works with. I'm thinking about experimenting with the Mach kernel, and yes I know there are other kernels that are easier to work with but I just want to use the Mach kernel. So with that being said, can the Mach kernel work with... (11 Replies)
Discussion started by: neur0n
11 Replies

3. Ubuntu

graphics drivers

ok, right off the bat im going to say this, i know that there is about over 100 links on google for this, just none of them help me. i have a radeon mobility 7500 graphics card. and i want to enable the compiz effects via Administration/preferences/Appearance. the problem is that i can't get the... (12 Replies)
Discussion started by: Texasone
12 Replies

4. Linux

i need help on installing some drivers

hello everyone i am a windows user and now im migrating to unix systems, i installed openSUSE linux on my system and i need help on installing the driver for a wireless USB adapter (TP-Link )and the driver for the graphic Card (geforce 5500). (1 Reply)
Discussion started by: abu_malek
1 Replies

5. Solaris

Solaris drivers

Hi All, Does anyone know where I can download the ge drivers for solaris 2.6? Having a bit of a mare trying to find them anywhere. Thanks Rgrds Marty (5 Replies)
Discussion started by: callmebob
5 Replies

6. AIX

Drivers

I seem to be having a driver issue installing a PCI SCSI card. Any ideas where I can track these down.. I can't seem to find them on the OS install disk. I'm using AIX 5.3. cfgmgr: 0514-621 WARNING: The following device packages are required for device support but are not currently... (7 Replies)
Discussion started by: eth0
7 Replies

7. Solaris

Drivers

Hi guys, Im totally new to solaris 10, I've just installed it & it works fine However, I get no sound when playing cds. Am wondering where I get the solaris 10 drivers for my soundblaster live from and how to install them? Thx in advance. Frizz (0 Replies)
Discussion started by: Frizz
0 Replies

8. UNIX for Advanced & Expert Users

Hardware and drivers

Dear All Can somebody help me how H/W and H/W drivers will affect the application? When I port my application from HP-UX to Solaris should I take care this area? What are the application touch point in H/W or H/W drivers on these two O.S.? (1 Reply)
Discussion started by: charlcy
1 Replies

9. UNIX for Advanced & Expert Users

Ethernet Drivers

I installed Solaris 8 on Compaq EN733 system which has Intel /100 Network Card. When I ran 'ifconfig -a', it did not show any nic card attarched to it. I am not sure is this driver problem or something else. Any help will be highly appreciated. Thanks. (4 Replies)
Discussion started by: s_aamir
4 Replies

10. UNIX for Dummies Questions & Answers

best place for unix drivers ?

anyone ??? (1 Reply)
Discussion started by: jimmyok
1 Replies
Login or Register to Ask a Question
modldrv(9S)						    Data Structures for Drivers 					       modldrv(9S)

NAME
modldrv - linkage structure for loadable drivers SYNOPSIS
#include <sys/modctl.h> INTERFACE LEVEL
Solaris DDI specific (Solaris DDI) DESCRIPTION
The modldrv structure is used by device drivers to export driver specific information to the kernel. STRUCTURE MEMBERS
struct mod_ops *drv_modops; char *drv_linkinfo; struct dev_ops *drv_dev_ops; drv_modops Must always be initialized to the address of mod_driverops. This member identifies the module as a loadable driver. drv_linkinfo Can be any string up to MODMAXNAMELEN characters (including the terminating NULL character), and is used to describe the module and its version number. This is usually the name of the driver and module version information, but can contain other information as well. drv_dev_ops Pointer to the driver's dev_ops(9S) structure. SEE ALSO
add_drv(1M), dev_ops(9S), modlinkage(9S) Writing Device Drivers SunOS 5.10 5 Mar 2001 modldrv(9S)