HOW TO upload linux drivers to OES SP2 linux driver store

Hi everyone,
I couldn't get iprntcmd to upload a linux driver to OES SP2 driver
store. Tried everything. Drove me crazy.
The solution I finally came up with is multi-step but it works. Do
this as root.
First:
You can't upload the drivers in compressed form (.gz extension) so to
expand them all you run
for filename in /usr/share/cups/model/*.gz; do gunzip
/usr/share/cups/model/ "$filename";done
This expands all the zipped files in the driver directory.
Second:
Run the following to upload the drivers to the driver store:
for filename in /usr/share/cups/model/*.ppd; do iprntman driver linux
-upload -username admin -P novell -from-ppd
/usr/share/cups/model/"$filename";done
Obviously, you need to substitute your own username and password (-P
parameter). If you don't add the username and password, you'll be
prompted for them for each driver uploaded.
It's not pretty, but it'll get you there.
Regards,
Don

Don,
It appears that in the past few days you have not received a response to your posting. That concerns us, and has triggered this automated reply.
Has your problem been resolved? If not, you might try one of the following options:
- Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
- Check all of the other support tools and options available at http://support.novell.com in both the "free product support" and "paid product support" drop down boxes.
- You could also try posting your message again. Make sure it is posted in the correct newsgroup. (http://support.novell.com/forums)
If this is a reply to a duplicate posting, please ignore and accept our apologies and rest assured we will issue a stern reprimand to our posting bot.
Good luck!
Your Novell Product Support Forums Team
http://support.novell.com/forums/

Similar Messages

  • How to load linux driver module in java

    Hi
    I am currently trying to load a Linux driver module dynamically from java to enable some kind of wireless communication using the System.load() method. But unfortunately, the module is a .ko file rather than a dynamic loadable library .so file in Linux, So that when I try to load this module, I get an error:
    Can't load IA 32-bit .so on a IA 32-bit platform
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1647)
    at java.lang.Runtime.load0(Runtime.java:769)
    at java.lang.System.load(System.java:968)
    at test.main(test.java:10)
    I wonder if this error is caused purely by the type of file or there might be some other reasons? It seems that all the linux drivers are .ko files, can any one help me to figure out a way of loading such linux drivers?
    Thank you
    Song

    Can any one give me some hint?
    I am thinking about one possible solution: write a c program to load this module, then compile the c program to be a shared object library, and use jni to load this shared object library.
    Does this work?
    Thank you

  • How to upload an image to EBS file server (Not store in database) with OAF?

    Dear all,
    I can upload an image into database with blob type. But I want to know how to upload an image to EBS file server. I try to search the forum but I cannot find the solution I want.
    Anybody can reallize it? Please give me some advice or idea?
    Thanks.
    Kenny

    Kenny,
    Framework doesn't provide the option of storing the images as files. You can write a javascript to open a popup and provide a standard HTML file upload component which will save the file on specified location.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to install audio drivers for xp sp2 on intel based macmini

    Processor Name:
    Intel Core i5
      Processor Speed:
    2.3 GHz
      Number of Processors:
    1
      Total Number of Cores:
    2
    I hv installed WinXP SP2 with help of refit.Bootcamp only allows Win7.Graphics fine.No audio.Tried drivers from bootcamp given by Apple,didn't work.Pls help.
    Thanks in advance.

    serial # should be printed on the CD .....

  • How to upload linux file to DB depending on Column name

    Hi ,
    ii'm using Oracle Database 11g R2 need to upload Telecom CDRs to the database on daily basis , it's huge data and changeable , an example of my file in linux Redhat 5 server as below ,
    INDRtotalduration = 00:00:00
    origin_matrix = 4186603ec003ef01
    triggering_key = 665000207
    Start_Date_And_Time = 03/04/2013 09:24:10
    IMSI = 418666651000207
    INDRenddatetime = 03/04/2013 09:24:10
    locind = 0
    Correlation_Identifier = d50648d80000012400000187
    3572640402767000
    IN_service_indicator = 0
    service_context_identifier = [email protected]'m already create my table which is the columns names match the file left right names ( like column name =INDRtotalduration ),
    there is no broblem with this i think i can use SQLLDR to upload this file , but the problem here the positions of the columns in the file could change depending on user behavior it could be the first row comes in the thired row or any row and maybe more rows appears ,
    locind = 0
    origin_matrix = 4186603ec003ef01
    Start_Date_And_Time = 03/04/2013 09:24:10
    INDRtotalduration = 00:00:00
    IMSI = 418666651000207
    triggering_key = 665000207
    Service_Retailer_Name = sdpprov
    INDRenddatetime = 03/04/2013 09:24:10
    Correlation_Identifier = d50648d80000012400000187
    3572640402767000
    IN_service_indicator = 0
    service_context_identifier = [email protected]
    Type_of_IN_Triggering_Key = 1
    Start_Client_Info = 1
    Ordinary_Client_Id = 665000207
    Service_Name = LTE_SOreally this is sample of the file i could be more than 100 rows , and the position of the field and field names could be change every time depending on the Subscriper usage ,
    is there any way to upload the file but after checking the field name in the file and matching to corresponding column name in the table .
    Please help

    Hi,
    If you are only loading one file as a single logical CDR then you could possible just sqlload it into a 2 column table so you have the first column containing the variable name and the second column the value. You can then run a select statement using pivot to turn that into a single logical row - see the example below:
    This example assumes you load the first 3 values from your test data into a table called PIVOT_TEST using sqlloader (i did it with an insert just to demostrate the pivot). You need to list every possible value that the column value could be in the pivot command. See what you think....
    CREATE TABLE pivot_test (
    varname varchar2(100),
    var_value varchar2(100)
    INSERT INTO pivot_test VALUES ('INDRtotalduration','00:00:00');
    INSERT INTO pivot_test VALUES ('origin_matrix','4186603ec003ef01');
    INSERT INTO pivot_test VALUES ('triggering_key','665000207');
    COMMIT;
    SELECT *
    FROM (SELECT varname, var_value
    FROM pivot_test)
    PIVOT (max(var_value) FOR (varname) IN ('INDRtotalduration' AS INDRtotalduration, 'origin_matrix' AS origin_matrix, 'triggering_key' AS triggering_key,'some_other_column' as some_other_column));
    Regards,
    Harry

  • How to upload file from one machine (windows) to another (linux)through cre

    How to upload a file from windows platform to linux platform.
    on both platforms sun app server is running.
    from creator is there any methode to open ftp port and upload

    http://www.google.com/search?q=jdbc+blob
    Blob processing varies between databases; see also examples for whatever database you are using, e.g.
    http://www.google.com/search?q=jdbc+blob+oracle
    If you are storing text data instead of binary data, replace "blob" by "clob" in the searches.

  • How to give linux partition mackbook's drivers

    my problem is that I got a partition with linux and I CAN'T install drivers from installation Cd becouse there's no way to open .exe files by ubuntu...
    I would like to know HOW can I install macdrivers into linux partition.

    Hi Teugon,
    Apple offers two types of installer package types:
    .dmg - For Mac OS
    .exe - Windows XP/Vista/7
    Apple doesn't offer 3rd party support (.deb) for Linux nor is that recognizable OS for Boot Camp. So yes, I think your Linux related question would be better served via the countless number of communities that exist on the Internet. Besides, the previous posters above were just trying to help. Had the original question been phrased clearly perhaps there wouldn't have been such confusion. In a few seconds I was able to find all sorts of links regarding how to setup Linux on a Mac. Here's an example of one - http://sowerbutts.com/linux-mac-mini/

  • How to configure the drivers VGA & network wireless for Enterprise Linux 4

    Hello
    I have installed Enterprise Linux 4 for PC HP Compaq dc7700. The installation was successful but I cannot find linux software driver for VGA & NETWORK.
    Where and how can I FIND and INSTALL the drivers VGA & NetWork for liunx Enterprise 4 .
    The details of the driver for the display is
    VGA=intel Q965/Q963 Express Chipset Family for HP Compaq dc7700 Convertible Minitower PC
    and the driver name for the Network is Wireless D-link DWL-G520 PCI Adapter.
    Thank you

    Hi, Wesam
    Please take a look the following link
    http://h20331.www2.hp.com/enterprise/cache/317386-0-0-0-121.html
    Generally HP compaq dc7700 is not supported with RHEL4.
    so maybe you have to install their drivers manually.
    For VGA driver, please refer to
    http://www.intellinuxgraphics.org/download.html
    For Network adapter ,please refer to
    http://linux-wless.passys.nl/query_part.php?brandname=D-Link
    http://madwifi.org/
    Good luck
    Jason

  • How to upload  and download a files into AL11 directory in ABAP

    Hi,
                   How to upload  and download a files into AL11 directory in ABAP
    thanks
    Moderator message: please search for available information/documentation.
    Edited by: Thomas Zloch on Mar 21, 2011 9:18 AM

    You should try one of these forums for an answer to your question:
    http://swforum.sun.com/jive/forum.jspa?forumID=116
    http://community.java.net/netbeans
    http://linux.java.net

  • How to upload a file using psp?

    how to upload a file to a server using plsql server pages?

    for report generation we are using utl_file(this is because for getting .txt format).so automatically it will be stored in /home/oracle.(oracle 8.1.7 on linux and utl_file path is /home/oracle)
    our problem is
    our clients are using windows98.by running the reports procedure(psp) the reports are stored in server at /home/oracle.
    1.how to transfer that file to clients systems with out using another alternate file transfers?
    2.if not,is there is any alternate procedures for creating our reports in .txt formats by running the psp?
    thanks in advance.

  • How to upload in ASCII format

    I need to learn how to upload a .pl to the cgi-bin in ASCII
    format. Is there a way to get Dreamweaver8 to do this
    automatically?
    Thanks
    chartoonz

    > I need to learn how to upload a .pl to the cgi-bin in
    ASCII format. Is there
    > a way to get Dreamweaver8 to do this automatically?
    It should happen automatically. Have you tried?
    What was the result?
    If the Perl file doesn't work when uploaded- what exactly are
    the error
    messages? Much more likely to be a problem is saving a Perl
    file with
    windows linebreaks and uploading it to a Linux server.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • How to Upload License Key File of MiniSap to SAP System ?

    Hi,
    I have received the license key for MiniSap. I have downloaded the license key file to my local system. Please tell me how to upload this file to the SAP system. I am using Windows XP (SP2) and the MiniSap edition is 6.10 WA1.
    I have to tried to directly enter the license key through transaction code Slicense but got the error "Incorrect Parameter Specified". I also tried to install through OS level but even could not do so. I have ordered key 5 times, none works on either SAP level or the OS level.
    Somebody told me to upload the file, Please Guide me how to upload license key file to the SAP System.
    Thank You
    Best Regards,
    Ryan

    Very late into the reply. But I am sure someone will run into this issue again -
    In windows cmd prompt, navigate to c:\mbs.
    Then type saplicense.exe -install then follow the prompt.
    NOTE: If you get the following error -
    C:\MBS>saplicense.exe -install
    *** SAPLICENSE (Release 46D) ERROR ***
        ERROR:   Can not set DbSl trace function
        DETAILS: DbSlControl(DBSL_CMD_IMP_FUNS_SET) failed with return code 20
        RC-INFO: error loading dynamic db-library - check environment for:
                 dbms_type = <db-type>  (e.g. ora)
                 DIR_LIBRARY = <path to db-dll>  (e.g. /usr/sap/SID/SYS/exe/run)
    Type"C:\MBS>dbenv.cmd", once it is done. simply retype
    saplicense.exe -install then follow the prompt.
    Good Luck.
    T.H.

  • How to upload and download any file from plsql through weblogic server

    hi all,
    how to upload and download any file from plsql through weblogic server? i am using oracle 10g express edition and jboss.
    Thanks and Regards,
    MSORA

    hi bala ,
    for a windown server u can use VNC (virtual network connection) which opens a session on u r desktop later u can drag and drop form there vice versa and for a linux box you can use Win SCP which helps to open a session with interface to u r desktop in both cases you can upload and down load files very easiy just as we drag and drop items in a simple pc .. we use the same technique...
    bye
    vamshi

  • How to upload file from desktop or C drive and send as attachments

    Hello Experts,
    Please tell me
    How to upload jpg or gif or drawing files from desktop or any drive and store into R/3 by the same time I have to send mail as a attachment.
    I heard that FM
    SO_NEW_DOCUMENT_ATT_SEND_API1  is only to send as a  attachment what ever the data is present in the internal table only.
    please help me on that.

    I m using this code its having attachment but I m not able to open the file. Please help me
    I m using gui_upload to upload the file
    PROGRAM  ZTEST
           no standard page heading line-size 255.
    DATA: xfile TYPE string.
    data :     t_IW51 LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: OBJPACK   LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
    DATA: OBJHEAD   LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
    DATA: OBJBIN    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: OBJTXT    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: RECLIST   LIKE SOMLRECI1 OCCURS 5 WITH HEADER LINE.
    DATA: DOC_CHNG  LIKE SODOCCHGI1.
    DATA: TAB_LINES LIKE SY-TABIX.
    data :  email type table of BAPIADSMTP.
    PARAMETERS : file LIKE rlgrap-filename OBLIGATORY.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR file.
      CLEAR file.
      CALL FUNCTION 'F4_FILENAME'
        IMPORTING
          file_name = file.
      xfile = file.
    START-OF-SELECTION.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename            = xfile
          filetype            = 'ASC'
          has_field_separator = 'X'
        TABLES
          data_tab            = t_IW51.
    Creation of the document to be sent
    File Name
      DOC_CHNG-OBJ_NAME = 'SENDFILE'.
    Mail Subject
      DOC_CHNG-OBJ_DESCR = 'Send External Mail'.
    Mail Contents
      OBJTXT = 'Minimum bid : $250000'.
      APPEND OBJTXT.
      OBJTXT = 'A representation of the pictures up for auction'.
      APPEND OBJTXT.
      OBJTXT = 'was included as attachment.'.
      APPEND OBJTXT.
      DESCRIBE TABLE OBJTXT LINES TAB_LINES.
      READ TABLE OBJTXT INDEX TAB_LINES.
      DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    Creation of the entry for the compressed document
      CLEAR OBJPACK-TRANSF_BIN.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM = 0.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM = TAB_LINES.
      OBJPACK-DOC_TYPE = 'RAW'.
      APPEND OBJPACK.
    Creation of the document attachment
    (Assume that the data in OBJBIN is in BMP format)
    *OBJBIN = ' \O/ '. APPEND OBJBIN.
    *OBJBIN = ' | '. APPEND OBJBIN.
    *OBJBIN = ' / \ '. APPEND OBJBIN.
      OBJBIN[] = t_IW51[].
      DESCRIBE TABLE OBJBIN LINES TAB_LINES.
      OBJHEAD = 'PICTURE.PDF'.
      APPEND OBJHEAD.
      OBJBIN[] = t_IW51[].
    Creation of the entry for the compressed attachment
      OBJPACK-TRANSF_BIN = 'X'.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM = 1.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM = TAB_LINES.
      OBJPACK-DOC_TYPE = 'PDF'.
      OBJPACK-OBJ_NAME = 'PICTURE'.
      OBJPACK-OBJ_DESCR = 'Representation of object 138'.
      OBJPACK-DOC_SIZE = TAB_LINES * 255.
      APPEND OBJPACK.
    Completing the recipient list
      RECLIST-RECEIVER = 'email_id have to enter here'.
      RECLIST-REC_TYPE = 'U'.
      APPEND RECLIST.
      RECLIST-RECEIVER = 'ENTEG01'.
      RECLIST-REC_TYPE = 'P'.
      APPEND RECLIST.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
         DOCUMENT_DATA = DOC_CHNG
         PUT_IN_OUTBOX = 'X'
         commit_work = 'X'
      TABLES
         PACKING_LIST = OBJPACK
         OBJECT_HEADER = OBJHEAD
         CONTENTS_BIN = OBJBIN
         CONTENTS_TXT = OBJTXT
         RECEIVERS = RECLIST
    *EXCEPTIONS
      TOO_MANY_RECEIVERS = 1
      DOCUMENT_NOT_SENT = 2
      OPERATION_NO_AUTHORIZATION = 4
    *OTHERS = 99.
      CASE SY-SUBRC.
        WHEN 0.
          WRITE: / 'Result of the send process:'.
          LOOP AT RECLIST.
            WRITE: / RECLIST-RECEIVER(48), ':'.
            IF RECLIST-RETRN_CODE = 0.
              WRITE 'The document was sent'.
            ELSE.
              WRITE 'The document could not be sent'.
            ENDIF.
          ENDLOOP.
        WHEN 1.
          WRITE: / 'No authorization for sending to the specified number',
                   'of recipients'.
        WHEN 2.
          WRITE: / 'Document could not be sent to any recipient'.
        WHEN 4.
          WRITE: / 'No send authorization'.
        WHEN OTHERS.
          WRITE: / 'Error occurred while sending'.
      ENDCASE.

  • HOW TO UPLOAD DATA FROM EXCEL TO INTERNALTABLE

    HI,
    HOW TO UPLOAD DATA FROM EXCEL TO INTERNALTABLE?  & WITH EXAMPLE.

    hi,
    chk this, put the data into an excel file.
    fields inside it are name and age.
    sample excel sheet.
    coloumn 1 is name and column 2 is age
    name age
    A     8
    C     13
    D     55
    DATA : int_excel LIKE alsmex_tabline OCCURS 0 WITH HEADER LINE.
    data : record like db_name_age occurs 0 with header line.
    DATA : v_start_col TYPE i VALUE '1', "starting col
           v_start_row TYPE i VALUE '1', " starting row
           v_end_col   TYPE i VALUE '2', " total columns
           v_end_row   TYPE i VALUE '10'. "total no of record
    FORM f_upload .
      CLEAR : int_excel, int_excel[].
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          filename                = wf_filename
          i_begin_col             = v_start_col
          i_begin_row             = v_start_row
          i_end_col               = v_end_col
          i_end_row               = v_end_row
        TABLES
          intern                  = int_excel
        EXCEPTIONS
          inconsistent_parameters = 1
          upload_ole              = 2
          OTHERS                  = 3.
      IF sy-subrc <> 0.
    *Message is 'Unable to upload data from  '  wf_filename.
        MESSAGE e169(zm050) WITH wf_filename.
      ELSE.
        SORT int_excel BY row col.
        REFRESH : record.
        CLEAR   : record.
        LOOP AT int_excel.
          CASE int_excel-col. "go thru each column.
            WHEN 1.
              record-name  = int_excel-value.
            WHEN 2.
              record-age = int_excel-value.     
          ENDCASE.
          AT END OF row.
            APPEND record.
            CLEAR record.
          ENDAT.
        ENDLOOP.
    *inserting into table
    modfiy db_name_age from table record.
      ENDIF.
    <i><b>ANOTHER EXAMPLE</b></i>
    TYPE-POOLS truxs.
    types: begin of t_tab,
    col1(5) type c,
    col2(5) type c,
    col3(5) type c,
    end of t_tab.
    data : itab type standard table of t_tab,
           wa type t_tab.
    data it_type type truxs_t_text_data.
    parameter p_file type rlgrap-filename.
    data ttab type tabname.
    at selection-screen on value-request for p_file.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    PROGRAM_NAME = SYST-CPROG
    DYNPRO_NUMBER = SYST-DYNNR
    FIELD_NAME = 'P_FILE'
    IMPORTING
    FILE_NAME = p_file
    start-of-selection.
    CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
    EXPORTING
    I_FIELD_SEPERATOR =
    I_LINE_HEADER = 'X'
    i_tab_raw_data = it_type
    i_filename = p_file
    tables
    i_tab_converted_data = itab[]
    EXCEPTIONS
    CONVERSION_FAILED = 1
    OTHERS = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    end-of-selection.
    loop at itab into wa.
    write : wa-col1,
            wa-col2,
            wa-col3.
    endloop.
    rgds,
    anver
    <i>if hlped pls mark points</i>

Maybe you are looking for