How to Removing Shared Libraries

recently an unscrupulous tech downloaded my library. In so doing, he downloaded to my iTunes quite a few shared libraries for (I assume)others he does work for. How do I get rid of these shared libraries?????? some require passwords and I can not find a "delete" in my file bar area. Thanks BUDDf

You cannot "get rid of them" because they belong to another user. Just disable sharing. Go to your iTunes preferences > Sharing > Uncheck everything. Yay!

Similar Messages

  • How can i remove shared libraries and itunes

         how can i remove shared libraries and itunes account from my iphone to my little brothers itouch if we both share the same itunes?
    he keeps on getting all the apps that i download as well as pictures i was wondering if anyone knows how to fix this problem

    You could either remove the iCloud account altogether and have him create his own or go into settings->store-> and switch automatically download Apps off.  And go into icloud and turn off photostream.  Depends on what you prefer.

  • How to remove inherited libraries in oc4j 10.1.2

    I'm facing a problem in oc4j 10.1.2.0.2. I want to remove
    an imported shared library from a j2ee application deployed in oc4j.
    In oc4j 10.1.3 adding the following code in orion-application.xml will remove the specified library:
    <imported-shared-libraries>
    <remove-inherited name="global.libraries"/>
    <import-shared-library name="oracle.xml.security"/>
    </imported-shared-libraries>
    In oc4j 10.1.2 this functionality is not possible.
    Is there any other way to remove inherited libraries in oc4j 10.1.2 so that
    my application is forced to use the default libs deployed with the war?

    Problem solved: I added the line
    <web-app-class-loader search-local-classes-first="true"/>
    in the global-web-application.xml of the specified oc4j instance.

  • How to remove SHARED connected as VNC ?

    Hello to all,
    We are sharing folder with my wife laptop. The laptop appears in the SHARED sections with her username , but the long usernamefollowed by (username_local) appears just below .
    Selecting it, the grey bar in the Finder window says "Connected as : VNC" .
    Anyone knowing how I can I remove this ?
    Alain

    Hi everybody,
    What I mean is : How to remove the second shared laptop .
    The Grey bar is generated by the system as a reminder .
    I made several attempts in System Preferences / Sharing, and / Network, on both my iMac and her laptop, but in vain ?
    Any idea ?
    Merry Christmas and Happy Nwe Year to all !
    Alain

  • Linux JVM: How to load shared libraries with mutual/circular dependencies

    Hi,
    I am using the API
    System.loadLibrary(String name)
    to dynamically link shared libaries to Linux JVM.
    The shared libraries has complex circular symbol dependencies among them.
    I am not able to load shared libraries due to java.lang.UnsatisfiedLinkError.
    Any ideas on how a number of shared libraries with interdependent realtionships
    could be successfully linked in to the Linux JVM?
    Thanks,
    Soumen.
    Background
    ===========
    Successful execution of native code within Java virtual machine in a
    host platform, has two necessary prerequisites:
    Prerequisite 1: The native code is written to the JNI specification
    Prerequisite 2: The native code is dynamically linked with Java virtual
    machine.
    The second step is achieved via simple Java interface, System.loadLibrary:
    http://java.sun.com/j2se/1.4.2/docs/api/java/lang/System.html#loadLibrary(java.lang.String)
    However, implementation of this interface is highly platform dependent
    in regards to exact nature of dynamic linking process.
    Tests
    =====
    I made three shared libraries libfeatureA.so, libfeatureB.so and libfeatureC.so.
    Feature A and Feature B are mutually dependent on each other (i.e cicular
    dependencies between libfeatureA.so, libfeatureB.so) whereas libfeatureC.so
    has no external dependencies.
    Case 1
    I could link libfeatureC.so with java.
    Case 2
    Java failed to resolve circular dependency between libfeatureA.so, libfeatureB.so
    resulting in linking failure. There may be repackaging workarounds which I have
    not yet explored.
    Java source code
    ================
    class TestLoadLibrary
    static
    System.loadLibrary("featureB");
    System.loadLibrary("featureA");
    System.loadLibrary("featureB");
    public static void main(String[] args)
    System.out.println("In TestLoadLibrary.main()");
    Exception in thread "main" java.lang.UnsatisfiedLinkError: /homes/soumen/work/event/featureB/libfeatureB.so.1.0: /homes/soumen/work/ev B.so.1.0: undefined symbol: featureA_func2
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1737)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1662)
    at java.lang.Runtime.loadLibrary0(Runtime.java:817)
    at java.lang.System.loadLibrary(System.java:986)
    at TestLoadLibrary.<clinit>(TestLoadLibrary.java:5)

    The use of "dlopen() application programming" to achieve dynamic link closure works if there are
    no circular dependencies. For example, I have the following dependency:
    libfeatureD.so ==> libfeatureC.so
    Even if I call Java APIs in correct dependency order, i.e.,
    System.loadLibrary("featureC");
    System.loadLibrary("featureD");
    there would be java.lang.UnsatisfiedLinkError for call System.loadLibrary("featureD").
    Now, I have a JNI method implementation, which makes native API call in same dependency order:
    dlopen("libfeatureC.so", RTLD_LAZY|RTLD_GLOBAL);
    dlopen("libfeatureD.so", RTLD_LAZY|RTLD_GLOBAL);
    and now System.loadLibrary calls succeed. Note that I had to set environment
    variable LD_LIBRARY_PATH so that dlopen call would find libraries to load.
    In other words, from a JNI programming point of view, "linking chasm" has been crossed.
    I am looking at circular dependency issue, i.e.,
    libfeatureA.so <==> libfeatureB.so
    There may be library repackaging workaround.
    If anybody knows any workaround, please post.
    -Soumen Sarkar
    JNI code
    ========
    #include <jni.h>
    #include "TestLoadLibrary.h"
    #include <stdio.h>
    #include <string.h>
    #include <dlfcn.h>
    JNIEXPORT void JNICALL Java_TestLoadLibrary_libLoadNative
    (JNIEnv * jenv, jclass class, jobjectArray libNames)
    printf("native: In TestLoadLibrary.libLoadNative()\n");
    char linuxLibName[1024];
    jsize idx = 0;
    jsize nLibs = (*jenv)->GetArrayLength(jenv, libNames);
    for(idx = 0; idx < nLibs; ++idx)
    /* obtain the current object from the object array */
    jobject myObject = (*jenv)->GetObjectArrayElement(jenv, libNames, idx);
    /* Convert the object just obtained into a String */
    const char libName = (jenv)->GetStringUTFChars(jenv,myObject,0);
    strcpy(linuxLibName, "lib");
    strcat(linuxLibName, libName);
    strcat(linuxLibName, ".so");
    printf("\nnative: Trying to open lib with name %s\n", linuxLibName);
    void* handle = dlopen(linuxLibName, RTLD_LAZY|RTLD_GLOBAL);
    if(handle == 0)
    fputs ("\nnative: Could not load lib\n", stderr);
    fputs (dlerror(), stderr);
    else
    printf("\nnative: Loaded lib %s\n", linuxLibName);
    /* Free up memory to prevent memory leaks */
    (*jenv)->ReleaseStringUTFChars(jenv, myObject, libName);
    return;

  • How to sync shared libraries with touch/iPad

    How can I see shared libraries (Home Sharing on local network) on my Touch/iPad to sync videos etc.?

    iOS devices don't sync directly with each other.  Use iCloud with both.

  • How to remove "shared folder"  in Finder?

    Hi, my home directory now appears as "shared Folder" in the top of Finder.
    I selected "get info" for the home directory.
    The shared folder box is not selected.
    in sharing and permissions there is:
    alberto(me) privilege: read and write
    staff: read and write
    everyone: no access.
    I selected apply to enclosed items.
    what is generating that "shared folder info?"
    How do I remove the "sharing" of my home directory?
    (In other volumes, and in the top of my home volume the permissions are: system red and write, admin read and write, everyone read only, and there is no "shared folder" info in that volumes).

    avalokitesvara wrote:
    Hi, my home directory now appears as "shared Folder" in the top of Finder.
    I selected "get info" for the home directory.
    The shared folder box is not selected.
    in sharing and permissions there is:
    alberto(me) privilege: read and write
    staff: read and write
    everyone: no access.
    I selected apply to enclosed items.
    That last item is usually problematical. Applying to enclosed items can cause problems with permissions.
    what is generating that "shared folder info?"
    How do I remove the "sharing" of my home directory?
    If you have a backup, revert to the time when it was working properly.
    (In other volumes, and in the top of my home volume the permissions are: system red and write, admin read and write, everyone read only, and there is no "shared folder" info in that volumes).
    There have also been many bug fixes since 10.5.2 which you indicate you are running. You might consider updating to the latest version of Leopard.
    Message was edited by: nerowolfe

  • Can't find "Look for shared libraries" in the Sharing pane of iTunes preferences. How can I find it?

    I am trying to set up Home Sharing between my computer and my wife's. Sharing keeps disappearing from the side bar although Home Sharing is turned on for both computers. Using the Help tab it says to check the "Look for shared libraries" in the preferences/shared box. The problem is that "Look for shared libraries is not there to select. Any ideas how I can sort this out?

    I'm having a similar issue even after the "Shared Libraries" box is checked in General preferences on iTunes...
    On early verisons of iTunes i had no problem with sharing or remote access via iPad.  I really need to figure out how to get this working.

  • How to merge portlet.xml file from shared libraries into an EAR application

    Hi all
    I need some help
    I have some applications as shared-libs referenced by weblogic.xml into a EAR application.
    To see all portlets from that shared-libs, I'm creating a portlet.xml into the EAR application with all portlets from all shared libs. But is terrible for me. I would like to have it merged automatically without having to create it in the EAR application. Is that possible?
    Regards
    Bruno

    In the documentation, I saw this text:
    Overriding Shared J2EE Library Settings in the web.xml File
    At runtime, the web.xml files in all the shared J2EE libraries are merged, along with the web.xml
    file in your portal web project. The content of your WEB-INF/web.xml file overrides anything in
    the shared J2EE libraries, so if you want to change particular settings, you can do it there.
    There are many other files for which file contents are merged; these can be overridden in the same
    way. These files include not only WEB-INF/web.xml but also WEB-INF/weblogic.xml and any
    files mentioned in weblogic-extension.xml from either the users' application or the shared
    libraries.
    It seems to be possible to customize the weblogic-extension.xml. But I haven't seen how to do that
    What do you think about it?
    Regards
    Bruno

  • How to remove white margin for pdf file shared by iCloud Keynote?

    iCould beta Keynote is very good. Thanks very much for Apple's effort.
    However, there is a litter problem that the pdf file shared by iClound Keynote has a white margin. How to remove this white margin? Or any bug there?

    No. I checked every page. Top side no white margin. In left and right side, the white margin is about 1mm, and in bottom side the white margin is about 2mm.

  • How do i transmit shared libraries from one computer to apple tv?

    how do i transmit shared libraries from one computer to my apple TV?

    Welcome to the Apple Community.
    The same way you share a non-shared library. If it isn't working check that you have the content checked in iTunes Preferences > general > Show.

  • In Finder something called 'vuuno' has suddenly appeared under Shared. I didn't knowingly connect and want to remove. Worried I've been hacked or something. What is this and how to remove permanently?

    In Finder something called 'vuuno' has suddenly appeared under Shared. I didn't knowingly connect and want to remove. Worried I've been hacked or something. What is this and how to remove permanently?

    If you are using an unsecured or shared wireless network, then it could be just another user's computer name. If your sharing settings are correct, you have no worry. However, It would appear that at least some of the other user's settings are less than optimal inasmuch as his/hers is openly being displayed.
    The next time you check into a hotel and use their wireless network, you are likely to see a number of other user's computers. Some just the name, as they share no files. While others are wide open, and their file sharing is on.

  • How to remove a PC from shared section in the finder

    Community,
    I found a pc name in the "shared" ("CONDIVISI" section for italian speakers like me!!) section of the left menu in the Finder. It is something I don't recognize. I never connected to this computer. Any clue how it has been able to get there? How to remove it?
    I appreciate your answer
    Antonio

    Most likely, at some time, "betesda-vaio" was connected to the same network as your Mac.  (Perhaps a friend connected their Vaio laptop to your wireless network during a visit?)
    The Shared (CONDIVISI) section shows devices that are available on the network; it does not mean that your Mac is connected to the device (in this case "betesda-vaio").
    If "betesda-vaio" is no longer on the same network as your Mac, if you log out (or restart), it should disappear from the sidebar.

  • How do i disconnect other peoples shared libraries from showing up in my itunes

    how do i disconnect other peoples shared libraries from showing up in my itunes

    Edit > Preferences > General tab. Untick Shared Libraries.
    Control the visibility/accessibility of your library from the Sharing tab.
    tt2

  • How to remove the option "shared with"

    Hello,
    for a certain list, I need to remove the option "shared with' from the "....", not at the ribbon. Is this possible and how?
    Thank you
    Christos

    I would also suggest manipulating CSS, and you see some of the ideas in this forum. However I have not tried any of those methods -http://sharepoint.stackexchange.com/questions/66420/how-to-remove-the-shared-with-or-email-to-everyone-buttons
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

Maybe you are looking for

  • Mid 2010 MacBook Pro 15" battery Problem

    Hi I have a Mid 2010 MacBook Pro 15" 2,66GHz Intel Core i7, with 8GB of 1067MHz DDR3 Ram running OSX 10.9.4. When my MacBook reaches about 30% charge, it shuts down. I have had the battery replaced about 3 days ago, and thats when I started noticing

  • Advantages and disadvantages of using only sequence files or working with sequence files in projects

    Hello, can anyone please tell me the advantage of using projects instead of just a sequence file? Do I need projects only if I have more than one sequence file? Thanks a lot!

  • SimpleDateFormat.parse() causes Unparsable date exception

    I am using SimpleDateFormat to both format and parse date strings. The format is working properly, but parse results in the following exception: java.text.ParseException: Unparseable date: "2007-08-31T12:05:05.651-0700" at java.text.DateFormat.parse(

  • Power Saver 7 on Tecra 9000

    Hi everybody, I realized that newer versions of Toshibas Power Saver are available for newer Tecra Notebooks. I am using Power Saver 4 on my Tecra 9000. I just tried to install the latest version of PowerSaver on my Tecra 9000. The installation seeme

  • Cannot change shortcut for activating app expose

    Hello, I can't seem to reassign the shortcut key for "Application windows" in exposé. I can change the key in the Exposé preference panel, which has a limited set of keys. But I cannot change it to an arbitrary shortcut (e.g. opt-s) in the keyboard p