Need a clean way to talk to different serial ports simultaneously?

I need to be able to read from/write to four different serial ports simultaniously.
I'm trying to make a subvi called Tip.vi that handles all the actual writing, reading and parsing of data from a single port. I want to use 4 (instances/copies/whatever) of Tip.vi within a Main.vi.
Main.vi deals with user interactions, data gathering etc. Tip.vi has a string that get's updated with whatever bytes are currently available at the port. I want to keep this string within Tip.vi, not have to pass this to/from Main.vi.
I had all this working great with just one Tip.vi. When I added a second Tip.vi bad things happend.
if two copies of the same code, named differently, was used, one Tip.vi seemed to keep the second Tip.vi from running enough.
if just the subvi Tip.vi is made reentrent the strings from different ports would get jumbled together, not stay seperate.
if the code Tip.vi and all of it's subvi's reentrent still the strings would get jumbled.
I tried making a template out of Tip.vi (so it's Tip.vit) but it wouldn't instantiate in Main.vi
I recognize that the VISA Read used in every Tip.vi will all happen serially, I can't figure out how to make VISA Read reentrenet.
I give up. How can I read/write to two ports simultaniously. Some sample code would be great.
Thanks very much for the help-
Ariel

Hi Ariel,
Will each instance of Tip.vi use a different serial port? If so, then the first method should work, as long as you are opening different VISA Sessions to individual resources. What do you mean by "one Tip.vi seemed to keep the second Tip.vi from running enough"? It could be a simple dataflow issue, that could be corrected through using sequence structures or some other method to ensure order-of-execution.
John M
Applications Engineer

Similar Messages

  • Servlet that talks to Serial Port

    Everyone,
    I am having trouble getting a servlet to talk to a serial port. I am using the Comms extension package from Sun. The servlet fails to initialize and I cannot figure out if it is a security issue or a class loader issue. If it is a security issue can someone tell me a quit and dirty way to turn security off. At this stage, I have control of both client and server and I am not concerned with security. I am using the Sun System Java Application Server 8 to deploy the servlet. Below is the trace
    Allocate exception for servlet ModemServletjavax.servlet.ServletException: javax/comm/SerialPortEventListener     at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:286)     at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)     at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:115)     at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:997)     at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:670)     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:150)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:109)     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:522)     at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:214)     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:168)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:109)     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:522)     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:144)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:109)     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:133)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:107)     at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:539)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:107)     at com.sun.enterprise.webservice.EjbWebServiceValve.invoke(EjbWebServiceValve.java:134)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:107)     at com.sun.enterprise.security.web.SingleSignOn.invoke(SingleSignOn.java:254)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:107)     at com.sun.enterprise.web.VirtualServerValve.invoke(VirtualServerValve.java:209)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:107)     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:522)     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:114)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:109)     at com.sun.enterprise.web.VirtualServerMappingValve.invoke(VirtualServerMappingValve.java:166)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:107)     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:522)     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:936)     at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:165)     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:683)     at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:604)     at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:542)     at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:647)     at java.lang.Thread.run(Thread.java:534)----- Root Cause -----java.lang.NoClassDefFoundError: javax/comm/SerialPortEventListener     at java.lang.ClassLoader.defineClass0(Native Method)     at java.lang.ClassLoader.defineClass(ClassLoader.java:537)     at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)     at org.apache.catalina.loader.WebappClassLoader.findClassInternal(WebappClassLoader.java:1732)     at org.apache.catalina.loader.WebappClassLoader.findClass(WebappClassLoader.java:904)     at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1370)     at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1233)     at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)     at ModemServlet.init(ModemServlet.java:21)     at javax.servlet.GenericServlet.init(GenericServlet.java:261)     at sun.reflect.GeneratedMethodAccessor169.invoke(Unknown Source)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)     at java.lang.reflect.Method.invoke(Method.java:324)     at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:246)     at java.security.AccessController.doPrivileged(Native Method)     at javax.security.auth.Subject.doAsPrivileged(Subject.java:500)     at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:268)     at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)     at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:115)     at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:997)     at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:670)     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:150)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:109)     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:522)     at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:214)     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:168)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:109)     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:522)     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:144)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:109)     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:133)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:107)     at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:539)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:107)     at com.sun.enterprise.webservice.EjbWebServiceValve.invoke(EjbWebServiceValve.java:134)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:107)     at com.sun.enterprise.security.web.SingleSignOn.invoke(SingleSignOn.java:254)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:107)     at com.sun.enterprise.web.VirtualServerValve.invoke(VirtualServerValve.java:209)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:107)     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:522)     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:114)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:109)     at com.sun.enterprise.web.VirtualServerMappingValve.invoke(VirtualServerMappingValve.java:166)     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:107)     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:522)     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:936)     at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:165)     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:683)     at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:604)     at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:542)     at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:647)     at java.lang.Thread.run(Thread.java:534)

    You could try and open up the permissions on the appserver and see if the error goes away as a test. You can do this by editing the domains/domain1/config/server.policy, saving the file and restarting the app server.

  • I just got my MacBook Air and every time I go to a website other ads and websites pop up saying I need to clean my mac out. Any ideas on what I should do?

    When I am surfing the web other websites pop up saying I need to clean my mac out or I am a winner of something. I just got my Mac so I'm not sure how this happened.

    You may have installed the "VSearch" trojan, perhaps under a different name. Remove it as follows.
    Malware is constantly changing to get around the defenses against it. The instructions in this comment are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data before proceeding.
    Step 1
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "com.vsearch.agent.plist" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    /Library/LaunchDaemons/Jack.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /Library/PrivilegedHelperTools/Jack
    /System/Library/Frameworks/VSearch.framework
    ~/Library/Internet Plug-Ins/ConduitNPAPIPlugin.plugin
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one. Even if you find none of the items listed in this step, go on to Step 2.
    Step 2
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot," "Trovi," or "Conduit" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    Reset the home page and default search engine in all the browsers, if it was changed.
    This trojan is distributed on illegal websites that traffic in pirated content. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect much worse to happen in the future.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that this Internet criminal has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. This failure of oversight has compromised both Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • I have more than one copy of the same song in my iTunes. Some have the icloud symbol next to them and some do not. I need to clean this up but I am afraid to delete the songs for fear I will lose them.

    I have more than one copy of the same song in my iTunes. Some have the icloud symbol next to them and some do not. I need to clean this up but I am afraid to delete the songs for fear I will lose them. Please help! On top of that my Mac keeps telling me my start up disc is full and I am deleting stuff like crazy!

    Welcome to the  Discussion Forums
    It won't be a problem if you delete your extra copies.
    I don't download very much to my tv, I do sometimes if I'm in bed but usually I do it from itunes. However if you have not fully downloaded something to the tv it is possible to start the download from itunes as well, you have likely activated 'check for downloads fin itunes in some way, could be by opening itunes, selecting 'check or downloads' from the advanced menu or that you simply have automatically check for downloads set in your prefs and it has checked coincidentally.

  • Is there a way to have two different iTunes for two different iPhones on one Windows User account?

    Using Windows 7, iphone 4.
    I've read as many threads on these forums and as many kb's as I could find, but I sttill can't figure it out. I have 2 iPhones. Let's call them, "wife" and "hubby". I want to have two separate iTunes, one for each of the phones. Hubby is the Windoows User. I don't want to set up a different Windows User for wife.
    Hubby was the original iPhone. When I plug it in, iTunes recognized it has Hubby's iPhone. Then I unplug Hubby and close iTunes. I plug in Wife but iTunes stll comes up with Hubby under Devices and syncs Hubby's iTunes to Wife's iphone.
    I've tried using the shift key when I open iTunes to set up two separate .itl files to no avail.
    Is there a way to have two different iTunes for two different iPhones on one Windows User account?
    Thanks!

    What happens if you rename the iPhone "Wife" when it shows up as "Hubby", then choose a different set of apps/playlists to sync with? iTunes is supposed to be able to manage multiple devices, each with their own selection of content. Perhaps you "restored" "Wife" with a backup from "Hubby" when you first set things up which is now causing confusion.
    To create a new library press and hold down the shift key as you click the icon to start iTunes and keep holding shift until asked to choose or create a library. You need to use the same technique to switch back.
    tt2

  • Do I need to clean my computer like I did with my Dell?

    Hi I have a MacBook Air
    I was wondering if I need to clean up records etc like I did on my old Dell computer. I know very little about computers.
    Thanks Dennis

    No. Any one or any thing that recommends you "clean" your Mac should elicit a visceral negative reaction.
    If you're having trouble with your Mac explain what it is. Make no attempt to "clean" it, unless you want to create real problems. For more information read below.
    There will always be threats to your information security associated with using any Internet - connected communications tool:
    You can mitigate those threats by following commonsense practices
    Delegating that responsibility to software is an ineffective defense
    Assuming that any product will protect you from those threats is a hazardous attitude that is likely to result in neglecting point #1 above.
    OS X already includes everything it needs to protect itself from viruses and malware. Keep it that way with software updates from Apple.
    A much better question is "how should I protect my Mac":
    Never install any product that claims to "clean up", "speed up", "optimize", "boost" or "accelerate" your Mac; to "wash" it, "tune" it, or to make it "shiny". Those claims are absurd.Such products are very aggressively marketed. They are all scams.
    Never install pirated or "cracked" software, software obtained from dubious websites, or other questionable sources.
    Illegally obtained software is almost certain to contain malware.
    "Questionable sources" include but are not limited to spontaneously appearing web pages or popups, download hosting sites such as C net dot com, Softonic dot com, Soft pedia dot com, Download dot com, Mac Update dot com, or any other site whose revenue is primarily derived from junk product advertisements.
    If you need to install software that isn't available from the Mac App Store, obtain it only from legitimate sources authorized by the software's developer.
    Don’t supply your password in response to a popup window requesting it, unless you know what it is and the reason your credentials are required.
    Don’t open email attachments from email addresses that you do not recognize, or click links contained in an email:
    Most of these are scams that direct you to fraudulent sites that attempt to convince you to disclose personal information.
    Such "phishing" attempts are the 21st century equivalent of a social exploit that has existed since the dawn of civilization. Don’t fall for it.
    Apple will never ask you to reveal personal information in an email. If you receive an unexpected email from Apple saying your account will be closed unless you take immediate action, just ignore it. If your iCloud, iTunes, or App Store account becomes disabled for valid reasons, you will know when you try to buy something or log in to this support site, and are unable to.
    Don’t install browser extensions unless you understand their purpose:Go to the Safari menu > Preferences > Extensions. If you see any extensions that you do not recognize or understand, simply click the Uninstall button and they will be gone.
    Don’t install Java unless you are certain that you need it:
    Java, a non-Apple product, is a potential vector for malware. If you are required to use Java, be mindful of that possibility.
    Java can be disabled in System Preferences.
    Despite its name JavaScript is unrelated to Java. No malware can infect your Mac through JavaScript. It’s OK to leave it enabled.
    The same precaution applies to Adobe Flash Player. Newly discovered Flash vulnerabilities appear almost weekly.
    Beware spontaneous popups: Safari menu > Preferences > Security > check "Block popup windows".
    Popup windows are useful and required for some websites, but unsolicited popups are commonly used to deceive people into installing unwanted software they would never intentionally install.
    Popups themselves cannot infect your Mac, but many contain resource-hungry code that will slow down Internet browsing.
    If you ever receive a popup window indicating that your Mac is infected with some ick or that you won some prize, it is 100% fraudulent. Ignore it.
    The same goes for a spontaneously appearing dialog insisting that you upgrade your video player right this instant. Such popups are frequently associated with sites that promise to deliver "free" movies or other copyrighted content that is not normally "free".
    The more insistent it is that you upgrade or install something, the more likely it is to be a scam. Close the window or tab and forget it.
    Ignore hyperventilating popular media outlets that thrive by promoting fear and discord with entertainment products arrogantly presented as "news". Learn what real threats actually exist and how to arm yourself against them:
    The most serious threat to your data security is phishing. Most of these attempts are pathetic and are easily recognized, but that hasn't stopped prominent public figures from recently succumbing to this age-old scam.
    OS X viruses do not exist, but intentionally malicious or poorly written code, created by either nefarious or inept individuals, is nothing new.
    Never install something without first knowing what it is, what it does, how it works, and how to get rid of it when you don’t want it any more.
    If you elect to use "anti-virus" software, familiarize yourself with its limitations and potential to cause adverse effects, and apply the principle immediately preceding this one.
    Most such utilities will only slow down and destabilize your Mac while they look for viruses that do not exist, conveying no benefit whatsoever - other than to make you "feel good" about security, when you should actually be exercising sound judgment, derived from accurate knowledge, based on verifiable facts.
    Do install updates from Apple as they become available. No one knows more about Macs and how to protect them than the company that builds them.
    Summary: Use common sense and caution when you use your Mac, just like you would in any social context. There is no product, utility, or magic talisman that can protect you from all the evils of mankind.

  • Do I need a clean Arch install to change DE or WM?

    Hey all,
    I'm new to Arch... well, I will be new to Arch. Still currently using Fedora. One of the things I'm doing right now is taking some time to read the wiki and fully embracing "The Arch Way."
    Since I have the opportunity to build a system from the ground up, it's caused me to reconsider some of my pre-existing ideas. Like... do I need a full blown DE? The answer is probably not. All I do is listen to music, surf and code. Therefore, there's a lot I don't need.
    I'm considering using these:
    Gnome3
    Openbox
    Fluxbox
    DWM
    Xmonad
    The problem is... I kind of want to try all of them. Well, except for Gnome3. I know what's up there.
    Will it be relatively simple to just use pacman to change my DE or WM? Or do I need to cleanly install Arch? The answer will have some bearing on how long it takes me to move forward.

    You can have multiple ones going no problem, the idea is super simple, you either install a display manager to graphically choose which environment you want, or you set up your .xinitrc like the previous poster mentioned to include the multiple environments. The Wiki usually covers near everything you could possibly need including things from the aur in depth.
    I personally prefer the .xinitrc way because it's simpler. startx will start whichever you specified as your main de, and xinit gnome or xinit xfce, etc. will start the other enviroments.
    My preference on a laptop is openbox and my preference on a desktop is kde. Make sure you follow the guide for openbox should you choose to use it, you need to copy a few default files to your .config folder. Also note that a fresh openbox install is pretty barebones and takes a while to configure. I like that stuff, but xfce might be a better choice if you don't.
    https://wiki.archlinux.org/index.php/xinitrc explains how to set up your .xinitrc for multiple de's in detail, while configuring all the major display managers are explained in depth in their respective wikis.
    Also note that its really easy to remove one if you don't like it, with just "pacman -Rs gnome" for example, which should remove it and all its standalone dependencies.
    Last edited by xtraroot (2013-12-29 19:18:57)

  • Is there another way to open a different iPhoto library?

    Is there another way to open a different iPhoto library besides using the option key and clicking on the iPhoto icon? It takes me upwards of a dozen times to get it to work, so I get that screen where I choose which library I want to open - the option key usually just doesn't respond. And since it takes several seconds for my main iPhoto library to shut down everytime it incorrectly opens up, it ends up taking me upwards of a few minutes, and a lot of frustration, by the time the option key suddenly decides to randomly work and I can choose the other library I want. This is iPhoto '09, version 10.6.8, by the way.
    Thanks!

    Of course I understand about double-clicking. but how can I double-click to choose the name of the iPhoto library I want when I cannot reliably get the menu option screen listing my two libraries to come up. As far as where the two libraries are actually stored on my computer, I haven't a clue - I just created the libraries on that iphoto library menu screen at some point in the past when I was setting it up. Is there some other place I could navigate to via Finder to select the library I want? I just don't think I need to spend $20 on software that I don't need - if I has lots of libraries, sure, but most of the time I use just the one library. But it's driving me crazy that when I do switch, I m having such difficulty.
    Thanks :)

  • [solved] Clean way to include a "ln -s /usr/ /usr/..." in a PKGBUILD?

    Hello,
    in order to run a third party closed source software, I needed to
    ln -s /usr/lib32/libjpeg.so /usr/lib32/libjpeg.so.62
    In order not to do this by hand in the future, I'd like to make this by the PKGBUILD. But as far as I can see, the PKGBUILD script is only about files inside the package, not outside of them.
    So is there a clean way to include
    ln -s /usr/lib32/libjpeg.so /usr/lib32/libjpeg.so.62
    in a PKGBUILD?
    Thanks!
    Last edited by Carl Karl (2013-11-08 00:42:54)

    Sorry. I didn't mean to be so mysterious. Basically it hides a problem and it can cause further problems. So the application you do it for believes that it has a certain version of the library but it doesn't which could well cause weird failures, even if it does compile. Once that symbolic link is in your system, moreover, anything else you compile can potentially find it and try to compile against it. Suppose you were building something which did something conditionally e.g. "if we find version X of lib Y, assume A; if we find version Z of lib Y, assume B" or which just depended on a particular version of the library. Now you will have silent errors building up in the stuff you are compiling, even though it has nothing to do with the original application you installed the work around for.
    There may be other reasons it is bad, too, which I don't know about. That's the stuff I know about.
    Anyway, I'm certainly glad you found a better solution. As for finding packages, you could just search AUR using the web interface or you could use something like cower. In this case, you could try, for example:
    $ cower -s lib32-libjpeg
    aur/lib32-libjpeg6 6b1-1 (392)
    Legacy version of Library of JPEG support functions (32 bit)
    aur/lib32-libjpeg6-turbo 1.2.1-1 (12)
    libjpeg derivative with accelerated baseline JPEG compression and decompression
    aur/lib32-libjpeg7 7-3 (19)
    Library of JPEG support functions, version 7 (32 bit)
    32 bit libraries for 64 bit systems all start lib32- so that's why I searched on lib32-libjpeg rather than just libjpeg. cower is an extremely useful, minimal and lightweight AUR helper. Obviously, you could use another AUR helper if you liked - cower is just my favourite.
    Last edited by cfr (2013-11-07 22:57:34)

  • Dad needs help with setting up shuffle on different account

    Hi all ..I have a daughter with a Ipod video, and a wife with a Ipod shuffle. How can I make them work with different itune libarys on the same computor? The ipod video side is all set up. I need to get the shuffle up and running. I opened another user account on our computor, got a library opened, downloaded a cd plugged in the shuffle....won't load. I need a simle way to do this, cause I'm a simple kinda dad. I'm all messed up..open for ANY idea
    gateway   Windows XP  

    sounds like its on manual update. next time you plug it in, open itunes and open preferences. there are a couple check boxes that say something like disk mode, open itunes when you plug in ipod, i don't remember the others, my ipods in the car. but they should be pretty self explanatory. or, when you plug it in, try dragging a song over into the ipod.

  • Do i need to clean install mavericks

    macbook pro 10.8.5 want mavericks do i need to clean instal it.

    Better asked on MacBook Pro forum, no you don't but yes there is some wisdom in making bootable backup or restore image if you do.
    A clean install is easy to do and Setup Assistant will take the system image or clone as source for your old prefs and apps and add them back.
    Make sure everything you use is current and supported, some are not. Less an issue with a notebook than a Mac tower.
    How to make your own bootable OS X 10.9 Mavericks USB install drive
    http://arstechnica.com/apple/2013/10/how-to-make-your-own-bootable-os-x-10-9-mav ericks-usb-install-drive/
    Apple has changed things in 10.9, but making a recovery drive is still possible.
    by Andrew Cunningham - Oct 23 2013, 8:19am CDT
    OS X
      Flickr user Prime Number 
    When Apple released OS X 10.7 two years ago, it stopped selling operating system DVDs in its stores, stopped shipping recovery disks with new Macs, and switched to downloadable installers for OS X upgrades. These download-only installers have actually worked pretty well—I’ve never had an issue downloading the software from the Mac App Store or restoring a Mac using the Internet Recovery feature when something went south. That said, it’s still nice to have an install disk handy for those cases when you don’t have a connection, when your connection is slow, or when you just have a whole bunch of Macs and don’t want to have to download the installer on each and every one of them.
    The good news is, as with Lion and Mountain Lion, it’s possible to create a local USB installer for Mavericks. The bad news is that it wasn’t as simple as it was before—Apple has changed the way the installer works, and making an install disk manually is more difficult than it used to be. Before we get started, here’s what you’ll need:
    An 8GB or larger USB flash drive, or an 8GB or larger partition on some other kind of external drive
    The OS X 10.9 Mavericks installer from the Mac App Store in your Applications folder. The installer will delete itself when you install the operating system, but it can be re-downloaded if necessary.
    The latest beta of the Lion Diskmaker app, available here (as of this writing, version 3 beta 3 is the most recent). This app is free to download, but the creator accepts donations if you want to support his efforts.
    How to clone your system:
    http://macperformanceguide.com/Mac-HowToClone-backup.html
    http://macperformanceguide.com/Mac-HowToClone.html
    http://www.macupdate.com/app/mac/7032/carbon-copy-cloner
    You can also use Disk Utility Restore to image or clone the system to another disk volume.
    MacBook Series Forums
    https://discussions.apple.com/community/notebooks?view=discussions
    Mac OS X Forum
    https://discussions.apple.com/community/mac_os?view=discussions

  • MY TC tell me it needs to clean up old back-ups.

    Hi Everyone,
    Since a couple of days my TC tell me it needs to clean up old backups to create space. Which is odd since I still have 1,4 TB left of the 2 TB to start with. There are 2 sparsebundles, 1 for my Pro (150GB) and one for my Mini (350GB).

    I would erase and start over.. make sure the two computers have different network names. This problem can arise if you migrated settings from one computer to another when you got the Pro.
    Take a screen shot.. Command+Shift+4 gives you a rubber band selection of area.
    Click the little camera icon above.. select your picture which will land on the desktop with the current date and time.. so ..
    I took a snap of the dialogue box to insert a picture. Shown above.. the picture is on the desktop so I select it.
    Then insert the image.
    So you now have an image of taking an image to post.. this is feeling like those halls of mirrors.

  • Sometimes my computer takes too long to connect to new website. I am running a pretty powerful work program at same time, what is the best solution? Upgrading speed from cable network, is it a hard drive issue? do I need to "clean out" the computer?

    Many times my computer takes too long to connect to new website. I have wireless internet (time capsule) and I am running a pretty powerful real time financial work program at same time, what is the best solution? Upgrading speed from cable network? is it a hard drive issue? do I only need to "clean out" the computer? Or all of the above...not to computer saavy.  It is a Macbook Pro  osx 10.6.8 (late 2010).

    Almost certainly none of the above!  Try each of the following in this order:
    Select 'Reset Safari' from the Safari menu.
    Close down Safari;  move <home>/Library/Caches/com.apple.Safari/Cache.db to the trash; restart Safari.
    Change the DNS servers in your network settings to use the OpenDNS servers: 208.67.222.222 and 208.67.220.220
    Turn off DNS pre-fetching by entering the following command in Terminal and restarting Safari:
              defaults write com.apple.safari WebKitDNSPrefetchingEnabled -boolean false

  • I am new to IPAD and I want o use facetime, how can I use it to communicate with my mac at home, do I need to create another account with a different email account

    I am new to IPAD and I want o use facetime, how can I use it to communicate with my mac at home, do I need to create another account with a different email account

    do I need to create another account with a different email account
    Yes, the email addresses need to be unique to each device. You may use the same Apple ID on each device, but the email address used by each device needs to be different.

  • Does anyone get a vibration sound when talking on the iPhone6? It doesn't happen all the time and happens with talking to different people.

    Does anyone get a vibration sound when talking on the iPhone6? It doesn't happen all the time and happens with talking to different people. I have tried to troubleshoot it, but can't find a answer.

    Hey CEVYNBARRY!
    Here is an article for you that will help you address this issue:
    Troubleshooting "A connection failure has occurred", "The specified server could not be found" or similar messages
    http://support.apple.com/kb/ts1843
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

Maybe you are looking for

  • Satellite L50-B-2C8 - new SSD is not recognized in BIOS settings

    Hello, I just bought a new notebook Toshiba Satellite L50-B-2C8 and I also bought Samsung SSD 850 evo 250GB. When I try to install the SSD drive instead my HDD the BIOS show "none" in Category SSD/HDD (BIOS not recognize the SSD). Please help me. My

  • Re- install i-tunes

    I need to re-install i-tunes.  Which programs should I uninstall to have a successful re-install?

  • What to see and what not to see in SCSM Portal

    Hello every body I wonder about below: In my SCSM Portal (based on SCSM 2012 R2) I have many Service Requests and Incident Requests, some of the Services request should not be seen for all users /departments. so my doubt, is where and how to configur

  • Dump when fetching the Parameter.

    Hi Gurus, I want to pass some parameter to when i m calling another application in the portal by calling this mehod. CALL METHOD l_portal_manager->navigate_to_object       EXPORTING         system                      = 'SAP_R3'         object_type  

  • Zones could not connect Oracle in global zone

    Today I tried to install Zones for our customers. I configed Zone1 and Zone2. Applications running in Zone1 and Zone2 used JDBC to connect to Oracle. 1. Both Zone1 and Zone2 can connect to other Oracle DB servers except the one in global zone. 2. All