×

Loading...

Topic

  • 工作学习 / IT技术讨论 / 怎样在unix中安装硬件驱动程序驱动如modem等,以及怎样window跟unix 通讯?
    • 曾经用过AIX,SCO UNIX,SUSE LINUX,每一种UNIX安装驱动程序都不一样,不知道你是用什么版本的UNIX?
      • solaris 2.7
      • 我想请教一下,同一块硬盘上有unix 和windows,这两个系统之间的东西能不能共享,比如在window分区下的数据unix下能使用?
        • Sorry,有谁可以帮他?我没有用过solaris。另外我曾经试过在UNIX下mount Dos 分区的目录,可以读到文件,但反之没有试验过。
          • DOS/WINDOWS 9X好象不行。应该找得到响应的软件
        • 你想做的完全取决于某一个OS里有没有可以读写另一个OS的File system的模块或者软件。
          象linux里有人写了读写FAT16和FAT32的模块,于是在linux 里就可以把FAT16和FAT32的File system mount上。又如Partition Magic,可以读很多种File system。所以如果你可以找到或者自己写出来类似的软件,你就可以做到你想做的事情了。
          • 看看这个行么?http://www.newhua.com/EXPLORE2FS.HTM
            • Sure! But he want to read Solaris' File System...I am afraid there's no such thing yet.
        • 我想主要是文件系统格式,好象光驱,其实就是一种share
        • 不行, windows 不能认Unix格式
    • okay
      If you are on Solaris 2.x, You should use pkgadd to add the vendor supplied package. If you write your own drivers, you have to add it into
      /kernel/drv directory, and provide .conf file if necessary. Also in the init.d
      directory, you need to add necessary scripts to facilitate driver's probing and initialization(for instance, use "add_drv" to create device file,etc)
      If you are on Linux platform, use modins to install driver modules(driver module is a kind of driver that can be dynamically load in kernel and linked with kernel symbol table).
      • High hand!
    • 如果你用外置modem,不需要安装驱动程序。因为Unix只是往一个串口上写数据而已,串口的驱动早在kernel里了。
      • 那岂不是说“如果在串口上连一串口密码输入键,也不需要驱动程序了”吗?可居我所知,不行,而且根据不同标准的密码键驱动程序还不同,如同不一样的打印机选不同的驱动程序一样的道理
        • 只要符合AT命令集,手工输入也可以的。
    • a rough introduce, hope helps
      depending on what UNIX and whether the Modem is popular one or NOT. if the Modem is popular products, the UNIX usually has its driver configED in kernel. otherwise you have to install the Modem's driver. check your DSF(device special file, /dev/tty00, /dev/tty01, ) make sure has NOT been occupied.
      also, you need to think about outgoing connection or bi-direction connection of Modem. so, maybe you have to add a line into /dev/inittab file. at last , edit two file for baut rate, couterpart host name, modem commands, etc., check the feature of /dev/tty* (maybe you have to use shell command " stty " to change the feature ) . good luck