RHEL vim-enhanced equivalent in Solaris 10

Does such a package exist in Solaris 10?
Thanks!

With that and my .vimrc from my RHEL box, its working as I want.
Thanks!

Similar Messages

  • Is there an enhanced equivalent of crs_stat -t command in 11.2 ?

    DB version: 11.2.0.1
    Os : Solaris
    In 10gR2, we used
    crs_stat -tto check the status of cluster. Is there an enhanced equivalent of this command in 11.2 ?

    Thank you Rajesh. Do you set anything in putty (like increasing the row width) to make it more readable.
    The output look a bit messed up
    $ crsctl stat res -t -init
    NAME           TARGET  STATE        SERVER                   STATE_DETAILS
    Cluster Resources
    ora.asm
          1        ONLINE  ONLINE       fmtest1                  Started
    ora.cluster_interconnect.haip
          1        ONLINE  ONLINE       fmtest1
    ora.crf
          1        ONLINE  ONLINE       fmtest1
    ora.crsd
          1        ONLINE  ONLINE       fmtest1

  • PostThreadMessage, PeekMessage equivalent  for solaris

    Hi all,
    Iam new to porting and have been trying to find out solaris specific Cpp(or C) APIs for some of the win32 APIs for Thread handling. All these APIs are in the windows.h header.
    PostThreadMessage
    PeekMessage
    GetMessage
    DispatchMessage.
    and if I am not too much ambitious can you people point me to some documentation which talks about the windows.h file and solaris implementation for the APIs in that file?
    Thanks in advance,
    Chinnamma

    If anyone does reply to you, could you point me in the right direction as I am doing something similar.
    Cheers, Dan.

  • Equivalent of alloc_oages in solaris 10

    Hi All,
    Currently iam porting my linux 10 gig network driver into solaris .
    I have a question regarding Memory allocation ,
    1. For performance tuning we directly allocate pages in linux
    ( using alloc_pages) and just unmap them ( using pci_umap)
    Is there any equivalent in solaris .
    2. Is there any sample driver which implemented this paging
    mechanism .
    Ramya

    Thank you alan
    even after setting the max file descriptor to 8192, the output from pfiles show as 4096
    Current rlimit: 4096 file descriptors
    would you know if there is something wrong with the command which i am using - projmod -s -K 'process.max-file-descriptor=(basic,8192,deny)' PROJECTNAME( I am issuing this command as root)
    thank you
    Jonu Joy

  • Accounting Software - Solar Accounts Equivalent?

    Currently I am using Solar Accounts via Bootcamp. I have to say I hate using Windows 7 on my Macbook Pro - just so clunky and the trackpad interfacing is awful.
    I'm looking at Moneyworks - and have dabbled with Nano Accounts - though that has issues as yet not resolved for Snow Leopard.
    I would LOVE a Mac equivalent of Solar Accounts - and I'm sure i would not be alone.
    Is there anything out there yet that is similar to Solar Accounts for Mac that I may have missed?

    Hi there - I was looking for a computer based system as I'm not always online. Plus the cost of those is quite high and cumulative!

  • Oracle Solaris Studio Express 6/10 - Now Available!

    We are pleased to announce the availability of Oracle Solaris Studio Express 6/10, which can be freely downloaded here:
    *[http://developers.sun.com/sunstudio/downloads/express/]*
    Sun Studio Express has be renamed Oracle Solaris Studio Express. Supporting both Solaris 10 (SPARC, x86) and Linux distributions (OEL 5, RHEL 5, SuSE 11), Oracle Solaris Studio Express 6/10 will be made available on OpenSolaris in the near future. Downloads included both the package installer (SVR4, RPM) and non-package tarballs.
    Highlights include the following:
    => C/C++/Fortran compiler optimizations for the latest UltraSPARC and SPARC64-based architectures such as UltraSPARC T2 and SPARC64 VII
    => C/C++/Fortran compiler optimizations for the latest x86 architectures including Intel® Xeon® 7500 processor series (Nehalem-EX) and 5600 processor series (Westmere-EP)
    => Enhanced debugging and code coverage tooling
    => Improved application profiling with the Performance Analyzer
    => Updated IDE based on NetBeans 6.8
    Please provide feedback via the Customer Feedback program, where you can file bugs/rfes, make your voice heard via a short survey, and discuss the product in the Studio forums:
    *[http://developers.sun.com/sunstudio/customerfeedback/]*
    Thanks!
    /kso

    Hi,
    we are currently using SunStudio 12. I have noticed that early access product, SunStudio Express, Feb2008. It seems that new features coming from NetBeans 6.0 have contributed to SunStudio IDE. I prefer to use SunStudio Express IDE. But i have also noticed that sun CC compiler version is also different. Actually it is no surprise, since SunStudio is a complete product composed of compilers, tools and IDE.Now, i am quite doubtful whether we should use SunStudioExpress. That's why i want to learn when official new release for SunStudio will be announced.
    Though i have searched internet, i couldn't notice any news about the next official release of Sun Studio( Sun Studio 13 ). When will this early release( SunStudio Express, Feb 2008 ) be released as SunStudio13? What is the release roadmap of SunStudio?

  • Sysdef command in Solaris 10.

    Hi All,
    sysdef command in Solaris 10 ( 5.10, s10_58 ) no more reports the message queue related Kernel
    parameters i.e msgsys:msginfo_msgmax ( MSGMAX ) etc. For more info refer the link below :
    http://docs.sun.com/db/doc/816-7137/6md5paukq?a=view
    Since sysdef command no more reports the above parameters, what is the other way we can get the
    same in Solaris 10? We have written our script in such a way that it greps for MSGMAX from the outcome
    of sysdef and gets its value and perform certain operations. Quick reply would be greatly appreciated.
    Thanks

    We have written our script in such
    a way that it greps for MSGMAX from the outcome
    of sysdef and gets its value and perform certain
    operations. Quick reply would be greatly appreciated.msgmax (maximum per-message size) has been removed completely -- there is no equivalent on Solaris 10. Instead, the
    maximum total bytes on the queue, process.max-msg-qbytes (previously msginfo_msgmnb) is the only restriction on what can be placed in a SysV message queue.
    To retrieve the current value of this in a script, you can use:prctl -P -n process.max-msg-qbytes -t privileged $$ | tail -1 | read x x value x x xNote that this is no longer a system-wide tunable -- the administrator can control this on a per-project basis. (see projects(1))
    - jonathan

  • Use of __typeof__ in Solaris Studio 12.4

    Solaris Studio 12.3 had a __typeof__ operator similar to decltype in C++11.  This is available in a portable wrapper using the Boost macro BOOST_TYPEOF_TPL.  It looks like the Solaris Studio team contributed the modification to Boost which added this in ticket 5745.
    Now Solaris Studio 12.4 has a C++11 mode which supports decltype.  However, is __typeof__ still supposed to work in Solaris Studio 12.4's C++03 mode?  It doesn't seem to work as well as it used to.
    The following program deduces the return type of operator() using __typeof__:
    #include <boost/typeof/typeof.hpp>
    #include <boost/type_traits/remove_reference.hpp>
    #include <iostream>
    #include <typeinfo>
    // Helper to deduce the result type from a member function pointer.
    template<typename T>
    struct member_function_result_type
    template<typename T, typename R, typename A1>
    struct member_function_result_type<R (T::*)(A1) const>
        typedef typename boost::remove_reference<R>::type type;
    template<typename T>
    struct function_result_type
        typedef BOOST_TYPEOF_TPL(&T::operator()) F;
        typedef typename member_function_result_type<F>::type type;
    template<typename R, typename A>
    struct function_result_type<R (*)(A)>
        typedef typename boost::remove_reference<R>::type type;
    struct my_functor
        float operator()(float numerator) const
            return numerator / 2.0f;
    int main(int, char **)
        typedef typename function_result_type<my_functor>::type my_type;
        my_functor f;
        my_type ret = f(5.0f);
        if (typeid(my_type) == typeid(float))
            std::cout << "As expected " << ret << std::endl;
        else
            std::cout << "Oh dear " << ret << std::endl;
        return 0;
    If you build this with Solaris Studio 12.3 as follows:
    CC -m64 -I/usr/local/include/boost-1_54 main.cc
    then it compiles and running a.out shows the return type of float has been correctly deduced.
    However, with Solaris Studio 12.4 the same command:
    CC -m64 -I/usr/local/include/boost-1_54 main.cc
    results in:
    "main.cc", line 23: Error: Unexpected type name "F" encountered.
    "main.cc", line 42: Warning: "typename" must be used within a template.
    1 Error(s) and 1 Warning(s) detected.
    Now, obviously Solaris Studio 12.4 has a C++11 mode and it is possible to get this program to work by changing BOOST_TYPEOF_TPL to decltype and building with:
    CC -std=c++11 -m64 -I/usr/local/include/boost-1_54 main.cc
    But Solaris Studio 12.4's C++11 mode has other problems, so is there any way to somehow get a working __typeof__ or equivalent in Solaris Studio 12.4's C++03 mode?
    (In case it makes any difference this is on Solaris 10 x86.)

    I couldn't see that any of the items listed in the "Enforcement of C++ rules" section of the documentation would affect this program.
    Here's a cut down version of the test program that doesn't use Boost:
    #include <iostream>
    #include <typeinfo>
    // Helper to deduce the result type from a member function pointer.
    template<typename T>
    struct member_function_result_type
    template<typename T, typename R, typename A1>
    struct member_function_result_type<R (T::*)(A1) const>
        typedef R type;
    template<typename T>
    struct function_result_type
        typedef __typeof__(&T::operator()) F;
        typedef typename member_function_result_type<F>::type type;
    template<typename R, typename A>
    struct function_result_type<R (*)(A)>
        typedef R type;
    struct my_functor
        float operator()(float numerator) const
            return numerator / 2.0f;
    int main(int, char **)
        typedef function_result_type<my_functor>::type my_type;
        my_functor f;
        my_type ret = f(5.0f);
        if (typeid(my_type) == typeid(float))
            std::cout << "As expected " << ret << std::endl;
        return 0;
    Interestingly this doesn't compile with either Solaris Studio 12.3 or Solaris Studio 12.4, but each gives different errors:
    Solaris Studio 12.3:
    CC -m64 main.cc
    >> Assertion:  unexpected type_builder::visit_unspec (../lnk/v2mangler.cc, line 1636)
        while processing main.cc at line 39.
    Solaris Studio 12.4:
    CC -m64 main.cc
    "main.cc", line 20: Error: Unexpected type name "F" encountered.
    1 Error(s) detected.
    So Solaris Studio 12.4 is basically failing in the same way as the original test program that used the Boost wrappers.  Solaris Studio 12.3 is failing with an assertion error that doesn't occur when the Boost wrappers are used.
    It turns out that __typeof__ was only used in one place in our codebase (wrapped by Boost), so I've just removed it and implemented that code in a different way.  So this isn't blocking upgrade of Solaris Studio, and we don't even have __typeof__ in our codebase any more, but I just thought you might be interested to have this program as a test case for future development.
    It works fine with clang++ in C++03 mode on Mac OS X so I doubt the problem is caused by the source code not conforming to standard:
    clang++ main.cc
    ./a.out
    As expected 2.5
    This case may be particularly tricky for a compiler to handle due to __typeof__ being applied to a pointer to a const member function.

  • New wiki: Solaris-Linux command comparison

    Ever have trouble remembering command syntax in Solaris or Linux? Like the precise syntax for how to list the 10 largest files, create an ISO image, or manage printers? Can you remember the syntax in Linux but need the equivalent in Solaris? Or vice versa?
    A new wiki -- "OTN Solaris-Linux Command Comparo" -- lists common sysadmin tasks for both Oracle Solaris 10 & Oracle Enterprise Linux 5. You can access the wiki at:
    [https://wikis.sun.com/display/OTNTaskFinder/CommandComparo+Home|https://wikis.sun.com/display/OTNTaskFinder/CommandComparo+Home]
    Note that you need to register for Oracle Wiki site access first at [http://wikis.sun.com/display/Help/Registering|http://wikis.sun.com/display/Help/Registering] . Please give us some feedback on the wiki and add the commands you most often forget...

    Yes, we wanted to go a little more in-depth and list actual syntax, but the idea is the same. You'll note that "A Sysadmin's Unixersal Translator (ROSETTA STONE)" is listed as a Reference in the .left-section panel of the wiki.

  • Why choose Solaris 10 over Linux?

    Hey everyone -
    I was wondering if any of you would mind telling me what advantages Solaris 10 holds over Linux?
    I'm not well informed on their pros/cons and would love to hear the perspectives of some gurus.
    Thanks, I appreciate the insight!

    I am actually in the process of trying to answer this question for an upcoming project I am involved with. I have worked heavily with both Linux (SLES10, RHEL specifically) and also with Solaris 7,8,9, and 10 over the past several years. Honestly, I can argue on either side but I am trying to find compelling answers to bring to the management table. This may be like the search for WMD's but I think I have some answers and I continue to find myself leaning towards Solaris as I have in the past. One of the biggest reasons I chose Linux in the past was the ability to run on X86. That no longer is an issue. The many advantages of Solaris are for sure Dtrace which I have found extremely useful. Also one thing i'm finding is that support has become cheaper through sun than it is through Novell. One other thing is hardware. I have several Sun hosts that have been around longer than I have and continue to run while it seems I'm getting 4-5 years or less out of my other servers(Dell). Linux has gotten 10 times better since 2.4 and even better with 2.6 but with Dtrace, Containers and ZFS, I'm partial to Solaris. Also, ACL's are good in Solaris. I've never used them in Linux so I cannot comment.
    If I'm off base on anything let me know and please add anything else.

  • Linux equivalent of pkginfo -i

    I need to determine what Linux packages are associated to a particular software application so I can uninstall them. Is there a Linux equivalent to Solaris' pkginfo -i command? I've already tried different variations of the Linux rpm command but, no good. In Solaris, normally, I'd just run pkginfo -i | grep -i keyword to find what I need. Done. However, in Linux, in order to get detailed info on a package, you first have to know the name of the package. If you don't know the name, you're pretty much screwed into playing a guessing game using rpm -qa | grep -i part_of_pkg_name which could yield zero results. In my case, it has.
    Any help from you Solaris-to-Linux gurus would be greatly appreciated.
    Thank you, kindly.

    Hi
    which Linux distributim do you use?
    if it is RedHat (or its clones) the command will be "rpm -q --all --queryformat "%-30{NAME}\t%{VERSION}\t%-60{SUMMARY}\t%{GROUP}\n"
    it's more easer, isnt it? :)
    in general way - to read a man of "rpm" command.
    Pers

  • A locate command for solaris

    Hi all,
    does anyone know any equivalent to the locate command for Solaris?
    Thanks all
    Here I'm helping others to find it faster than me :-)
    locate for solaris
    locate equivalent for solaris
    how to find files in solaris
    how to find directories in solaris
    find filenames quickly

    This would be a good question for one of the forums on opensolaris.org, you might
    get better answers there. If the file you are looking for was installed via packages,
    then you can use the package database to look it up.
    I think you have to be root (which is lame). Here is an example for
    the file "libxil.so.1"
    # pkgchk -l -P libxil.so.1
    Pathname: /opt/SUNWits/Graphics-sw/xil/lib/libxil.so
    Type: symbolic link
    Source of link: /usr/openwin/lib/libxil.so.1
    Referenced by the following packages:
    SUNWxilrl
    Current status: installed
    Pathname: /opt/SUNWits/Graphics-sw/xil/lib/libxil.so.1
    Type: symbolic link
    Source of link: /usr/openwin/lib/libxil.so.1
    Referenced by the following packages:
    SUNWxilrl
    Current status: installed
    Pathname: /usr/lib/libxil.so
    Type: symbolic link
    Source of link: ./libxil.so.1
    Referenced by the following packages:
    SUNWxwrtl
    Current status: installed
    Pathname: /usr/lib/libxil.so.1
    Type: symbolic link
    Source of link: ../openwin/lib/libxil.so.1
    Referenced by the following packages:
    SUNWxwrtl
    Current status: installed
    Pathname: /usr/openwin/lib/libxil.so
    Type: symbolic link
    Source of link: libxil.so.1
    Referenced by the following packages:
    SUNWxilrl
    Current status: installed
    Pathname: /usr/openwin/lib/libxil.so.1
    Type: regular file
    Expected mode: 0755
    Expected owner: root
    Expected group: bin
    Expected file size (bytes): 952740
    Expected sum(1) of contents: 59048
    Expected last modification: Jan 22 19:00:53 2005
    Referenced by the following packages:
    SUNWxilrl
    Current status: installed

  • Equivalent of Linux's sysctl

    Is there an equivalent command of linux's /sbin/sysctl on solaris 10? This command is used in setting and retrieving the TCP buffers on Linux.
    Also what is the equivalent on solaris 10 for the tcp buffers tcp_rmem and tcp_wmem of linux.
    Thanks for your time and response
    Chakra

    To modify kernel parameters at runtime you may use "mdb" and "ndd"
    commands. To modify kernel parameters statically use /etc/system file
    (man -s4 system).
    To modify tcp parameters use "ndd". Type
    # ndd /dev/tcp \?
    to obtain parameters list. See "Solaris Tunable Parameters Reference
    Manual" http://docs.sun.com/app/docs/coll/47.16 for details.
    Vitaly Filatov,
    Moscow Russia

  • Color in BASH?

    How do you turn on color in BASH on Solaris 10? On the Mac you set CLICOLOR=1.
    How is this done in Solaris?
    Thanks.

    May or may not be worth it. You will need to get the GNU commands to get color on file lists and the like. I tried for a little while but eventually just kept it stock. You can get color in VI by using gnu vim enhanced and editing the .vimrc file and using syntax files.

  • Problem with SAP NW 7.4 Installation

    Dear All,
    We are Installing EP 7.4 as a distributed installation we are installing Application server on RHEl and database instance on Solaris 11.
    Installation hangs at the step "store system identity"
    In the sapinst_dev.log file we are getting the below error.
    WARNING    2014-07-12 21:36:56.001
               CJSlibModule::writeWarning_impl()
    Execution of the command "/tmp/sapinst_instdir/NW740SR1/ORA/INSTALL/DISTRIBUTED/JAVA/APP1/sapjvm/sapjvm_6/bin/java -classpath /tmp/sapinst_instdir/NW740SR1/ORA/INSTALL/DISTRIBUTED/JAVA/APP1/install/lib/sap.com~tc~bl~offline_launcher~impl.jar -showversion -Xmx256m com.sap.engine.offline.OfflineToolStart com.sap.sl.inst.systemidentity.SystemIdentityCmd /tmp/sapinst_instdir/NW740SR1/ORA/INSTALL/DISTRIBUTED/JAVA/APP1/install/lib/iaik_jce.jar:/tmp/sapinst_instdir/NW740SR1/ORA/INSTALL/DISTRIBUTED/JAVA/APP1/install/lib/iaik_jsse.jar:/tmp/sapinst_instdir/NW740SR1/ORA/INSTALL/DISTRIBUTED/JAVA/APP1/install/lib/iaik_smime.jar:/tmp/sapinst_instdir/NW740SR1/ORA/INSTALL/DISTRIBUTED/JAVA/APP1/install/lib/iaik_ssl.jar:/tmp/sapinst_instdir/NW740SR1/ORA/INSTALL/DISTRIBUTED/JAVA/APP1/install/lib/w3c_http.jar:/tmp/sapinst_instdir/NW740SR1/ORA/INSTALL/DISTRIBUTED/JAVA/APP1/install/lib/tools:/oracle/client/11x_64/instantclient/ojdbc6.jar -ppms_data_xml ppms_data.xml -selected_UTs activeUTs.xml -messageFile SystemIdentity.message -sid EPD -dsn jdbc/pool/EPD -ssProps /usr/sap/EPD/SYS/global/security/data/SecStore.properties -ssKey /usr/sap/EPD/SYS/global/security/data/SecStore.key" finished with return code 2. Output:
    java version "1.6.0_65"
    Java(TM) SE Runtime Environment (build 6.1.059)
    SAP Java Server VM (build 6.1.059 24.45-b08, Nov 19 2013 19:30:07 - 61_REL - optU - linux amd64 - 6 - bas2:206830 (mixed mode))
       INFO: Loading tool launcher...
       INFO: [OS: Linux] [VM vendor: SAP AG] [VM version: 1.6.0_65] [VM type: SAP Java Server VM]
       INFO: Main class to start: "com.sap.sl.inst.systemidentity.SystemIdentityCmd"
       INFO: Loading 11 JAR files: [/tmp/sapinst_instdir/NW740SR1/ORA/INSTALL/DISTRIBUTED/JAVA/APP1/install/lib/iaik_jce.jar, /tmp/sapinst_instdir/NW740SR1/ORA/INSTALL/DISTRIBUTED/JAVA/APP1/install/lib/iaik_jsse.jar, /tmp/sapinst_instdir/NW740SR1/ORA/INSTALL/DISTRIBUTED/JAVA/APP1/install/lib/iaik_smime.jar, /tmp/sapinst_instdir/NW740SR1/ORA/INSTALL/DISTRIBUTED/JAVA/APP1/install/lib/iaik_ssl.jar, /tmp/sapinst_instdir/NW740SR1/ORA/INSTALL/DISTRIBUTED/JAVA/APP1/install/lib/w3c_http.jar, /tmp/sapinst_instdir/NW740SR1/ORA/INSTALL/DISTRIBUTED/JAVA/APP1/install/lib/tools/iaik_jsse.jar, /tmp/sapinst_instdir/NW740SR1/ORA/INSTALL/DISTRIBUTED/JAVA/APP1/install/lib/tools/iaik_ssl.jar, /tmp/sapinst_instdir/NW740SR1/ORA/INSTALL/DISTRIBUTED/JAVA/APP1/install/lib/tools/iaik_smime.jar, /tmp/sapinst_instdir/NW740SR1/ORA/INSTALL/DISTRIBUTED/JAVA/APP1/install/lib/tools/iaik_jce.jar, /tmp/sapinst_instdir/NW740SR1/ORA/INSTALL/DISTRIBUTED/JAVA/APP1/install/lib/tools/w3c_http.jar, /oracle/client/11x_64/instantclient/ojdbc6.jar]
      FATAL: Main class "com.sap.sl.inst.systemidentity.SystemIdentityCmd" cannot be started:
      FATAL: java.lang.ClassNotFoundException: com.sap.sl.inst.systemidentity.SystemIdentityCmd
      at com.sap.engine.offline.FileClassLoader.findClass(FileClassLoader.java:916)
      at com.sap.engine.offline.FileClassLoader.loadClass(FileClassLoader.java:807)
      at com.sap.engine.offline.FileClassLoader.loadClass(FileClassLoader.java:755)
      at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:139)
      FATAL: com.sap.engine.offline.OfflineToolStart will abort now with exitcode 2
    ERROR      2014-07-12 21:36:58.23 [sixxcstepexecute.cpp:896]
    FCO-00011  The step storeSystemIdentity with step key |NW_Java_CI|ind|ind|ind|ind|0|0|SAP_Software_Features_Enablement|ind|ind|ind|ind|usage_enable|0|storeSystemIdentity was executed with status ERROR ( Last error reported by the step: <html> <head> </head> <body> Storing information for installed product versions failed. Detailed error message: null </body></html>).
    Please help us in resolving the error.
    Regards,
    Praveen.

    Hi Praveen,
    Could you please check SAP note 1592575.
    Regards,
    Deepak Kori

Maybe you are looking for

  • Request custom BIOS for MS-1762 - 937-176262-072

    Hello, i attempted to perform a BIOS flash with the MSIHQ tool that indicated that it was a successful flash but it still showed the current/previous E1762IG6.70O rather than the E1762IMS.10U (advised to use from Devil Tech for the GT70 0NE i have a

  • Document number is not opening in My Requested Products application.

    Dear All, We are using SAP ECC 6.0 and EHP 6. we are using standard SSP.In NWBC, the  application My requested Products (/SRMERP/WDA_I_SC_FS_ESS ) -> in shopping cart number there is one tab Follow on documents that has a Document number link. If we

  • I only have 2 apps on my ipad bt it says I have used up 10 GB

    I only have 2 apps on m ipad and everything in setting adds up to 3GB but on setting its says I have used up 10GB how do I get my storage back

  • Why do I have to re-buy songs that i have as Ringtones?

    I don't understand why we have to re-buy songs to make them into RIngtones. This seems really lame and feels like i am being ripped-off. If i already own a song (purchased from iTunes), shouldn't i be able to use that as a ringtone if i like. What's

  • Regarding Migration From Apps 11.5.5 to 11.5.10

    Earlier we were using Oracle database 8i and Apps 11.5.5 and now migrated to Oracle 9i and Apps 11.5.10 and after migration I am facing one problem in my Form which created using Forms 6i, while deleting the data through Apps it giving the error FRM-