Running perl scripts off the preinstall script during a pkgadd

Hello,
I'm trying to build a custom package (apache2 + mysql + php + other stuff) and get stuck on some stone wall that I can't figure.
Correct me if I'm wrong in my assumptions, and if able, could you provide a work around ? Here it is :
- The preinstall script must be in /bin/sh , /bin/bash or any valid shell
- Must be run by root, 'f course
Now.. As I'm not that strong on bash/sh scripting, I tried to call a perl script off my preinstall script. Somehow my preinstall script just never call the .pl .
This leads me to my third assumption :
- It is impossible, not permissible to run other scripts from the preinstall script.
Basically the perl script checks for some users in /etc/passwd + /etc/group, checks for some directories, create a custom SMF manifest, etc etc . I pretty much want the .pl script to be run.
The script itself is well packaged, correctly inserted in the package's pkgmap, and so on.
Any ideas ?
Thanks,
Jeff

The script itself is well packaged, correctly inserted in the package's pkgmap, and so on.http://docs.sun.com/app/docs/doc/817-0406/ch3enhancepkg-10289?a=view

Similar Messages

  • Can i run a printer off the ethernet cable connection without hurting the imac or is the ethernet slot only for internet connection?

    can i run a printer off the ethernet cable connection without hurting the imac or is the ethernet slot only for internet connection?

    Hi, Alan -
    How can I connect to both printer (HP 4050n, via direct connection) and internet (via LAN), as my iMac has only one R45 port?
    You can, but you'll need to expand your cabling a bit.
    You'll need to get an intermediate ethernet hub, switch, or router. That device sits alone, with the Mac, your printer, and your modem/LAN plugged into it.
    If you are already using a router, either separate or in combination with the modem (many modems have a built-in router), then you just need a hub or switch.
    I use an ethernet switch (10/100/1000) to let both my Macs (a 2010 iMac and an elderly G4 DA model) use my HP4000n printer and my modem. The ethernet switch is a passive device, meaning there's no setup nor instructing it required - it's truly plug-and-play. All four items (two Macs, printer, and modem) are plugged into it via ethernet; both Macs have full-time independent access to the printer and the modem.

  • How to launching a perl script by the "begin" script of a jumpstart

    Hi all,
    i have an urgent pb with my solaris jumpstart, let me explain to you :
    i want that the begin script launch some perl script, but i have a problem
    here is my "begin" script:
    echo "Begining ISO FLAR based jumpstart."
    echo ""
    echo "Starting Ullink Configuration"
    env > /tmp/env
    /bin/sh << EOF
    /usr/bin/perl /cdrom/.archives/admin-scripts/sethostname.pl
    EOFmy perl script use a STDIN
    with this configuration, the perl script is launching but it runs in a loop indefinitely with an error "use of uninitialized value", because (i think) a value is return to the begin scritp and not to the perl script.
    well, on a pre-installed solaris, if a launch the begin script, it happens the same thing, it runs in a loop, BUT if i comment the line "/bin/sh <<EOF" and "EOF", it works.
    at this step, i say "ok it's cool my script is working", but when i use it during the jumpstart instalaltion, the perl script does not start, without any particular error.
    here is my perl script, if you want to test :
    #!/usr/bin/perl -w^M
    # Set Hostname for Ullink Jumpstart^M
    ^M
    use strict;^M
    ^M
    sub hit_enter {^M
        print "Hit enter to continue\n";^M
        <STDIN>;^M
        print "\033[2J";^M
    }^M
    ^M
    sub get_hostname {^M
        my %towns_list = (^M
            'Paris' => 'PA',^M
            'New-York' => 'NY',^M
        );^M
    ^M
        my %sites_list = (^M
            'Office' => 'OFC',^M
            'Redbus' => 'RED',^M
            'Telehouse' => 'TLH',^M
            'DTC' => 'DTC',^M
            'iAdvantage' => 'IAD',^M
            'Nutley' => 'NUT',^M
            'Level3' => 'LV3',^M
            'Equinix' => 'EQX',^M
            'Tata' => 'TAT',^M
            'Switch-data' => 'SWI',^M
            );^M
    ^M
        my %usage_list = (^M
            'Production' => 'PRD',^M
            'UAT' => 'UAT',^M
            'DMZ' => 'DMZ',^M
        );^M
    ^M
        sub select_list {^M
            my $counter=-1;^M
            my %hash_list = @_;^M
            my @keys = keys %hash_list;^M
    ^M
            # Clear screen^M
            print "\033[2J";^M
            print "In which country this machine is hosted or will be host and will be used ?\n\n";^M
    ^M
            # Get all keys from hash^M
            my $key;
            while ($key = each %hash_list ) {^M
                $counter++;^M
                print "$counter - $key\n";^M
            }^M
    ^M
            print "\nChoose the number corresponding to your choice :\n";^M
            my $choice_number;
            chomp ($choice_number = <STDIN>);^M
    ^M
            # Verify answer^M
            if (($choice_number =~ /\d+/) and ($choice_number <= $counter)) {^M
                # Add choice to chosen hostname^M
                my $chosen=$hash_list{$keys[$choice_number]};^M
                return $chosen;^M
            } else {^M
                print "\nYour answer is not correct, you need to enter a number between 0 and $counter\n";^M
                &hit_enter;^M
                &select_list;^M
            }^M
        }^M
    ^M
        sub srv_number {^M
            print "\033[2J";^M
            print "What is the server number ?\n";^M
            my $server_number;
            chomp ($server_number = <STDIN>);^M
            if ($server_number =~ /\d+/) {^M
                return $server_number;^M
            } else {^M
                print "\nYour answer is not correct, you need to enter a number\n";^M
                &hit_enter;^M
                &srv_number;^M
            }^M
        }^M
    ^M
        my $full_hostname = &select_list(%towns_list).'-';^M
        $full_hostname = $full_hostname.&select_list(%sites_list).'-';^M
        $full_hostname = $full_hostname.'SRV-';^M
        $full_hostname = $full_hostname.&select_list(%usage_list).'-';^M
        $full_hostname = $full_hostname.&srv_number;^M
    ^M
        sub write_hostname2tmp {^M
            open (HOSTNAME, ">/tmp/set_hostname") or warn "Couldn't write $_[0] to temp file : $!\n";^M
                print HOSTNAME "$_[0]\n";^M
            close (HOSTNAME);^M
        }^M
    ^M
        print "\033[2J";^M
        print "Is $full_hostname the correct name for this server ? (y/n)\n";^M
        if (<STDIN> =~ /y|yes/i) {^M
            &write_hostname2tmp($full_hostname);^M
        } else {^M
            print "Would you like to retry (r) or set manually the hostname (s) ? (r/s)\n";^M
            if (<STDIN> =~ /s/i) {^M
                print "Type the full required name and hit enter when finished :\n";^M
                chomp ($full_hostname = <STDIN>);^M
                &write_hostname2tmp;^M
            } else {^M
                &get_hostname;^M
            }^M
        }^M
    }^M
    ^M
    # Start configuration^M
    print "\033[2J";^M
    print "\n########################################################\n";^M
    print "#\t\t\t\t\t\t       #\n";^M
    print "#\t\t\tULLINK\t\t\t       #\n";^M
    print '#  Solaris Environnement Installation for Datacenters  #';^M
    print "\n#\t\t\t\t\t\t       #";^M
    print "\n########################################################\n\n";^M
    print "Before starting installation, you need to enter a set of informations.\n(answer to all questions, you can Ctrl+C to stop now)\n\n";^M
    &hit_enter;^M
    ^M
    &get_hostname;^Mthank for your help
    Edited by: ullink on Jun 25, 2009 6:05 AM

    Hi Manju,
    You can try the following command and check if any helps:
    Get-Exchangeserver |where-object{$_.AdminDisplayVersion -like "Version 15*"} |Get-MailboxStatistics | Ft -auto -wrap DisplayName,database,servername,*size*,*time*
    Best regards,
    Niko Cheng
    TechNet Community Support

  • JavaFX trying to run java components off the applet host? (on mac only)

    Does anyone know why my javafx applet is trying to access the likes of com/sun/java/util etc off the host that is hosting the applet.
    The webserver just denies these requests and the applet crashes with something like java.util prohibited. Why is the applet doing this? It shoudl be getting the components from the client side?

    I keep getting a message about UNC paths not being supported.  I could swear this that was working last week!!
    I would simplify matters by running this command from a Console (cmd.exe):
    \\ComputerName\c$\Java\bin\service\StopServerService.bat
    Does it work?
    What does StopServerService.bat contain?
    What operating system do the two machines run?
    Is UAC active on the remote machine?
    After solving the problem at the console level you should get further advice from a VBA forum.

  • How to add a script to the toolbar script?

    How do I make an Automator script/application into a script accessible from the toolbar?  In the toolbar I have the Script icon.  I'd like to be able to access my own script from there from a third-party app.  Can this be done?

    Hi Albert.
    You need to do a few things for that :
    - Create your own GUI status by copying STANDARD_FULLSCREEN from function group SLVC_FULLSCREEN.
    - Set your own PF-Status using the Exclude table because otherwise your exclude table would become meaningless.
    - define a subroutine to handle the user commands.
    Sample implementation :
    FORM pf_status USING extab TYPE slis_t_extab.
      extab = pf_exclude.   
      SET PF-STATUS 'STANDARD' EXCLUDING extab.       
    ENDFORM.                    "PF_STATUS
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program       = repid
          i_callback_user_command  = 'USER_COMMAND'
          i_callback_pf_status_set = 'PF_STATUS'
          is_layout                = layout
          it_fieldcat              = fieldcat
          it_excluding             = pf_exclude
        TABLES
          t_outtab                 = itab
        EXCEPTIONS
          OTHERS                   = 0.
            FORM user_command  USING r_ucomm LIKE sy-ucomm
                                       rs_selfield TYPE slis_selfield.
    ENDFORM.
    Please reward points if found helpful.

  • Trouble installing the PERL modules for the ITunesU script

    I am trying to install the modules specified in the PERL script. I get an error when trying to install which I think is a result of a problem with the MAC developer tools. This is the output that I get when trying to install the Digest::SHA module
    Can someone please tell me how to fix this?
    cpan> install Digest::SHA
    CPAN: Storable loaded ok
    Going to read /Users/admin/.cpan/Metadata
    Database was generated on Wed, 21 Mar 2007 01:09:40 GMT
    Running install for module Digest::SHA
    Running make for M/MS/MSHELOR/Digest-SHA-5.44.tar.gz
    CPAN: Digest::MD5 loaded ok
    CPAN: Compress::Zlib loaded ok
    Checksum for /Users/admin/.cpan/sources/authors/id/M/MS/MSHELOR/Digest-SHA-5.44. tar.gz ok
    Scanning cache /Users/admin/.cpan/build for sizes
    Digest-SHA-5.44/
    Digest-SHA-5.44/t/
    Digest-SHA-5.44/t/state/
    Digest-SHA-5.44/t/state/state.1
    Digest-SHA-5.44/t/state/state.256
    Digest-SHA-5.44/t/state/state.512
    Digest-SHA-5.44/t/state/state.384
    Digest-SHA-5.44/t/4-bitstr-large.t
    Digest-SHA-5.44/t/2-nist-vectors-byte.t
    Digest-SHA-5.44/t/nist/
    Digest-SHA-5.44/t/nist/Readme.txt
    Digest-SHA-5.44/t/nist/bit-messages.sha1
    Digest-SHA-5.44/t/nist/byte-hashes.sha1
    Digest-SHA-5.44/t/nist/byte-messages.sha1
    Digest-SHA-5.44/t/nist/COPYRIGHT
    Digest-SHA-5.44/t/nist/bit-hashes.sha1
    Digest-SHA-5.44/t/1-exist.t
    Digest-SHA-5.44/t/5-hmac-rfc2202.t
    Digest-SHA-5.44/t/2-nist-sha-base64.t
    Digest-SHA-5.44/t/2-nist-sha-1.t
    Digest-SHA-5.44/t/4-bitstr-increasing.t
    Digest-SHA-5.44/t/2-nist-sha-256.t
    Digest-SHA-5.44/t/0-pod.t
    Digest-SHA-5.44/t/0-pod-coverage.t
    Digest-SHA-5.44/t/7-ireland.t
    Digest-SHA-5.44/t/2-nist-sha-224.t
    Digest-SHA-5.44/t/2-nist-sha-384.t
    Digest-SHA-5.44/t/3-gillogly-easy.t
    Digest-SHA-5.44/t/6-dump-load.t
    Digest-SHA-5.44/t/2-nist-sha-512.t
    Digest-SHA-5.44/t/5-hmac-fips198.t
    Digest-SHA-5.44/t/gillogly/
    Digest-SHA-5.44/t/gillogly/state.110
    Digest-SHA-5.44/t/gillogly/state.011
    Digest-SHA-5.44/t/5-hmac-woodbury.t
    Digest-SHA-5.44/t/3-gillogly-hard.t
    Digest-SHA-5.44/t/5-hmac-sha-256.t
    Digest-SHA-5.44/t/2-nist-sha-oo.t
    Digest-SHA-5.44/t/2-nist-vectors-bit.t
    Digest-SHA-5.44/t/1-hello-world.t
    Digest-SHA-5.44/t/4-bitstr-random.t
    Digest-SHA-5.44/examples/
    Digest-SHA-5.44/examples/dups
    Digest-SHA-5.44/Changes
    Digest-SHA-5.44/MANIFEST
    Digest-SHA-5.44/typemap
    Digest-SHA-5.44/src/
    Digest-SHA-5.44/src/sha.c
    Digest-SHA-5.44/src/sha64bit.c
    Digest-SHA-5.44/src/hmacxtra.c
    Digest-SHA-5.44/src/sha.h
    Digest-SHA-5.44/src/hmac.h
    Digest-SHA-5.44/src/shaxtra.c
    Digest-SHA-5.44/src/hmac.c
    Digest-SHA-5.44/src/sha64bit.h
    Digest-SHA-5.44/META.yml
    Digest-SHA-5.44/SHA.pm
    Digest-SHA-5.44/SHA.xs
    Digest-SHA-5.44/shasum
    Digest-SHA-5.44/Makefile.PL
    Digest-SHA-5.44/README
    Removing previously used /Users/admin/.cpan/build/Digest-SHA-5.44
    CPAN.pm: Going to build M/MS/MSHELOR/Digest-SHA-5.44.tar.gz
    Checking if your kit is complete...
    Looks good
    Writing Makefile for Digest::SHA
    -- NOT OK
    Running make test
    Can't test without successful make
    Running make install
    make had returned bad status, install seems impossible
    cpan>
    I installed the Developer tools from Apple's web site.
    Thanks
    Donna

    I figured it out. I discovered that the developer tools weren't installed by default on the Darwin OS. I downloaded them from the Apple site, installed the dmg file and then installed the required Perl modules and then it worked beautifully.
    The problem was that the modules couldn't make properly when being installed.
    Fun Fun
    Donna

  • Is there any way to run a timer on the presentation screen during two consecutive presentations?

    I administer exams that require running two consecutive presentations and interact with the person being tested. With each candidate we use two different presentations, so I can't just make only one presentation.  Is there a way to have a timer display on the presentation screen through both presentations? Each person only has thirty minutes to get thru both presentations. If one only takes ten minutes, then they have twenty for the final one. I'd like to get away from using egg timers.

    take a look at this thread, you can find some useful info about running old and some new games on Booklet there.

  • How well does Final Cut Pro X run on an off-the-shelf 21.5" iMac?

    I'm looking at purchasing an iMac for video editing projects but my budget is very limited. How well does a plain-jane iMac 21.5" (SATA 5400 RPM Drive, Iris Pro Graphics, 8 GB RAM) run FCPX?
    Currently at my office I'm running FCPX on a Mid-2010 model with the 3.06 Core i3, 4GB of RAM and a Radeon HD 4670 256 MB. It is more than adequate for my needs in both FCPX and Motion 5. Will the current base model compare favorably to the one I'm already using?

    Ian R. Brown wrote:
    Most of the drives in MacBookPros were only 5,400rpm and I don't recollect them causing any problems with editing.
    Yup, depends on simplicity and what you can "get away with".
    Al

  • Cannot install microsoft 2007 because i cannot get rid off the preinstalled commercial version on my

    How to uninstall preinstalled version of microsoft office on my all in one 320

    Hello Imanuzza:
                To unistall go to control panel select programs and features. Then go down the list of programs and select the program to unistall. Now you did not give us your computers make and model number or version windows. So I a summed you have a Touchsmart  widows 7 computer. Before you uninstall Microsoft Office 2010 please contact Microsoft support technicians go to MSN.com because Microsoft Office 2007 may not be capabilities. Least on a HP Touchsmart 600-1050 Windows 7 Ultimate . What the technician did for me was let me download Microsoft Office 2010 and gave me a new product key. Yes the Microsoft Office 2007 features worked but the updater part did not worked and caused other issues with other operating system software.
               If you do want to try it on your computer before contacting Microsoft technical support you can. Things you need to check is status of your Antivirus software make sure it is receiving and installing updates. Check your firewall status make sure changes did not occur. Check your Windows updater history making sure Microsoft Office 2007 updates were successfull. I do not know if it was just my Microsoft Office 2007 disk copy was the issue or if it was just not capabilities. Microsoft Technician never told me. After working a month with them. They gave me Microsoft Office 2010 download. Please click on Kudos if this resolves your issue. Thank you frrw.

  • Can You Run 2 ipods off the same computer?

    I have recently upgraded to a 60GB Colour Ipod, but still want to use my ipod mini for training with. Am I able to use both my mini and my colour ipod on the same computer with the same i-tunes?

    Are you trying to connect both at the same time? Just connect the mini without it's big brother connected.
    Otherwise, you might need an iPod software update. http://www.apple.com/ipod/download

  • How to execute SAPGUI script from the command line?

    I have created a script and would like to execute it from the command line. There must be some flag that goes with SAPGUI.EXE. Any help appreciated.
    Thanks,
    Jeff

    Hi Jeff,
    the best way to do this is to run the script using the Windows Script Host, for example like this:
    cscript myscript.vbs
    This will execute the script which in turn can access SAP GUI. You may however have to make sure the script attaches to the correct session.
    Best regards,
    Christian

  • Where is the Shell Script directory?

    I have been asked to run a script in the Shell Script directory.
    I found the directory /library/scripts ... when I ran the script in there I did not get the expected results, so I assume the directory is incorrect.
    Please help..

    AFAIK, that folder's for AppleScripts, not shell scripts. For shell scripting, see https://developer.apple.com/library/mac/#documentation/OpenSource/Conceptual/She llScripting/Introduction/Introduction.html

  • From Battery power to running off the mains.

    Hi guys
    Just wondering - when I'm running my iBook off the battery and then decide to run it off the mains again, do I need to shutdown and then turn on the mains and then restart? Or can I just simply have it running off of the battery and then turn on the mains switch when I want to goto mains power?

    You can just plug your iBook in whenever it needs to be charged. There's no need to restart/shutdown when switching from battery to power adapter.
    Hope this helps,
    -Ryan

  • Macbook Pro Shuts down when running off the battery...

    Im have the late Macbook Pro 15" and I have had it for a year now. When im running my macbook off the battery it shuts down... I have no clue why. It started doing this about 4 or 5 days ago. I have my battery info here.
    Battery Information:
    Model Information:
    Serial Number: Sony-ASMB012-3916-d74e
    Manufacturer: Sony
    Device name: ASMB012
    Pack Lot Code: 0000
    PCB Lot Code: 0000
    Firmware Version: 0110
    Hardware Revision: 0500
    Cell Revision: 0303
    Charge Information:
    Charge remaining (mAh): 2828
    Fully charged: Yes
    Charging: No
    Full charge capacity (mAh): 2914
    Health Information:
    Cycle count: 65
    Condition: Check Battery
    Battery Installed: Yes
    Amperage (mA): -544
    Voltage (mV): 12137
    System Power Settings:
    AC Power:
    System Sleep Timer (Minutes): 0
    Disk Sleep Timer (Minutes): 10
    Display Sleep Timer (Minutes): 20
    Automatic Restart On Power Loss: No
    Wake On AC Change: No
    Wake On Clamshell Open: Yes
    Wake On LAN: Yes
    Display Sleep Uses Dim: Yes
    Battery Power:
    System Sleep Timer (Minutes): 5
    Disk Sleep Timer (Minutes): 10
    Display Sleep Timer (Minutes): 1
    Wake On AC Change: No
    Wake On Clamshell Open: Yes
    Display Sleep Uses Dim: Yes
    Reduce Brightness: Yes
    Hardware Configuration:
    UPS Installed: No
    AC Charger Information:
    Connected: Yes
    Charging: No
    I noticed that the Full Charge Capacity is not that high compared to other macbooks. Could this be the reason why its shutting its self off? Also i copied this info while i was plugged into the AC adaptor. It also says that its fully charged but the percentage on my macbook reads 97%...
    I also installed 4GB ram in it 4 months ago and never had this problem. Could having the new ram in it be draining the battery?
    If someone could help me with this extremely annoying problem it would really be appreciated. Thank you for your time.

    I am having the same problem. I just recently noticed that my battery life was less than an hour. In the beginning, I was able to watch 3-4 complete movies while on a flight. Now, it shuts down if on batteries within 10 minutes while the Bar shows 59 minutes.
    Here is my System Profiler
    Battery Information:
    Model Information:
    Serial Number: Sony-ASMB012-3887-4d
    Manufacturer: Sony
    Device name: ASMB012
    Pack Lot Code: 0000
    PCB Lot Code: 0000
    Firmware Version: 0110
    Hardware Revision: 0500
    Cell Revision: 0303
    Charge Information:
    Charge remaining (mAh): 1809
    Fully charged: No
    Charging: Yes
    Full charge capacity (mAh): 2074
    Health Information:
    Cycle count: 57
    Condition: Check Battery
    Battery Installed: Yes
    Amperage (mA): 121
    Voltage (mV): 12275
    System Power Settings:
    AC Power:
    System Sleep Timer (Minutes): 0
    Disk Sleep Timer (Minutes): 10
    Display Sleep Timer (Minutes): 20
    Automatic Restart On Power Loss: No
    Wake On AC Change: No
    Wake On Clamshell Open: Yes
    Wake On LAN: Yes
    Display Sleep Uses Dim: Yes
    Battery Power:
    System Sleep Timer (Minutes): 5
    Disk Sleep Timer (Minutes): 10
    Display Sleep Timer (Minutes): 1
    Wake On AC Change: No
    Wake On Clamshell Open: Yes
    Display Sleep Uses Dim: Yes
    Reduce Brightness: Yes
    Hardware Configuration:
    UPS Installed: No
    AC Charger Information:
    Connected: Yes
    Charging: Yes
    As you can see, I have only 57 cycles on this battery. I cannot do anything on battery power only anymore. I spent all morning draining the battery to 0 (all lights on battery off) When the battery is charged and when on battery power, the computer will shut off. The battery charge indicator LEDs on the battery itself has 4 of 5 solid and 5th one blinking. The computer will not power on for about 5 minutes when on battery power only. I bought this MBP about 15 months ago. Any help would be appreciated

  • Executing script on the host browser.

    How to call the javascript function of the browser on which the Adobe Document/Form is rendered. For Example, on click of Close on the Adobe Form, I want to close the browser.
    Thanks
    Naren

    Hi Naren.
    There is a messageHandler property, which from the documentation "This object describes an API exposed to the object model of a container application that allows sending and receiving messages from an embedded PDF document. For example, when a PDF document is embedded in an HTML document using the <OBJECT> tag, the PDF object is scripted in the browser scripting context."
    http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/wwhelp/wwhimpl/js/html/wwhel p.htm?href=JS_API_AcroJSPreface.87.1.html&accessible=true
    I've sent messages from an html page to a PDF but it does say you can receive messages, however there was not much documentation on this and I never used it in the live project so can't really help.
    But might be a place to start looking?
    Bruce

Maybe you are looking for

  • 802.1X and CAT Express 500

    Hi guys, I want to know if the Cat Express 500 support dynamic vlan assigment through 802.1X.

  • Sub Contractor given contract to third vendor

    Hi all, i have scenario. suppose client given sub contact to vendor 'A'  then vendor A given subcontract to vendor 'B'.  Now vendor B returned material to the client. then How to deal this in MM. please explain with all accounts. Thank in advance.

  • Cannot access servlet in tomcat4

    I'm a newbie to server side java. Please guide me. Installed Apache2 and Tomcat4 in Win2K. The installation seems OK because the index pages of both apache and tomcat appear when accessed as localhost on browser. I wrote (in fact, copied from a tutor

  • Photoshop CC errors and won't open

    I downloaded Photoshop CC the other day, and it worked fine. Today when I try and open Photoshop I am getting a multitude of errors about 'FastCore Routines Module', 'MMXCore Routines module', 'Multiprocessor Support module', and then that it could n

  • What is portal in DMS

    hi, all a] what is portal? b] pertaining to dms how i could use portal to configure my DMS rgds ben