Package Manager On Solaris

Hello I'm new to Solaris and I would like to know if there is any package manager like debian's apt-get. and if any could you propose to me some good repositories?
I think that something I had found for opensolaris but not for solaris 10, but I can't rememeber right now.
Thank you very much.

check out blastwave.org and pkg-get

Similar Messages

  • Managing JAVA JDK and JRE with Package Management in Solaris 11.1

    I want to manage Java JDK & JRE in an Solaris environment using Package Management I'm currently running Solaris 11.1 in a VMWare host. My current latest Java release is JDK1.7.0_07 and JRE1.7.0_07. I want to upgrade to JDK1.7.0_17 & JRE1.7.0_17 using Package Management. I've tried on several occasions to upgrade to latest release of Java but I have not been successful. Each time I try using the Package Management GUI or use command line they appear to be successful but the new release does not show.
    What could I be doing wrong?
    Thanks

    I also learned that the READMEs for the following patches in My Oracle Support also describe the downgrave process:
    Patch 18362676: JAVA 6 DOWNGRADE INCORPORATION FOR ORACLE SOLARIS 11.1.15.4.0 AND 11.1.16.5.0
    Patch 18362686: JAVA 7 DOWNGRADE INCORPORATION FOR ORACLE SOLARIS 11.1.15.4.0 AND 11.1.16.5.0
    -- Alan

  • Solaris Package Management

    We have approx. 400 Solaris servers, about half are 2.6, the rest a mixture of 8 and 9. We have a number of packages we want to manage automatically, i.e. remove redundant packages, install new packages and upgrade packages.
    Are there any tools that help with package management over a "large" number of servers? I know we do not have a particularly big server base, so what do those places the do have to manage packages?

    Sorry, hit the entery key too soon.
    Dtrace,zone etc are all cool stuff. but I like to see the PMS got imporved.
    Sun's pkgadd is an ok PMS but it can be better. The biggest problem I see is the lack of package dependency install/remove and package depot support.
    HPUX's SD-UX allow us to install apache package and its depended packages like openldap,berkely db etc automatically. all happend with just one command.
    tj

  • Available APIs for process and package management

    Hello All and welcome to my Hello All:
    Welcome to my inaugural post. I am a complete noob to Solaris (although I have been using Linux for 5+ years) and am in the process of trying to get a handle on what local C/C++ APIs (if any) are available for management. Specifically, I am looking to find out about process and package management.
    For process management, basically I would like to know is there some kind of interface to the the prstat application (ie. Memory and CPU utilization). Does something like this exist?
    For package management, I am looking for the ability to add, remove, and query the package �database�. Correct me if I am wrong, but the Solaris package �database� seems similar to that of a Debian system (at least from the perspective that the informational files are stored as plain text in a well-defined directory [ie /var/sadm/pkg/]).
    I have installed Solaris 10 on an x86 machine with a full installation; however, of the installed development kits (listed below) nothing jumped out at me.
    -bash-3.00# ls -1d /var/sadm/pkg/*devel
    /var/sadm/pkg/SUNWaspell-devel
    /var/sadm/pkg/SUNWevolution-devel
    /var/sadm/pkg/SUNWevolution-libs-devel
    /var/sadm/pkg/SUNWgnome-a11y-base-devel
    /var/sadm/pkg/SUNWgnome-a11y-libs-devel
    /var/sadm/pkg/SUNWgnome-a11y-reader-devel
    /var/sadm/pkg/SUNWgnome-a11y-speech-devel
    /var/sadm/pkg/SUNWgnome-audio-devel
    /var/sadm/pkg/SUNWgnome-base-libs-devel
    /var/sadm/pkg/SUNWgnome-camera-devel
    /var/sadm/pkg/SUNWgnome-common-devel
    /var/sadm/pkg/SUNWgnome-component-devel
    /var/sadm/pkg/SUNWgnome-config-devel
    /var/sadm/pkg/SUNWgnome-desktop-prefs-devel
    /var/sadm/pkg/SUNWgnome-file-mgr-devel
    /var/sadm/pkg/SUNWgnome-hex-editor-devel
    /var/sadm/pkg/SUNWgnome-img-editor-devel
    /var/sadm/pkg/SUNWgnome-libs-devel
    /var/sadm/pkg/SUNWgnome-media-devel
    /var/sadm/pkg/SUNWgnome-panel-devel
    /var/sadm/pkg/SUNWgnome-pilot-devel
    /var/sadm/pkg/SUNWgnome-print-devel
    /var/sadm/pkg/SUNWgnome-project-devel
    /var/sadm/pkg/SUNWgnome-terminal-devel
    /var/sadm/pkg/SUNWgnome-text-editor-devel
    /var/sadm/pkg/SUNWgnome-vfs-devel
    /var/sadm/pkg/SUNWgnome-wm-devel
    /var/sadm/pkg/SUNWgnutls-devel
    /var/sadm/pkg/SUNWjpg-devel
    /var/sadm/pkg/SUNWlibexif-devel
    /var/sadm/pkg/SUNWlibgcrypt-devel
    /var/sadm/pkg/SUNWlibpopt-devel
    /var/sadm/pkg/SUNWmozilla-devel
    /var/sadm/pkg/SUNWmoznspr-devel
    /var/sadm/pkg/SUNWmoznss-devel
    /var/sadm/pkg/SUNWogg-vorbis-devel
    /var/sadm/pkg/SUNWopenjade-devel
    /var/sadm/pkg/SUNWopensp-devel
    /var/sadm/pkg/SUNWpcsclite-devel
    /var/sadm/pkg/SUNWpng-devel
    /var/sadm/pkg/SUNWpostgr-devel
    /var/sadm/pkg/SUNWPython-devel
    /var/sadm/pkg/SUNWTiff-devel
    I've placed orders for Solaris Internals and Solaris Performance & Tuning (that should arrive tomorrow), but I was hoping that someone could give me a gentle push (or perhaps a swift kick) in a general direction. :)
    Thanks.

    For process management, basically I would like to
    know is there some kind of interface to the the
    prstat application (ie. Memory and CPU utilization).
    Does something like this exist?Not prstat (although you could 'truss' it and see some of what it's doing to collect the information). kstat is available with a C interface and through perl/shell. It has several CPU fields. It's certainly useful for monitoring, but read-only. I'm not sure what you're looking for in terms of "management".
    Also 'dtrace' can provide tons of dynamic information, but that's not necessarily what you're looking for.
    For package management, I am looking for the ability
    to add, remove, and query the package �database�.
    Correct me if I am wrong, but the Solaris package
    �database� seems similar to that of a Debian system
    (at least from the perspective that the
    informational files are stored as plain text in a
    well-defined directory [ie /var/sadm/pkg/]).Yes, although it's based on the SysV packaging system. I don't believe there's any API for it outside of the 'pkg*' utilities.
    Darren

  • Package manager - question?

    Hello folks,
    I wish to know why Package manager in openSolaris is so
    slow application. I know that it is written in Python, but
    I still do not understand why somebody did not offer some
    patch for that application. I will help honestly in programming
    if you need coders.
    Uros

    Please send your question to [email protected] That is the best place for discussion OpenSolaris packaging tools such as packagemanager. This forum is better for Solaris installation issues (from Solaris 10 and SXCE, for example).
    -- Alan

  • Package management

    As far as I can see, 5.10 does not provide any new package management tools besides pkgadd/pkgrm.
    This is an area where Solaris could really be improved.
    blastwave.org/pkg-get is ok, but I what if I want to update bundled packages like SUNWapch*?
    I may, for example, want to use the bundled packages for apache instead of csw, which installs everything under /opt, and is not compatible with the zones model which needs configuration state in /etc and data in /var
    The only way to get hold of freshly updated SUNW packages (unless I am missing something) is to download .iso images via Software Express and extract them manually.
    How about something similar to apt-get for native SUNW packages? Or at least the ability to wget the latest packages.
    Please tell me I am an ignorant ape and there exists just such a solution.... ;-)

    True ... the package management system "amazes" me.
    I'm looking to install a few standard packages on a remote server but don't have a cd in drive ... where else online can i find those packages (like SUNWppror, SUNWpprou, and SUNWppro-plugin-sunos-base needed for smpatch)
    Thank you.

  • Package Manager GUI permissions

    I have a fresh install of Solaris 11, using LDAP to authenticate against a Windows 2008 R2 Active Directory server for login. This server is used for VNC desktop access for users, so I have all the desktop tools installed and working. I also have a second, bare-bones Solaris 11 server that is hosting the IPS repository. This is all working just peachy.
    However, I seem to have a problem with the Package Manager GUI and LDAP users. I have an LDAP account I use for development and a separate, local account for doing admin stuff. I can install software with the Package Manager GUI using the admin account, but I can't seem to do this with my LDAP account. When i try and launch the GUI using the links on the desktop, I get nothing. If I try and use the "packagemanager" command from a terminal, I get an error pop-up that says "Could not operate on /var/pkg/lock because of insufficient permissions. Please try the command again as a privileged user." My LDAP account does have the "Software Installation" profile applied, and I can install packages using "pfexec" from a terminal, but I would really like to use the GUI (and let some of the other power users have access to install stuff too).
    Oh and "pfexec packagemanager" does not work either (get a "Can't open display" error).
    Any ideas what I am doing wrong?

    Here is what I get when I run /'usr/lib/pm-launch /usr/bin/packagemanager'
    No protocol specified
    No protocol specified
    /usr/lib/python2.6/vendor-packages/gtk-2.0/gtk/__init__.py:57: GtkWarning: could not open display
    warnings.warn(str(e), _gtk.Warning)
    No protocol specified
    No protocol specified/
    Unable to initialize gtk
    could not open display
    No errors in .xsession-errors. Also, if I run just /usr/bin/packagemanager I get the GUI, but it gives me the permission error, so I can definitely bring up X apps.

  • Package Manager - cannot download apps...

    Hi all - Having successfully installed 11e and being very happy with the new version, I'm genuinely wondering whether I shall continue to use it. I simply cannot download any apps using Package Manager. I can start PM, access the repository and select the install packages. The download initiates however it simply goes no further, and after 5 mins tells me it has timed out.
    Clearly this must be a server side issue and its very, very annoying to have a basic Solaris 11e set up, and not having access to any of my packages like Bluefish, etc. Are any other users experiencing such problems and how can we flag this as a priority with ORACLE?
    Thanks all.
    UK

    hi i also at the first found this problem and tried the following it worked
    1- i pressed the install/update command from Packages menu -- gives me your system is up to date..
    2- i chosed the packages i want to install it worked fine..
    but be patient because the Packages Manager does not show any progress till the package completely downloaded..
    hope it will work with you.

  • Package Manager doesn't work

    I have Solaris 11 running under Virtual Box on OS X. When I try to use the Package Manager, I enter my administrator password...and absolutely nothing happens. Same thing with the Update Manager.
    Any idea why it doesn't work?

    but after installing one wire from the VI Package Manager I found nothing new thing in arduino (figure below) I checked : low level, sensors, utility, examples. and I searched on the internet the driver of one wire (DS18B20) to Arduino and i found nothing.
    Attachments:
    arduino (one wire).png ‏43 KB

  • Package Manager

    I can't use the Package Manager, because I always have this error :
    Preparing...
    Gathering package information
    Error:
    Please check the network connection.
    Is the repository accessible?
    http protocol error: code: 407 reason: Proxy Authentication Required
    URL: 'http://pkg.oracle.com/solaris/release/manifest/0/developer%[email protected]%2C5.11-0.151.0.1%3A20101105T053803Z'.
    I configure the Network proxy, and tryed to setup http_proxy variable, but it does not work.
    any idea ?

    Hi,
    Looks like your proxy requires authentication. You can set up that by clicking on the "Details" button on the "HTTP proxy" row. That should set the http_proxy variable for you.
    Cheers,
    Peter
    Edited by: user12869136 on Mar 23, 2011 9:14 PM

  • Package Manager Loop

    I backed up my previous Solaris 10 install and then installed snv_86 i86pc (from a CD). There are several things I am trying to get back running (print server is a big issue) and have been trying to use Package Manager to upgrade the system. It informed me that SUNWipkg and SUNWipkg-gui must be upgraded first but then gets in a continuous loop upgrading SUNWipkg and SUNWipkg-gui. The first time it downloaded the files and restarted the application, but after that nothing is done (it takes time but the details window shows no activity and it indicates that 0 files were done). It still indicates that it is going to restart Package Manager (It no longer restarts). I thought that I might be able to solve it from the command line, but smpatch does not seem to be installed. Is there a command line tool that might work so that I can upgrade my system? What should I try?
    Thanks,
    wor

    wroseland wrote:
    I backed up my previous Solaris 10 install and then installed snv_86 i86pc (from a CD). It informed me that SUNWipkg and SUNWipkg-gui must be upgraded first but then gets in a continuous loop upgrading SUNWipkg and SUNWipkg-gui. Are you on Solaris or are you using the OpenSolaris Live CD?
    Please cat /etc/release and post.
    alan

  • Visual Studio 2013 Nuget Package Manager error

    Hello everyone,
    I tried to add and use OpenCV library in my Visual Studio javascript  windows application project,   but I still get the same error.
    This is my Package manager console:
    PM> Install-Package OpenCV
    Installing 'OpenCV 2.4.8'.
    Successfully installed 'OpenCV 2.4.8'.
    Adding 'OpenCV 2.4.8' to BlankSharedApp1.Windows.
    Uninstalling 'OpenCV 2.4.8'.
    Successfully uninstalled 'OpenCV 2.4.8'.
    Install failed. Rolling back...
    Install-Package : Could not install package 'OpenCV 2.4.8'. You are trying to install this package into a project that targets 'Windows,Version=v8.1', but the 
    package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author.
    At line:1 char:1
    + Install-Package OpenCV
    + ~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [Install-Package], InvalidOperationException
        + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPackageCommand
    Thanks for answers.

    Hi Fačko,
    Normally, we won't get any errors if we create a new project. Since you get this error when using OpenCV library and it is a third-party product, I think you need to ask in
    OpenCV forum for better response.
    Thank you for your understanding!
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Veritas volume manager on Solaris 10(X86)

    is it possible to install veritas volume manager on solaris 10 (x86) ?

    You should check the supported operating system matrix for Storage Foundation to see what they support. But yes, Solaris x64 is supported. I don't think they support 32-bit x86.
    Darren

  • SMC not getting suggested patch info from Update Manager in Solaris 10

    Hi All,
    why SMC not getting suggested patch info from Update Manager in Solaris 10??
    Thank you in advance.

    Hi All,
    why SMC not getting suggested patch info from Update Manager in Solaris 10??
    Thank you in advance.

  • Printing from file manager in Solaris 10

    Is is possible to print from file manager in Solaris 10, I can print from the command line but not from file manager, when I try there is no output lpstat shows nothing and no error messages. Latest patches are applied as of 14/04/08.
    Edited by: its_mallen on Apr 15, 2008 5:37 AM

    I've found I can print as root but a user can't, wondering if there are any special privilages, I've found an allow and deny command but they can print from the command line so not sure this will fix the problem

Maybe you are looking for

  • Accessing print services in the client machine(browser)

    Query: We had migrated a forms-3 form to forms-6i. The forms-3 form used a userexit to call a related Pro*C functionality that helped finally to print the report file generated during the process into the client machine's printer. How do we take care

  • How can I make a website I created in dreamweaver adjust according to the zoom?

    Ok so I made a website and its fine but at the top I put an image of my logo and the name of my company (combined into 1 picture). And in this picture, whenever I change the zoom in my web browser or look at it from a computer with a different resolu

  • Are there other widgets for iWeb (iLife 09)?

    Specifically, I could really use a weather lone, like the dashboard offering. I could also use a rotating photo gallery widget for starters. I'd also like a calendar one that offers something like the "Upcoming events" calendar on this page: http://w

  • PO Release Value

    Dear All, I would like to have information from the report wherein I could get the details of Purchase Order Release Value userid wise. I.e. for a particular user id how many PO's have been released waith value. If possible update the table name also

  • Exif Data in pages

    Hello all, Does anyone know if it's possible to automatically include EXIF data (like, lens type, camera model...) in Master pages or in pages? If yes, please tell me how. I need to print a book with technical shooting data and possibly, I want them