CLI/ASDM shows much more traffic on FWSM than via SNMP?

Hi!
I've noticed a strange behaviour of our FWSM (Release 3.1.3). When starting the ASDM or using CLI (show interface XY stats), both ways show the same amount of traffic. It's the same amount of traffic the 6513 router beyond also measures.
But when i try to use SNMP on the OIDs ifOutOctets/ifInOctets, i get way too little traffic. Also the packet counter shows way too little packets than i get via CLI or the ASDM frontend.
Is it a bug of the firmware or does the FSWM count the traffic and packets in a different way?
Can someone please verify this?
Thanks!

Hi,
Do you see any errors on ASA Eth0/1(to switch)?  Running the similar speed tests with wired and wifi? Client traffic on network is same as well?
Thx
MS

Similar Messages

  • New Photos App take a very long time to upload 20 Pictures, while the Activity Monitor is showing much more data sent (MB) than these two pictues

    The New photos app is taking a very long time to upload images. It stays a very long time at 20,104 for example. When I check the Activity Monitor (Network) it shows that the computer is actually uploading stuff. After about 2 hours, only 20 Pics&Videos are uploaded. The uploaded pics and videos are about 500MB while the data sent is around 1GB. I am positive that Photos is the only thing uploading data at the moment.
    Anyone else facing this problem?

    It can take days, even weeks.
    Tell me 2 things and I will tell you the estimated upload time.
    1 How big is your Library (in GB)
    2 How fast is your upload speed.
    Or you can just use the upload time calculator and do it yourself

  • Why is the iphone5 so much more expensive in Canada than in the US??

    With the Canadian dollar near parity, why is the cost of the new iPhone5 so much more in Canada???

    It's not.
    Announced US pricing is for a subsidized device on 2yr contract.
    All other pricing that I have seen for iPhones in other country's is for non-subsidized devices.

  • Same photos take up much more space on ipad than iphone

    is this supposed to happen? the exact same photo selections i am syncing to both iphone and ipad take up much more room on the ipad. on iphone what takes up 6 gb winds up taking up over 22 gb on the ipad!!

    The file size thing is a feature, not a bug. The version that your iPhone gets is converted to a smaller size, as it was thought that people wouldn't need to be sending huge filesize photos from your iPhone, but an iPad is meant to display higher resolution photos, so it can work with a weightier version of the file.

  • Tuning PL/SQL - tkprof shows much more work for RECURSIVE STATEMENTS

    Hi,
    Firstly I'm not sure if this should be in "Database - General" or "SQL and PL/SQL". Since it's more of a performance tuning question than specifically about the PL/SQL, I'm going to put it here in "Database - General". I hope that doesn't offend anyone.
    I've just started looking at a reported performance problem in our app. One of the developers set me up a procedure that replicates the issue, I ran it while tracing the session and then fed the trace file to tkprof. The results at the bottom of my tkprof output file look like this:
    OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        3      0.01       0.07         10         60          0           0
    Execute      3      0.01       0.01          0          3          0           3
    Fetch        0      0.00       0.00          0          0          0           0
    total        6      0.03       0.08         10         63          0           3
    Misses in library cache during parse: 1
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      SQL*Net message to client                       5        0.00          0.00
      SQL*Net message from client                     4        1.68          1.70
      db file sequential read                        18        0.01          0.10
    OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse      416      0.00       0.01          0          0          2           0
    Execute   1456      0.71       0.75         26       1739        425         590
    Fetch     2932      0.12       2.21        337       6338          0        3061
    total     4804      0.84       2.98        363       8077        427        3651
    Misses in library cache during parse: 25
    Misses in library cache during execute: 24
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      db file sequential read                       343        0.08          2.09
      db file scattered read                          1        0.00          0.00
       47  user  SQL statements in session.
      888  internal SQL statements in session.
      935  SQL statements in session.
       31  statements EXPLAINed in this session.I'm looking in particular at that relatively high activity for RECURSIVE STATEMENTS, because to me, the NON-RECURSIVE (ie the actual submitted statements that form our code) looks pretty harmless. This is my first experience of trying to tune some complex looking PL/SQL and I've no idea what could be considered more "normal", but from what I think I know, and google searches, the results look quite odd to me.
    Is this high activity for RECURSIVE STATEMENTS a problem, and if so, what should I start looking at to reduce that activity?
    Regards,
    Ados

    If you have a PLSQL block or stored procedure running SQL statements, the SQL statements, too, will appear as RECURSIVE STATEMENTS in the trace file and tkprof.
    It is a misconception that RECURSIVE STATEMENTS are only SYS statements doing data dictionary lookups / updates.
    For example, I ran this :
    SQL> create or replace procedure test_procedure as
      2  begin
      3  insert into my_emp_table select * from my_emp_table;
      4  dbms_output.put_line('Rows Inserted :  ' || sql%rowcount);
      5  insert into my_emp_table select * from my_emp_table where emplid=1;
      6  dbms_output.put_line('Rows Inserted :  ' || sql%rowcount);
      7  end;
      8  /
    Procedure created.
    SQL> alter session set events '10046 trace name context forever, level 8';
    Session altered.
    SQL> execute test_procedure;
    PL/SQL procedure successfully completed.
    SQL> commit;
    Commit complete.
    SQL> select 'x' from dual;
    x
    SQL> exitThe tkprof shows ;
    OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        3      0.00       0.00          0          0          0           0
    Execute      3      0.00       0.00          0          0          1           1
    Fetch        2      0.00       0.00          0          0          0           1
    total        8      0.00       0.00          0          0          1           2
    Misses in library cache during parse: 2
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      SQL*Net message to client                       5        0.00          0.00
      SQL*Net message from client                     5        5.31         11.97
    OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        4      0.00       0.00          0          2          0           0
    Execute      4      0.00       0.00          2         16          7           5
    Fetch        2      0.00       0.00          0         14          0           2
    total       10      0.01       0.01          2         32          7           7
    Misses in library cache during parse: 2
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      db file sequential read                         2        0.00          0.00
        7  user  SQL statements in session.
        0  internal SQL statements in session.
        7  SQL statements in session.Which were the Non-Recursive statements ?
    BEGIN test_procedure; END;
    commit
    select 'x' from  dualWhich were the RECURSIVE statements (which you can identify by the keywords : (recursive depth) ?
    SELECT /* OPT_DYN_SAMP */ /*+ ALL_ROWS IGNORE_WHERE_CLAUSE
      NO_PARALLEL(SAMPLESUB) opt_param('parallel_execution_enabled', 'false')
      NO_PARALLEL_INDEX(SAMPLESUB) NO_SQL_TUNE */ NVL(SUM(C1),:"SYS_B_0"),
      NVL(SUM(C2),:"SYS_B_1")
    FROM
    (SELECT /*+ NO_PARALLEL("MY_EMP_TABLE") FULL("MY_EMP_TABLE")
      NO_PARALLEL_INDEX("MY_EMP_TABLE") */ :"SYS_B_2" AS C1, :"SYS_B_3" AS C2
      FROM "MY_EMP_TABLE" "MY_EMP_TABLE") SAMPLESUB
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        1      0.00       0.00          0          7          0           1
    total        3      0.00       0.00          0          7          0           1
    Misses in library cache during parse: 0
    Optimizer mode: ALL_ROWS
    Parsing user id: 64     (recursive depth: 2)
    INSERT INTO MY_EMP_TABLE SELECT * FROM MY_EMP_TABLE
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          1          0           0
    Execute      1      0.00       0.00          2          8          4           3
    Fetch        0      0.00       0.00          0          0          0           0
    total        2      0.00       0.00          2          9          4           3
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 64     (recursive depth: 1)
    SELECT /* OPT_DYN_SAMP */ /*+ ALL_ROWS IGNORE_WHERE_CLAUSE
      NO_PARALLEL(SAMPLESUB) opt_param('parallel_execution_enabled', 'false')
      NO_PARALLEL_INDEX(SAMPLESUB) NO_SQL_TUNE */ NVL(SUM(C1),:"SYS_B_0"),
      NVL(SUM(C2),:"SYS_B_1")
    FROM
    (SELECT /*+ IGNORE_WHERE_CLAUSE NO_PARALLEL("MY_EMP_TABLE")
      FULL("MY_EMP_TABLE") NO_PARALLEL_INDEX("MY_EMP_TABLE") */ :"SYS_B_2" AS C1,
      CASE WHEN "MY_EMP_TABLE"."EMPLID"=:"SYS_B_3" THEN :"SYS_B_4" ELSE
      :"SYS_B_5" END AS C2 FROM "MY_EMP_TABLE" "MY_EMP_TABLE") SAMPLESUB
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        1      0.00       0.00          0          7          0           1
    total        3      0.00       0.00          0          7          0           1
    Misses in library cache during parse: 0
    Optimizer mode: ALL_ROWS
    Parsing user id: 64     (recursive depth: 2)
    INSERT INTO MY_EMP_TABLE SELECT * FROM MY_EMP_TABLE WHERE EMPLID=1
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          1          0           0
    Execute      1      0.00       0.00          0          8          3           2
    Fetch        0      0.00       0.00          0          0          0           0
    total        2      0.00       0.00          0          9          3           2
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 64     (recursive depth: 1)The INSERT statments are recursive depth 1 while the SELECTS they cause are recursive depth 2.
    Note that neither of these are are actually SYS statements agaisnt the data dictionary !!
    Edit :
    IF you read the last few lines, it would become evident that some (in my case all) the RECURSIVE STATEMENTS are non-SYS statements, actually being my code, not Oracle's code.
           1  session in tracefile.
           7  user  SQL statements in trace file.
           0  internal SQL statements in trace file.
           7  SQL statements in trace file.
           7  unique SQL statements in trace file.
          87  lines in trace file.
           6  elapsed seconds in trace file.I have 3 non-recursive and 4 "RECURSIVE" statements. All 7 are correctly identified as "user SQL statements in trace file".
    Hemant K Chitale
    http://hemantoracledba.blogspot.com
    Edited by: Hemant K Chitale on Jul 29, 2009 11:44 PM
    Edited by: Hemant K Chitale on Jul 29, 2009 11:47 PM

  • Several encrypted .dmg files show much more free space that the total size of the file.

    I have several encrypted .dmg files on my macbook air running OS X 10.10.1  I have had them for years with no problems. Now suddenly, in the finder, at the bottom of the finder window where it shows the number of items and free space for a disk, it shows more free space than the full size of the .dmg file. Typically it will show about 200MB for a 100 MB file. Obviously, this is a bug, but I can find no information or discussions about it anywhere.
    Does anyone have the same problem? Any ideas how to fix it?

    Thanks for the ideas. Unfortunately, it didn't work.
    I rebuilt the spotlight index as suggested.
    I tried it twice, rebooting the computer a couple of time along the way.
    Below you can see the actual file as it occurs in the finder in its unopened form.
    Now, below here is what the finder reports at the bottom of the finder window when the file is opened and added as a virtual disk.
    Note that the total file size is 102.5 Mb
    Yet the finder says it has 234.5 Mb free!
    The actual size of the files on the disk add up to about 60 Mb
    This occurs with several similar dmg files.
    Any other ideas or experiences would be appreciated.

  • Why can I watch hd shows much sooner on my mac than on my atv2?

    Why am I able to start watching an hd show within a minute into the download on my Mac, yet on my apple tv it takes anywhere from 5 to 15 minutes?  It is an iMac intel core duo 2 ghz with 2 gigs of memory.  I get about 4 to 5 mbs.  I've tried rebooting both apple tv and router. I do not have custom dns settings.
    I tested this with the exact same movie file on both my computer and apple tv within minutes apart. Nothing else was downloading and the internet connection was not being used both times. I stopped the download on my computer before attempting to download the file on my apple tv.  It was 1.32 gb in size.  The file played instantly on my computer, yet took 10 minutes on my apple tv to be ready. 
    This is not a random occurrence. For a long time, I could play all hd content almost instantly on my computer, yet on my apple tv, it takes anywhere from 5 to 15 minutes depending on the size of the file and the time of day.  I've also tried a direct connect form my apple tv to my router so i know it's not my wifi, but ive gotten the same results.

    There may be more to this - there was another thread - I think but may be wrong (and only just realised) that the OP said they can play instantly in iTunes - this has never been the case for me with movies - it has to download fully first, but I'm not sure if same applies to TV Show rentals that I don't get in UK.
    jjay91 suggests in the other thread that they start playback by intermittently clicking on the download in the downloads section of iTunes - this might just start playback of the incomplete file which wouldn't play through without stop/starts OR perhaps will play due to not utilising as much of a 'safety buffer' as AppleTV does.
    AC

  • Time Machine drive showing much smaller amount of data than on internal HDD.

    I am helping a friend that has an iMac running 10.7.5 with a TM backup drive. External HDD is formatted as Extended Journaled Case Sensitive.( Default via TM grabbing the disk initially and setting it up.)
    Both internal HDD and TM HDD have been verified in Disk Utility. TM drive shows the size of the backups.backups folder as 11GB and the internal drive has 320GB of data on it. No items were excluded from the TM backup as an option. Running a backup to TM is successful with no error messages.
    Disk Permissions were repaired on the internal HDD but it is not an option for the TM HDD ( grayed out in DU) .
    I tried the tips from this thread:
    https://discussions.apple.com/message/19018287#19018287
    about unchecking the ownership in the Get Info window for the TM drive but the checkbox is not available. I went thru Terminal to enable ownership on the drive and it appeared successful but still no ability to Repair Disk Permissions in Disk Utility.
    Pondini has had GREAT advice on all things TM!!!!! What a fantastic resource for us all! This is the only backup of the data at this point. The friend is also having issues with a large iPhoto Library and before I option & boot iPhoto to repair library permissions etc, I want to know the TM HDD is truly functioning correctly.
    Any thoughts?

    It has failed. It says it requires 318 GB of space, which is ludicrous.
    Feb 1 17:02:25 koishi /System/Library/CoreServices/backupd[7799]: Backup requested by user
    Feb 1 17:02:25 koishi /System/Library/CoreServices/backupd[7799]: Starting standard backup
    Feb 1 17:02:25 koishi /System/Library/CoreServices/backupd[7799]: Backing up to: /Volumes/kuhi/Backups.backupdb
    Feb 1 17:02:25 koishi /System/Library/CoreServices/backupd[7799]: Ownership is disabled on the backup destination volume. Enabling.
    Feb 1 17:02:25 koishi KernelEventAgent[37]: tid 00000000 received unknown event (256)
    Feb 1 17:02:26 koishi /System/Library/CoreServices/backupd[7799]: Event store UUIDs don't match for volume: koishi
    Feb 1 17:05:20 koishi login[7705]: DEAD_PROCESS: 7705 ttys001
    Feb 1 17:07:49 koishi /System/Library/CoreServices/backupd[7799]: Backup content size: 292.1 GB excluded items size: 26.4 GB for volume koishi
    Feb 1 17:07:49 koishi /System/Library/CoreServices/backupd[7799]: Starting pre-backup thinning: 318.79 GB requested (including padding), 297.64 GB available
    Feb 1 17:07:49 koishi /System/Library/CoreServices/backupd[7799]: No expired backups exist - deleting oldest backups to make room
    Feb 1 17:07:49 koishi /System/Library/CoreServices/backupd[7799]: Error: backup disk is full - all 0 possible backups were removed, but space is still needed.
    Feb 1 17:07:49 koishi /System/Library/CoreServices/backupd[7799]: Backup Failed: unable to free 318.79 GB needed space
    Feb 1 17:07:54 koishi /System/Library/CoreServices/backupd[7799]: Backup failed with error: Not enough available disk space on the target volume.
    I will now force a Spotlight re-indexing of my source drive.
    d.

  • Photos take up much more space on iPhone than on disk?

    I have 3800 photos exported from Picasa with a max-width of 480. On disk, they take 267Mbytes. After optimizing and transferring to the iPhone, suddenly they're taking 2.45GB ??
    Secondary question, repeated from others: Can you store higher-res pictures on the iPhone and zoom into them? My experiments with optimizing showed that photos exported at 1600, 800, or 480 all look the same after being synced to the iPhone.
    White box dual-core 2G   Windows XP Pro  

    You can resize on your computer & then import.
    Or use Simple Resize app http://itunes.apple.com/us/app/simple-resize/id327776379?mt=8 on your iPad. However, you'll have to import some, resize & then import/resize in steps.
     Cheers, Tom

  • Why needs the first reference much more time to close than all others?

    Hi all,
    I am facing a strange problem with closing an array of references.
    A few words to my environment:
    I can load dynamically VIs into a subpanel sitting on my main VI but if I unload and reload Visa I need to close my Visa properly, not just by stopping.
    Therefore I wrote a closingVI which is attached. In this VI I look for a "Stop" button and send a true by signaling.
    The problem now is that the very first reference in the "Control[]" needs around 40seconds to close, all following refs just need <1ms! By the way, the array size is just about 24 and it is independent which ref comes first.
    In addition to that the problem just occurs when the VI runs longer than 10 minutes, which doesn't makes any sense to me. 
    Do you have any suggestions?
    Stay Hungry, Stay Foolish
    Attachments:
    Capture.PNG ‏15 KB

    Benjamin_ wrote:
    The problem now is that the very first reference in the "Control[]" needs around 40seconds to close, all following refs just need <1ms!
    I don't know what you are referring to here.  You are closing all of the Control references in a single node.  Are you saying it takes that long for the Close Reference for the entire array?
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • I want to synchronise music I have between ipnone 3g and macbook pro - I am told if I synchronise I will only have the music from my macbook and will lose my iPhone music of which there is much more.  How do I get all my music on both my iPhone and mac bo

    I want to have all my music on my iphone and macbook (and pc if possible) but when I try to synchronise I am told I will lose any music from my iphone which is not on my macbook (there is much more on my iphone than my macbooK).  How do I keep all my downloaded and copied music and have it available on both machines (plus pc if possible)?

    The music sync is one way only - computer to iphone.  The exception is itunes purchases: Without syncing:  File>Transfer Purcahses
    The iphone will sync with only one copmptuer at a time.  Sycning with another will erase the current content of the iphone and replace it with content from the new computer.

  • Why are Macbooks so much more expensive in NZ compared to US?

    Hi,
    Just wondering why the apple products are so much more expensive in NZ than in US. I am looking at getting a new macbook pro 17" and saw it is NZ$4149, and US$2500. So I used the exchange rates to convert US$2500 to NZ$. It came to approx $3000. So why are they making us pay another $1000 in NZ??

    Economies of scale most likely.
    https://secure.wikimedia.org/wikipedia/en/wiki/Economies_of_scale
    Your question should be looked at in the opposite "Why are US citizens getting a discount?"
    If you compare the two economies and what people tend to buy perhaps that would shed some light.
    Perhaps the "Apple halo effect" doesn't reach OZ? 

  • My HD icon on the desktop is showing far more free space than I actually have.

    I use a 2011 17" MBP with OS X Lion (750GB HD, 8GB RAM, 2.2GHz i7) and have noticed recently (only since I bought the new OS) that the Hard Drive icon on my desktop shows far more free space available than I know I have. It shows 488GB free of 497GB (with 250GB on a partition for Windows 7 Enterprise) and I know I have about 250-300GB worth of stuff. I've checked several times to ensure it's still there and all my files still work so it doesn't seem to be deleting things randomly. I just want to know if it's a calculation bug or if there's something else wrong. Thanks for any help in advance!

    In case anyone reads this wondering if there's a solution, there is: turn off automatic time machine backups, and restart your computer. It turns out I had about 80GB worth of data stacking up between physical backups to external HDs. Apparently it counts as free space because it can be over-written when necessary, hence an elated free space count.
    I also did a disk repair on the partition which OS X is on, which fixed some "minor logging issues" but I don't think that made a difference because nothing happened until I cleared the backup cache by turning off time machine. By the way, once I turned off time machine my HD free space sky-rocketed to 576GB of 497GB which freaked me out but don't worry, this is fixed once you restart.

  • Since loading Lion, I've experienced much more instability than Snow Leopard. In particular, Mail crashes with regularity, full-screen apps seem to run slower and show the beach ball more often for longer, etc.  I'm disappointed with the performance. Any

    Since loading Lion, I've experienced much more instability than Snow Leopard. In particular, Mail crashes with regularity, full-screen apps seem to run slower and show the beach ball more often for longer, etc. I love the features, but I'm disappointed with the performance. Any help coming from Apple?  I've been sending them so many reports after crashes, that their file must be full!

    Summoning max. courage, I did what you advised. Here is the result. What does this tell you? My Lion 7.2 (mid 2011 iMac) has several annoying glitches (which I have so far tolerated through gritted teeth) but none that have actually stopped me working.
    BTW, I see several items involving CleanMyMac which I did not know I had. It is generally villified as a trouble-maker. Spotlight can't find an app. or a utility of that name. How can I get rid of what's there please? Just delete?
    Last login: Thu Nov  3 20:55:11 on console
    Steve-Kirkbys-iMac:~ stevekirkby$ kextstat -kl | awk ' !/apple/ { print $6 $7 } '
    com.AmbrosiaSW.AudioSupport(4.0)
    Steve-Kirkbys-iMac:~ stevekirkby$ sudo launchctl list | sed 1d | awk ' !/0x|apple|com\.vix|edu\.|org\./ { print $3 } '
    Password:
    com.openssh.sshd
    com.stclairsoft.DefaultFolderXAgent
    com.microsoft.office.licensing.helper
    com.bombich.ccc.scheduledtask.067493DB-2728-4DF3-87D8-092EF69086E8
    com.bombich.ccc
    com.adobe.SwitchBoard
    Steve-Kirkbys-iMac:~ stevekirkby$ launchctl list | sed 1d | awk ' !/0x|apple|edu\.|org\./ { print $3 } '
    com.sony.PMBPortable.AutoRun
    uk.co.markallan.clamxav.freshclam
    com.veoh.webplayer.startup
    com.macpaw.CleanMyMac.volumeWatcher
    com.macpaw.CleanMyMac.trashSizeWatcher
    com.adobe.ARM.202f4087f2bbde52e3ac2df389f53a4f123223c9cc56a8fd83a6f7ae
    com.adobe.AAM.Scheduler-1.0
    Steve-Kirkbys-iMac:~ stevekirkby$ ls -1A {,/}Library/{Ad,Compon,Ex,Fram,In,La,Mail/Bu,P*P,Priv,Qu,Scripti,Sta}* 2> /dev/null
    /Library/Components:
    /Library/Extensions:
    /Library/Frameworks:
    AEProfiling.framework
    AERegistration.framework
    ApplicationEnhancer.framework
    AudioMixEngine.framework
    FxPlug.framework
    NyxAudioAnalysis.framework
    PluginManager.framework
    ProFX.framework
    ProMetadataSupport.framework
    TSLicense.framework
    iLifeFaceRecognition.framework
    iLifeKit.framework
    iLifePageLayout.framework
    iLifeSQLAccess.framework
    iLifeSlideshow.framework
    /Library/Input Methods:
    /Library/Internet Plug-Ins:
    AdobePDFViewer.plugin
    EPPEX Plugin.plugin
    Flash Player.plugin
    Flip4Mac WMV Plugin.plugin
    JavaAppletPlugin.plugin
    Quartz Composer.webplugin
    QuickTime Plugin.plugin
    SharePointBrowserPlugin.plugin
    SharePointWebKitPlugin.webplugin
    Silverlight.plugin
    flashplayer.xpt
    iPhotoPhotocast.plugin
    nsIQTScriptablePlugin.xpt
    /Library/LaunchAgents:
    com.adobe.AAM.Updater-1.0.plist
    com.sony.PMBPortable.AutoRun.plist
    /Library/LaunchDaemons:
    com.adobe.SwitchBoard.plist
    com.apple.remotepairtool.plist
    com.bombich.ccc.plist
    com.bombich.ccc.scheduledtask.067493DB-2728-4DF3-87D8-092EF69086E8.plist
    com.microsoft.office.licensing.helper.plist
    com.stclairsoft.DefaultFolderXAgent.plist
    /Library/PreferencePanes:
    .DS_Store
    Application Enhancer.prefPane
    Default Folder X.prefPane
    DejaVu.prefPane
    Flash Player.prefPane
    Flip4Mac WMV.prefPane
    /Library/PrivilegedHelperTools:
    com.bombich.ccc
    com.microsoft.office.licensing.helper
    com.stclairsoft.DefaultFolderXAgent
    /Library/QuickLook:
    iWork.qlgenerator
    /Library/QuickTime:
    AppleIntermediateCodec.component
    AppleMPEG2Codec.component
    DesktopVideoOut.component
    DivX 6 Decoder.component
    FCP Uncompressed 422.component
    Flip4Mac WMV Advanced.component
    Flip4Mac WMV Export.component
    Flip4Mac WMV Import.component
    LiveType.component
    /Library/ScriptingAdditions:
    .DS_Store
    Adobe Unit Types.osax
    Default Folder X Addition.osax
    /Library/StartupItems:
    Library/Address Book Plug-Ins:
    Library/Frameworks:
    EWSMac.framework
    Library/Input Methods:
    .localized
    Library/Internet Plug-Ins:
    Library/LaunchAgents:
    com.adobe.AAM.Updater-1.0.plist
    com.adobe.ARM.202f4087f2bbde52e3ac2df389f53a4f123223c9cc56a8fd83a6f7ae.plist
    com.macpaw.CleanMyMac.trashSizeWatcher.plist
    com.macpaw.CleanMyMac.volumeWatcher.plist
    com.veoh.webplayer.startup.plist
    uk.co.markallan.clamxav.freshclam.plist
    Library/PreferencePanes:
    .DS_Store
    Perian.prefPane
    WindowShade X.prefPane
    Library/QuickTime:
    AC3MovieImport.component
    Perian.component
    Library/ScriptingAdditions:
    Steve-Kirkbys-iMac:~ stevekirkby$

  • Just updated to itunes 12.1.0.71 - big problem - can no longer access the legacy "Get Info" where you could change multiple files, easily add artwork, add album name for TV show, and much more. In previous iTunes 12 you'd right click

    Just updated to itunes 12.1.0.71 - big problem - can no longer access the legacy "Get Info" where you could change multiple files, easily add artwork, add album name for TV show, and much more. In previous iTunes 12 you'd right click and hold shift key and be able to get to it. Anyone figured this out?

    The "legacy" metadata editors, for which there was a "back door" in iTunes 12.0, have gone from 12.1.  However, the revised editors in 12.1 provide access to (almost) all the metadata elements that were available in iTunes 11, albeit in a different layout and with some additional constraints based on media kind.  Some users have / will have an issue with the statement that "Get Info has been completely redesigned in iTunes 12 to focus your attention only on what’s necessary for the selected item" since that removes some metadata elements that people may have been using in creative ways.  iTunes 12.1 basically gives you access to the fields that Apple think are necessary ... .  Some of the things that have been excluded by this rule:
    track and disc number fields for video media kinds
    show and episode fields for music
    description tab for audiobooks made up of more than one file
    Obviously the first two examples can be regarded as "overloading" the metadata elements - i.e., using them in ways that the designers didn't intend - but given that some users do find valid cases for this it's a shame that they've been deprecated in the new UI.  There are couple of workarounds:
    in songs view (or any of the other columnar views), you can still select any fields to display, independent of media kind, and these can be edited (though only one at a time) by double-clicking in the relevant "cell"
    you can (temporarily) change the media kind of an item (or group of items) to get access to metadata elements that would otherwise be inaccessible.
    It may be worth submitting an issue via https://www.apple.com/feedback/itunesapp.html - I can't see it as a huge development task to have a user preference to switch between "show all fields" and "filter fields based on media kind".
    One other oddity/irritation is that some of the tabs don't, by default, show all the available fields - you need to scroll up/down to access them or to expand the window by dragging on one of its corners.  Fortunately, the latter seems to be persistent - once you've done this to make all the fields visible the editor will open at the same (larger) size when opened again.

Maybe you are looking for

  • Read user name from Header of SOAP Sender

    Hi All, Is there any way to read value of "sap-user" passed in below URL. http://<server>:<port>/sap/xi/adapter_plain?namespace=<sender_ns>&interface=<sender_mi>&service=myservice&party=&agency=&scheme=&QOS=BE&queueid=httpclient&sap-user=<sap-user>&s

  • Keypad not working

    Can anyone help blackberry curve 9320. Keypad buttons are not putting in the correct letters are numbers and also putting in more than one number or letter at a time.

  • DB13 Jobs failing

    Hi ALL, I have scheduled Jobs in "DB13" like "UpdateStats" and "CheckDB". These Jobs are failing with the Error Message "BR252E Function fopen() failed for '/oracle/DEV/sapbackup/.user.pas' at location brconnect-1 BR253E errno 2: No such file or dire

  • Flash player v10.02.159 won't install - how can I install an older version?

    Hi all, any help will be appreciated. I've read all the relevent posts in this forum and tried the various suggestions. (used the Adobe uninstaller, used the various packages on the x64 help page; clean installs and uninstalls with RevoUninstaller Pr

  • Is there a way to install the 32 bit version of python with 64 bit one

    Hello all, I have recently purchased a Tux Droid and I'm trying to get it installed on my Arch64 system.  The problem is the software for it depends on the 32 bit python for TTS and a lot of other libs.  Is it just possible to install the 32 bit vers