Using Spotlight and file tags on older systems

I use a Macbook Pro on a daily basis which runs Yosemite, and I also archive a lot of media files on a small Mac Mini server which runs Snow Leopard. Due to hardware limitations, I can not install any newer operating system on the server. On my laptop, I make heavy use of tagging which is tremendously helpful for keeping stuff organized. When I move files over to the server, I'm pleasantly surprised to see that the tags don't disappear from the file metadata. However, if I do a Spotlight search on the server and search by tag, the results come up empty. The most likely explanation for this is because Finder (on my laptop) is using the Mac Mini's Spotlight deamon to conduct a query and the Mac Mini has no idea what tags are. My question is this: Is there a way that I can get Spotlight on my laptop to index the drive on the Mac Mini server without depending on the server's Spotlight deamon?

Doing a disk repair should be OK, but don't do a permissions repair with the 10.4 disk on a 10.3 system. It might be fine, but it's possible that it might mis-set some permissions.

Similar Messages

  • What are the best storage systems to archive inactive (but still used) apps and files?

    What are the best storage systems to archive inactive (but still used) apps and files of all types? I already have a Time Casule which I back up on and I'm needing to create more space in my flash drive in my Mac Pro, so I need another external storage system I can use to archive all that I don't currently need. I may still wish to edit and use the files, and I am not very techy and am a broke student... so anything grossly expensive is a no-no for me (between $50 and $200 is idyllic). If you could simply post links of different good/useful hard-drives that I can use, I'd be thankful.
    Thank you
    p.s. I'm australian, so anything within this country would be great. Or I can deal with somewhere that has cheap shipping.   

    It's been moved and seconded. Any discussion? Yes:
    Buy two external drives. Use one for Time Machine. Be sure this drive is at least twice the capacity of your computer's hard drive. Use the second drive as a bootable clone of your computer's hard drive. Should something happen you can immediately get the computer up and running from the clone until your restore from the Time Machine backup. This is what is called redundancy. Should either backup drive fail, there's another to take its place. Backup redundancy is very important. You can never have too many backups.

  • MacBook Pro i5 with retina will not recognize WD Passport even though I successfully used it to transfer programs and files from my older MacBook ten days ago. It receives power from the USB, but when using Time Machine I receive the message that there is

    MacBook Pro i5 with retina will not recognize WD Passport even though I successfully used it to transfer programs and files from my older MacBook ten days ago. It receives power from the USB, but when using Time Machine I receive the message that there is not an external device connected.

    If the modem is also a router, either use the modem in bridge and run pppoe client on the TC.. that is assuming ADSL or similar eg vdsl. If it is cable service.. and the modem is a router, then bridge the TC.. go to internet page and select connect by ethernet and below that set connection sharing to bridge.
    Please tell us more about the modem if the above gives you issues.

  • How can i transfer my rarely used applications and files so i can make room on my computer harddrive?

    how can i transfer my rarely used applications and files so i can make room on my computer harddrive?

    Well the applications you should leave alone as they install files elsewhere that are needed like preferences etc that won't be on the external drive if you attempt to run it from there.
    Some programs are completely self contained and will run just fine from a external drive, but applicaiton's are usually small.
    Now your user files! That could use some thinning for sure! Especially stuff you don't use that often and Video files which take up a lot of space.
    You can buy a external USB drive at any office / computer supply store and just plug it in and backup files via drag and drop.
    What happens when you plug in a drive is TimeMachine will pop up and ask to make it a TimeMachine drive, this just backups up everything on your computer to restore from in case your OS X or boot drive fails. It's a image of your drive and so whatever is on the boot drive is on the TM drive. So that doesn't server your purpose which is you want to free some space off your main boot drive.
    However you should get another drive and allow TM to do it's thing to that drive, also to make a hold option bootable clone of your boot drive (using yet another external drive) using Carbon Copy Cloner or SuperDuper so in case your boot drive fails you can quickly and easily boot off the clone and have a working machine right away.
    One of the posters here has a excellent instructions what does what, both should be used to backup your data.
    http://web.me.com/pondini/Time_Machine/Clones.html

  • Composing mail from email web application using jsp and custom tags

    here is the send.jsp file
    <%@ page language="java" %>
    <%@ page errorPage="errorpage.jsp" %>
    <%@ taglib uri="http://java.sun.com/products/javamail/demo/webapp"
    prefix="javamail" %>
    <html>
    <head>
         <title>JavaMail send</title>
    </head>
    <body bgcolor="white">
    hi
    <javamail:sendmail
    recipients="<%= request.getParameter(\"to\") %>"
    sender="<%= request.getParameter(\"from\") %>"
    subject="<%= request.getParameter(\"subject\") %>">
    <%= request.getParameter("text") %>
    </javamail:sendmail>
    <h1>Message sent successfully</h1>
    </body>
    </html>
    Here is the java file i.e used to refer to this custom tag
    package taglib;
    import java.util.*;
    import java.net.*;
    import javax.mail.*;
    import javax.mail.Authenticator;
    import javax.mail.internet.*;
    import javax.servlet.jsp.*;
    import javax.servlet.jsp.tagext.*;
    * Custom tag for sending messages.
    public class SendTag extends BodyTagSupport {
    private String body;
    private String cc;
    private String host;
    private String recipients;
    private String sender;
    private String subject;
    * host attribute setter method.
    public void setHost(String host) {
    this.host = host;
    System.out.println("Host is : " +host);
    * recipient attribute setter method.
    public void setRecipients(String recipients) {
    this.recipients = recipients;
    System.out.println("recipients is " +recipients );
    * sender attribute setter method.
    public void setSender(String sender) {
    this.sender = sender;
    System.out.println("Sender is : " +sender);
    * cc attribute setter method.
    public void setCc(String cc) {
    this.cc = cc;
    * subject attribute setter method.
    public void setSubject(String subject) {
    this.subject = subject;
    System.out.println("subject is : " +subject);
    * Method for processing the end of the tag.
    public int doEndTag() throws JspException {
         System.out.println(" ** In do end tag");
    Properties props = System.getProperties();
    try {
    if (host != null)
    props.put("mail.smtp.host", host);
    else if (props.getProperty("mail.smtp.host") == null)
    props.put("mail.smtp.host", InetAddress.getLocalHost().
    getHostName());
    } catch (Exception ex) {
    throw new JspException(ex.getMessage());
    Session session = Session.getDefaultInstance(props,null);
         Message msg = new MimeMessage(session);
         InternetAddress[] toAddrs = null, ccAddrs = null;
    try {
         if (recipients != null) {
         toAddrs = InternetAddress.parse(recipients, false);
         msg.setRecipients(Message.RecipientType.TO, toAddrs);
         } else
         throw new JspException("No recipient address specified");
    if (sender != null)
    msg.setFrom(new InternetAddress(sender));
    else
    throw new JspException("No sender address specified");
         if (cc != null) {
    ccAddrs = InternetAddress.parse(cc, false);
         msg.setRecipients(Message.RecipientType.CC, ccAddrs);
         if (subject != null)
         msg.setSubject(subject);
         if ((body = getBodyContent().getString()) != null)
         msg.setText(body);
    else
    msg.setText("");
    Transport.send(msg);
    } catch (Exception ex) {
    throw new JspException(ex.getMessage());
    return(EVAL_PAGE);
    all the entries in taglib.tld and web.xml are correct.
    It is one of the article given at this url:
    http://java.sun.com/developer/technicalArticles/javaserverpages/emailapps/

    First, you should not take copyrighted code and post it without a copyright.
    The code you posted is copyright Sun Microsystems.
    Second, why did you post it? Did you have a question?

  • HT4059 I have IPad Air. I use Drop Box. Downloaded manuscript with Ipad air does not down load completely, no images. I  used Ipages, and Files Pro. Mac IOS does it and windows XP.

    when I download a manuscript from my DropBox to My  Ipad air, it does not open Images and some contents are not aligned, yet if  I  download from MyMac or XP it works. On  Ipad air I have used the Dropbox, Pages and files Pro. What is wrong?

    There is an Apple document which specifies that key 1 should be used for WEP configuration and recommends using WPA or WPA2 for wireless security: iPad: Troubleshooting Wi-Fi networks and connections. It's too bad that you didn't find this when you had problems.
    The iPad will work with WPA-TKIP or WPA2-AES. AES provides much stronger security. There is much misinformation on the Internet on this subject.
    WEP is insecure, obsolete and has been deprecated by the IEEE since 2004. There is no chance that Apple or anyone else will waste resources on enhancing WEP implementations. For more information on the tattered history and vulnerabilities of WEP read this: WEP - Wired Equivalent Privacy
    I'm glad to hear that you got your system working. Your post was well-written and might help someone else.

  • Runtime.exec() - using cp and files with spaces on unix

    I'm using the Runtime.exec method to copy files in a unix environment. This works fine until there is a file where the name has spaces in it. I've read the article on the pitfalls of using runtime and how it breaks a string on white spaces and this is what is happening. I've also found another topic that was having the same problem, but they were using /usr/bin/dos2unix. I've tried putting quotes around the filename, but it still breaks on the first space. Any suggestions on how to get around this or another way of doing this would be greatly appreciated.
    An example of the os command string is:
    /usr/bin/cp /tmp/file with space.doc /docs
    Thanks!

    Hi!
    Well I dont have any Sun machine right here to try this but in windows It works great.
    Have you tried something like this ?
    import java.io.*;
    public class OSCopy {
        public static void main(String[] args) {
            try {
                String space = " ";
                String copycmd = "E:\\cp.cmd";
                String source = "E:\\File with space.txt";
                String destination = "E:\\tmp";
                String cmd = copycmd + space + "\"" + source + "\"" + space + destination;
                System.out.println("cmd: " + cmd);
                Runtime runtime = Runtime.getRuntime();
                Process copy = runtime.exec( cmd );
                BufferedReader reader = new BufferedReader( new InputStreamReader( copy.getInputStream()) );
                String line = null;
                while( (line = reader.readLine()) != null ) {
                    System.out.println( line );
            catch (Exception e) {
                e.printStackTrace();
    cp.cmd is a simple dos copy command
    copy %1 %2
    */good luck!

  • Spotlight and file path

    I'm missing two useful Spotlight features. Until Mountain Lion, rolling over an item in the spotlight window would make its file path appear, and a command+click on it would reveal the file in the Finder. Is there a way to have these features back?
    By the way, please forgive me if the topic has been discussed earlier (I couldn't find anything helpful, though).

    Hovering over the item will Quicklook it.
    For a File, holding down Command key will show the path at the bottom of the Quicklook window.
    For found content in something like an email attachment, holdind down the command key will show the context of the content; adding the option key will show where the item that has the content can be found.
    In either case, holdind down the command key while clicking on the item will reveal it in the appropriate application (Finder for files, Mail message for email content, etc.).
    I never can find anything here when I search, so I gave up trying. Once you do post, check the More Like This sidebar item, here. It will try to match your question with others.

  • Exporting and Importing mail from older system

    I just upgraded my Hard Drive and OS. Was using Tiger and now Leopard. I can still access my old hard drive. How do I export my mailbox files and import them into my new sys?
    thx

    first of all, you can use Migration Assistant (it's in /Applications/Utilities) to migrate your whole old setup, not just Mail. if you only want Mail, quit Mail and copy the entire directory homedirectory/Library/Mail and the file homedirectory/Library/Preferences/com.apple.mail.plist to the corresponding locations on the new computer. Delete homedirectory/Library/Mail if it already exists on the new computer before doing this. when you start Mail it will be exactly as it was on the old computer.

  • Sony Vegas Metadata and File tagging?

    Howdy! I used to use Sony Vegas on the PC and have made the switch to FCP. Im liking all that I see but there was one feature that was great in vegas that i can’t find in FCP. It was the ability to tag your clips eg “falls” “Dave” “Bride” “Somersault” and use the tags to recall the relevant clips.
    This was great when making wedding videos for example and you just wanted to quickly find all the clips that had the Bride in it.
    Is there something like this via a plug in program or otherwise that can be done in FCP7 or is this done by the naming of files? If so does anyone have a good simple workflow for naming of the files?
    Ta!

    You can name the clips in the browser. You can add comments to any number of multiple columns in the browser. The browser is a searchable database. Once the information is input just press Cmd-F to bring up the find function, enter what you want and press Find All. Is this the kind of thing you mean?

  • How to use Php and Oracle on 2 different systems

    Hi!
    I connected with a net 2 systems. One (Windows 2000 + Oracle9i) is the database server. The other (WinXP + Apache 2.0.54 + Php 5.0.4 ) is the web server. I'd like to make the WinXP machine connect on the Win2000 but It seems it doesn't work even if I'm using:
    oci_connect( "<user>" , "<pwd>" , "//<ip>:<port>/<db-name>" );
    the error is always "_oci_open_server: ORA-06401: NETCMN: designatore del programma di gestione non valido"
    (translated: "NETCMN: invalid gestion management program")
    can someone help me?
    Thanx a lot!!

    ORA-06401, 00000, "NETCMN: invalid driver designator"
    Cause: The login (connect) string contains an invalid driver designator.
    Action: Correct the string and re-submit.
    The //ip:port/sid connect string will only work with 10g clients.
    Check your tnsnames.ora file. Does the file have control characters or missing carriage-return characters ? (Maybe you ftp'd the file from a unix box ?)
    I would suggest that you create a new tnsnames.ora - hand edit it (don't copy the old one). If you have sqlplus client - try using it to connect to the remote DB first.
    The instructions for connection to a local or remote DB are all the same (when using plain OCILogon) because the connection is made over TCP.

  • Using BitLocker and File History

    I understand that Microsoft has posed restrictions on the use of File History on device encrypted with BitLocker. It seems not possible to use a Networked device but also a USB Harddisk seems not to be supported.
    Where can I find a complete overview under which circumstances File History will work? Are there additional policy settings that I could tweak? I don't mind that the history files are not encrypted. They sit on a tightly secured server that nobody else has
    access to.
    (cross-posted from
    http://answers.microsoft.com/en-us/windows/forum/windows8_1-security/file-history-from-a-bitlocker-device)

    Hi,
    Actually, the screenshot above doesn't indicate that this issue is caused by Bitlocker, it mentioned something about EFS, network location and NTFS files system. but according to your description, I would suggest you temporarily turn off the bitlocker, and
    check if it is the root cause.
    We can also recorded log in Event Viewer to find more information about this issue, Event Viewer\Applications and Services Logs\Microsoft\Windows\File History-Core or File History-Engine.
    You can also manually check the copies of File History on the destination drive, and check the settings of File History\Advanced Settings, saved copies of files,  size of offline cache, keep saved versions.
    Yolanda Zhu
    TechNet Community Support

  • Using Tiger's Disk Utility on older systems (10.3) ??

    My mom's iMac G4 has been acting up and unfortunately she can't find her
    Panther Install CD.
    I want to boot up from my Tiger disk and run Disk Utility for a drive check and possible repair.
    Can I use the newer Disk Utility from my Tiger disk on her older Panther system?
    I'd boot from my CD-Rom to scan her drive which has Panther installed on it.
    thanks

    Doing a disk repair should be OK, but don't do a permissions repair with the 10.4 disk on a 10.3 system. It might be fine, but it's possible that it might mis-set some permissions.

  • Save as swf file using httpconnection and file io

    I have one application which is fatch the swf file from web and i want to save as in same to swf file format.
    when i have fatch the swf file and save as .swf format i have unable to view as flash animation in browser and micromedia.
    Anyone suggest me ?
    URL url = new URL("http://nileshpatel.com/abc.swf");
    HttpURLConnection con = (HttpURLConnection) url.openConnection();
    con.setRequestProperty( "User-Agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)" );
    BufferedReader rd;
    rd = new BufferedReader(new InputStreamReader(con.getInputStream()));
    String line="";
    String content="";
    File f = new File("users/nileshpatel/neo.swf");
    FileWriter fw = new FileWriter(f);
    while ((line = rd.readLine()) != null) {
    content += line;
    rd.close();
    fw.write(content);
    fw.close();
    ############################################################

    BTW sometimes flash uses communication with server to obtain some information before/during running. In such case you'll need to provide kind of your own HTTP server, pass swf to browser using HTTP protocol (not directly from HDD) then pass all additional data.
    Hope this is not your case :)

  • How to use AL11 and FILE

    Hi gurus,
    I am trying to output a file from BW. And in the future this process need to be automated.
    I used OPEN DATASET ** FOR OUTPUT IN TEXT MODE in the code. I was told that I can find the file throught FILE and I can define the path in AL11. So now I got access to FILE and AL11, Can anyone kindly tell me what should I do there exactly? And advise me how to automate this process? Thanks a lot, points will be awarded definitely.
    Jenny

    In FILE you defined a logical file, it is useful when path names change from one server to other, then you can refer to logical filename instead of phisical file.

Maybe you are looking for

  • H.264 Web based Encoder Demo

    Hi, before some weeks ago i red a newsletter that adobe has include a h.264 encoder in FP 11. Well, here we go i thought and start to develope a web based h.264 encoder for our CDN. Here is a first version that i want to share with you developers. On

  • Extract actual file name from the filepath

    I have a String something like String str ="C:\Documents and Settings\abc\Desktop\file_Aug_2007.xls"; how can i extract the substring file_Aug_2007.xls with or without using io apis Regards, ivin

  • Weblogic EAR deployment before resource initialization

    Hi All, Our application deployment is failing while "starting all services". One of our bean is trying to obtain & initializing a queue in the ejbCreate method (bcos this is a migration project so we are not using the annotations) and it is unable to

  • Regarding BR Tools Upgrade procedures

    Hi Techies, While Upgrading the BR Tools iam having the following doubts: 1.Kernel Upgrade from 640 to 700 includes BR Tools.exe also upgraded ,this is ok or 2.Any Other wat to upgrade BRTools separately.(from the current version to marketplace exist

  • Adding Custom TAB in AS01

    Hi all, I have a requirement to add new custom TAB 'XYZ' next to 'Deprec. Areas' of t-code AS01 with some custom fields appended in table ANLA using Exit - AIST0002, so can anyone please tell me the step by step procedure for doing the same? regards.