Having problems adding packages

I downloaded the Solaris (Sparc) companion CD's Dependency Package. It contains 14 or so files that I think should be patches. I run "pkgadd -d . " from my directory where they are and it says their are no packages to add.
http://www.sun.com/software/solaris/freeware/pkgs_download.html#bundle
Is where I got the package from.
I have re-downloaded it like 5 times. I am running Solaris 9 on a Ultra 5. I have not had any problems adding packages before. The packages that I am trying to add are in thier own slice and I have a lot of room on my disks.

I think I am having an ID10T error.
I didn't realize the paths that I was giving it were incorrect.

Similar Messages

  • Having Problems Adding a Toolbar

    I am having great difficulty in adding a custom toolbar in safe mode. I haven't done extensive research but...
    It's a recent reinstall (it might have only updated as I didn't uninstall first) of Firefox 27.0.
    The support article I was reading suggested that I should be able to gain a custom toolbar by creating one in safe mode as all of my security/privacy add-ons such as Abines MaskMe are disabled there and then restarting. When I manually restarted, all the add-ons were disabled and the custom toolbar which I created was not there. The article suggests that this is not due to my add-ons. Yes, I do have a custom configuration but I wasn't starting it using a private browsing window as I know this interferes with saving the settings. I would like to not take it to a reset but I will do this if you advise. Please help.

    May be your preferences not saved.
    try with new profile, customize the toolbar in normal mode.
    Create a new profile as a test to check if your current profile is causing the problems.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    Profile Backup and Restore
    *http://kb.mozillazine.org/Profile_backup
    *https://support.mozilla.org/en-US/kb/back-and-restore-information-firefox-profiles
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • I am having problems adding files to my external hard drive. Can anyone help me?

    I can't add files to my external hard drive from my computer. I keep getting a message saying that the hard drive can't be modified. I've added files to it before, I'm not sure why it's not working now. I looked at the hard drive information and it says that it is set to read only. Does anyone know how to change that or what I should do? Thanks.

    Odd, it seems.  In the Finder "Get Info" display, you are seeing something like this?
    Click the "Details" triangle and then the little padlock, and you should be able to change the permissions.  Click the lock when you are done and close the Info window.

  • I am having problem adding internalFrame to a frame

    Hi,
    I am not able to see the internalframe in a frame but my main frame is showing up properly. I have added the internalframe to the desktop.
    can somebody help me out.
    code for the internalframe.
    public void createInternalFrame() { 
    // Use a suitable internal frame constructor.
    JInternalFrame iFrame = new JInternalFrame(
    "Calendar",
    true, // can be resized
    true, // can be closed
    true, // can be maximized
    false); // can be iconified
    // iFrame.setLocation(70, 80);
    iFrame.setSize(300, 200);
    iFrame.setVisible(true);
    desktop.add(iFrame);
    container.add(desktop); //container is the contentpane.
    iFrame.moveToFront();
    // desktop.setOpaque(true);
    iFrame.show();
    // iFrame.validate();
    System.out.println("button 2");
    try { 
    iFrame.setSelected(true);
    } catch (java.beans.PropertyVetoException ex) { 
    System.out.println(
    "Exception while selecting an internal frame");
    }

    The Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/internalframe.html]How to Use Internal Frames has working examples.
    If you need further help then you need to create a [url http://homepage1.nifty.com/algafield/sscce.html]Short, Self Contained, Compilable and Executable, Example Program that demonstrates the incorrect behaviour, because I can't guess exactly what you are doing based on the information provided.
    And don't forget to use the [url http://forum.java.sun.com/help.jspa?sec=formatting]Code Formatting Tags so the code retains its original formatting.

  • I am having problems adding plug ins from Elements 11 to 12.

    When I go to preferences in 12, I check the box additional plugins.  I go out and find the folder and add it and click on OK, I close down Elements and then come back and my plug in is there.  Now I want to add another plug in and when I follow same scheme it eliminates the previous plug in that I added.  It is only allowing me one plug in.  What am I doing wrong?   thanks.

    You want to put all your plug-ins under the same parent folder, then point PSE to that parent folder.

  • I'm having problems adding friends! How do I do so?

    I wanted to add a gmail, and hotmail friend the other day,
    and I followed the instructions by pressing the + button, and adding a buddy.
    Then a pop up came telling me to add names etc, and then to add the account, giving me the option of adding either an AIM or .Mac account!
    How do I add gmail or hotmail accounts? There is no option there where it says I can do so!
    Help!
    PS.
    I have a MacBook, which I got about a month ago.

    You need to do the bits in these three Jabber Links http://www.ralphjohns.co.uk/page5.html#_jabber
    10:23 PM Monday; March 3, 2008

  • Having Problem Adding to drag and drop to move furniture over a floor plan

    I have the code which follows. I need to create floor plans where web visitors can drag and drop furniture onto the floor plan.  I have  three items that work but when I convert any additional items to a symbol and select movie clip and then add more lines to the code, none will work.. How can the code determine that  my movie clip I named "couch" is going to movie clip 4.  Thank you if you can help, Frankie Foster
    Below is my code:
    var numObjects:uint = 3  // assign the total number of movieclips that will be dragged
    for(var i:uint=1; i<=numObjects; i++){
         this["movieClip_"+String(i)].addEventListener(MouseEvent.MOUSE_DOWN, clickToDrag);
         this["movieClip_"+String(i)].addEventListener(MouseEvent.MOUSE_UP, releaseToDrop);
    var selectedMC:MovieClip;
    movieClip_1.addEventListener(MouseEvent.MOUSE_DOWN, clickToDrag);
    movieClip_2.addEventListener(MouseEvent.MOUSE_DOWN, clickToDrag);
    movieClip_3.addEventListener(MouseEvent.MOUSE_DOWN, clickToDrag);
    movieClip_1.addEventListener(MouseEvent.MOUSE_UP, releaseToDrop);
    movieClip_2.addEventListener(MouseEvent.MOUSE_UP, releaseToDrop);
    movieClip_3.addEventListener(MouseEvent.MOUSE_UP, releaseToDrop);
    function clickToDrag(event:MouseEvent):void
         selectedMC = MovieClip(event.currentTarget);
         selectedMC.startDrag(); 
    function releaseToDrop(event:MouseEvent):void
         event.currentTarget.stopDrag();
    stage.addEventListener(KeyboardEvent.KEY_DOWN, nextQuestion);
    function nextQuestion(event:KeyboardEvent):void {
          //trace(event.keyCode);
          if(event.keyCode == Keyboard.RIGHT)
               selectedMC.rotation += 5;
          if(event.keyCode == Keyboard.LEFT)
               selectedMC.rotation -= 5;

    Your appear to have redundant coding assigning your listeners.  What code are you trying to add/modify to make the couch function like the others?
    this...
    for(var i:uint=1; i<=numObjects; i++){
         this["movieClip_"+String(i)].addEventListener(MouseEvent.MOUSE_DOWN, clickToDrag);
         this["movieClip_"+String(i)].addEventListener(MouseEvent.MOUSE_UP, releaseToDrop);
    currently does what this also does....
    movieClip_1.addEventListener(MouseEvent.MOUSE_DOWN, clickToDrag);
    movieClip_2.addEventListener(MouseEvent.MOUSE_DOWN, clickToDrag);
    movieClip_3.addEventListener(MouseEvent.MOUSE_DOWN, clickToDrag);
    movieClip_1.addEventListener(MouseEvent.MOUSE_UP, releaseToDrop);
    movieClip_2.addEventListener(MouseEvent.MOUSE_UP, releaseToDrop);
    movieClip_3.addEventListener(MouseEvent.MOUSE_UP, releaseToDrop);

  • Having problem adding citations using endnote with pages 4

    Help needed
    When I go to insert and find a quote in my endnote library and hit insert it appears as if it has done something but no quote appears in my pages document however something is in there because it moves the curser along and when I press delete it acts as if it is deleting something.......wierd.  Ive downloaded and installed the plug in and the same thing seems to work fine on my Imac.

    If all your professors are using MS Office, then I recommend you should too.  It is not realistic to think Pages will always generate word format docs the same way MS Office would have done so.

  • Having problem adding page #s consecutively in header!!!

    I am doing my paper, and I have to do a header on every page which I am to do, but I have to have page #s starting at 1 numerically going in order, but it keeps saying 1 on every page, what do I do? I am doing this in pages.

    Often, it's useful to read Pages User Guide.
    Doing that would have taught you that when you type a number in a header, it's a fixed item and that if you want to get a living page number you must use the dedicated tool (described by fruhulda).
    Yvan KOENIG (VALLAURIS, France) lundi 26 septembre 2011 11:55:04
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Having problems adding contacts to my ipod classic, itunes help says to click on the "info" button.  But there doesn't seem to be an "info" button in my itunes under my ipod

    I am wanting to add contacts to my ipod classic 160gb, the intunes help says to click on the "info" button on my device, but there doesn't seem to be an "info" button there.  I have tried restoring my ipod as well, twice now.  But doesn't work.  Any ideas?

    'Info' is along the top of the iTunes window when you have the iPod attached and selected.
    When info is selected you will find the option you want.
    Best.

  • Having problem adding typewriter sound to typewriter code

    For the typewriter effect, I'm trying to add a typewriter "click" sound every time this function (within a class) writes a letter:
        private function setLetter(n:Number)
                var correctLetter:String = text.charAt(n);
                var part1:String = text.substr(0, n);
                temp_text = part1 + correctLetter + cursor;
                textfield.htmlText = temp_text;
    When I add the lines below, the audio still isn't working (PS. I renamed the Class ID on the .wav file "sound55")
                var my_sound:sound55 = new sound55();
                 var my_channel:SoundChannel = new SoundChannel();
                 my_channel = my_sound.play();
    It now reads
        private function setLetter(n:Number)
                var my_sound:sound55 = new sound55();
                var my_channel:SoundChannel = new SoundChannel();
                my_channel = my_sound.play();
               var correctLetter:String = text.charAt(n);
                var part1:String = text.substr(0, n);
                temp_text = part1 + correctLetter + cursor;
                textfield.htmlText = temp_text;
    Can anybody tell me what is wrong with the three lines of audio "code"?

    there's nothing wrong with your code assuming that's in a document class and sound55 is the class name of your sound.

  • Downloaded Firefox 4 to a new Laptop never used 4 before am having problems adding my custon buttons to frequently used web pages

    I downloaded Firefox onto a laptop that did not have Firefox already installed. Downloading went well, but I do not know how to use 4, I had the older version on my desktop and I can not figure out how to add the applications I want to use on my bar. I had customized web pages and do not know how to re-make the app on 4. before you went into customize and you could make your own app with a picture and it brought me to my frequently used web page. HELP

    Type '''about:config''' in the URL bar and hit Enter.
    ''If you see the warning, you can confirm that you want to access that page.''
    Filter = '''browser.tabs.insertRelatedAfterCurrent'''
    Double-click that preference to change the value to '''''false'''''

  • Adding another Airport Extreme – I'm having problems-

    …please help.
    I am a total novice when it comes to networking so please explain clearly. I had one AE connected to some speakers in the kitchen so I could stream music there. I got another AE today to connect to my router to hopefully provide a quicker and more reliable wireless connection.
    I'm having problems adding the 2 AE to the same network. Tried lots of different ways but nothings worked. I can't my mac to find them both at the same time? When I try to add the other one it asks me to switch networks. When I switch networks i can't see the previous one so I can't add it.
    is there any step by step guide to getting 2 AE up and running i.e. adding another AE to an existing network?
    Cheers in advance.

    kroc_kroc, Welcome to the discussion area!
    Even though the title of your thread says "Extreme" I thing you really mean "Express".
    If you are trying to connect the 2nd AirPort Express (AX) wirelessly...
    (1) Make sure that the 2nd AX is in an area with a good wireless signal from your current wireless network.
    (2) Configure the 2nd AX to join a wireless network and select your current wireless network.

  • Problem adding recordset to a Template page

    I've been having problems adding sql recordset to a Template page, when i set the record the editable region of the template is no longer editable and it begins to be editable everything else, one more thing that happens with the record is that is partially inserted into the body of the php page, i have tried to reinstall wampserver, dreamweaver, delete the folder with the user settings and the registry of dreamweaver but nothing seems to work, the only thing that i haven't tried is delete the folder with the main settings, but i don't think that it is the problem
    sorry for the bad english.
    Any help would be greatly appreciated.

    Your library is damaged and my not be able to be totally recovered, i.e. recover albums, slideshows, etc. along with the photos.
    If the original files for your photos are inside the library package (even if iPhoto can't display them) the following should create a new library with all of your photos. 
    Start over from scratch with new library
    Start over with a new library and import the Originals (iPhoto 09 and earlier) or the Masters (iPhoto 11) folder from your original library as follows:
    1.  Move the existing library folder to the desktop.
    2. Open the library package like this.
    Click to view full size
    3. Launch iPhoto and, when asked, select the option to create a new library.
    4. Drag the Originals (iPhoto 09 and earlier) or the Masters (iPhoto 11) folder from the iPhoto Library on the desktop into the open iPhoto window.
    Click to view full size
    This will create a new library with the same Events as the original library but will not keep the metadata, albums, books slideshows and other projects.  Check it out carefully to see if all of your photos are represented in it.
    Your current library will still be available for further fix attempts.

  • Problem with packages, part duex

    Solaris 11 x86 under VBox
    Continuing from problem adding packages
    I got the mechanics of adding packages working and successfully installed the packages for x11 support.  Next I need to add some packages to install Oracle database.  Packages are listed in the database Installation Guide.
    First, check to see if the required packages are already installed:
    root@vbsolsrv02:~# pkginfo -i SUNWarc SUNWbtool SUNWhea SUNWlibC SUNWlibms SUNWsprot   SUNWtoo SUNWi1of SUNWi1cs SUNWi15cs SUNWxwfnt
    system      SUNWarc   Lint Libraries (usr)
    system      SUNWbtool CCS tools bundled with SunOS
    system      SUNWhea   SunOS Header Files
    system      SUNWlibC  Sun Workshop Compilers Bundled libC
    system      SUNWlibms Math & Microtasking Libraries (Usr)
    system      SUNWsprot Solaris Bundled tools
    system      SUNWtoo   Programming Tools
    ERROR: information for "SUNWi1of" was not found
    ERROR: information for "SUNWi1cs" was not found
    ERROR: information for "SUNWi15cs" was not found
    ERROR: information for "SUNWxwfnt" was not found
    Not being familiar with the interpretation of the error msgs (or much else with Solaris) I figured it wouldn't hurt to just try to install them.
    root@vbsolsrv02:~# pkg install SUNWi1of
    pkg install: The following pattern(s) did not match any allowable packages.  Try
    using a different matching pattern, or refreshing publisher information:
            SUNWi1of
    root@vbsolsrv02:~# pkg install SUNWi1cs
    No updates necessary for this image.
    root@vbsolsrv02:~# pkg install SUNWi15cs
    No updates necessary for this image.
    root@vbsolsrv02:~# pkg install SUNWxwfnt
    pkg install: The following pattern(s) did not match any allowable packages.  Try
    using a different matching pattern, or refreshing publisher information:
            SUNWxwfnt
    root@vbsolsrv02:~#
    at this point, repeating the pkginfo command produced exactly the same results as before.
    So, what am I to learn from this and how should I proceed from here?

    PascalKreyer-Oracle wrote:
    These packages are requirement for Solaris 10. As these packages are not available for Solaris 11, please check again in the database installation guide to determine which packages are really necessary.
    Ah, the devil is always in the fine print.  I am planning on installing Oracle 11.2, so from the Database Quick Installation Guide
    11g Release 2 (11.2) for Oracle Solaris on x86-64,  the packages were listed under this statement:
    The following packages (or later versions) are required for Oracle Database 11g Release 2 (11.2) on Oracle Solaris 10:
    I overlooked the proviso "on Oracle Solaris 10".  There was no separate listing for Solaris 11.
    Also, going back and double checking the entire section on software requirements, I see that only Oracle 11.2.0.3 or later is supported on Solaris 11.  So if I want to install Oracle 11.2.0.1, I'll need to drop back to solaris 10.
    Thanks for the focus.

Maybe you are looking for

  • I can no longer find my app store app on my iPad 2

    Is there a way I can get the app store back on my ipad? Thanks Paul

  • All of a sudden - Looking for PPPoE Host

    Setup: I am connecting to the internet via Airport Express, through an ISP provided modem. I am using PPPoE as the protocol for connecting to my ISP. Problem: The setup was working perfectly for me, when all of a sudden 5 days back, I got the ticker

  • Locked songs after restoring music folder

    I am running 10.3.9 with iTunes 7.0 on an iBook G4. The hard disk just died and needed to be replaced. Fortunately I had a back up drive, so I have been able to restore nearly all the data, but with one big problem. My daughter's iTunes music folder

  • Configuring Oracle for Pet store

    Hi when I'm executing the command: java utils.Schema jdbc:weblogic:oracle:coc weblogic.jdbc.oci.Driver -u scott -p tiger -verbose oracle.ddl It gives me the foll error: utils.Schema will use these parameters: url: jdbc:weblogic:oracle:coc driver: web

  • After Effects CS6 and Mavericks

    I am running the full version of CS6 Master and it's still not working on the update...  Would be cool to have the functionality of AE back as I've been on Mavericks Developer since day one which rendered it useless (randomly.)  I'm by no means compl