Running out of available ip addresses

I have a Windows 2012 domain controller on a /24 network.  I currently have about 10 free ip addresses.  No phones or portable devices on the network currently.  Getting ready to automate our warehouse to expand network with 40 or more wireless
hand-held warehouse computers, running windows 8 for handhelds (mostly barcode readers and scanners) and tablet computers.   18 Access points will be installed in about 2 weeks.  Need advice on how to update the ip address range of the server.  Have
multiple VM's available.  Also have been having some intermittent problems with the server, think it might have something to do with importing the Active Directory from SBS2003.  Can I get some suggestions on pro's and con's of changing ip address
range to fix the shortage of ip addresses.  Currently a 192.168.1.1/24  considering 10.0.0.1
Devices on network;
10-12 servers multiple nics
8 switches (mostly managed)
Cisco 2921 router
Palo Alto firewall
110 workstations
50 printers
40 ip cameras
100 meg fiber Internet connection
Thanks for any help or thoughts on solutions.

  You don't need to change to a 10. subnet. You could increase the subnet mask on the 192.168.1.0 network to a 23-bit mask. Or you could add a second 24-bit subnet and route between them, with say 4 switches in each subnet. That is the way I would go,
with two 24-bit scopes (say 192.168.1.0/24 and 192.168.2.0/24).
Bill

Similar Messages

  • Out of available IP addresses on one DHCP server, will other DHCP servers field the request?

    I have three WinServer 2012 R2 domain controllers that also act as DNS and DHCP servers.
    I have a guest wireless network that has its own subnect, 10.121.176.0/20
    We have our DHCP scopes split this way across the three domain controllers with a DHCP lease time of 1 day
    Domain controller 1, 10.121.176.11 - 10.121.181.255 for a total of 1,525 addresses
    Domain controller 2, 10.121.182.0 - 10.121.186.255 for a total of 1,280 addresses
    Domain controller 3, 10.121.187.0 - 10.121.191.254 for a total of 1,279 addresses
    This gives us a total of 4,084 addresses to hand out on our guest wireless network which is plenty. I just looked at each servers stats and this is what I see
    Domain controller 1 - 717 addresses in use, 808 available
    Domain controller 2 - 900 addresses in use, 380 available
    Domain controller 3 - 1280 address in use, 0 available
    On domain controller 3 I am seeing lots of DHCP events
    Event ID 1063 - There are no IP addresses available for lease in the scope or superscope "GuestWireless-176
    Event ID 20287 - DHCP client request from 28E14CE87EFB was dropped since the applicable IP address ranges in scope/superscope GuestWireless-176 are out of available IP addresses
    Two questions:
    Once Domain Controller 3 rejects the DHCP request since it is out of addresses, will this request be fulfilled by one of my other two domain controllers?
    Is there any way to even out the leases on these DHCP servers? Not sure the mechanism behind a client choosing one DHCP server over another

    1 yes, the dhcp server who's scope is full will not do a dhcp
    'offer'
    2 dhcp that answers fastest with a 'offer' will win. A delay is configurable (but changes nothing
    about the root scenario were the fastest will win)
    Note that if the scopes overlap on the servers, they might not lease out all the addresses in the scope.
    I would enlarge the scope as you will want to fence against unavailability of one of the servers (or a network connection for that matter). you currently have more addresses leased out than any set of two of your servers can offer.
    MCP/MCSA/MCTS/MCITP

  • Running out of available connections

    Hi, we have been used OO4O for about 5 years in an ASP.NET application under Windows 2000, which appear to be fine.
    1.5 years ago we upgraded to Windows 2003 where we noticed that connections was not being returned back to the datapool. We had Microsoft help us identity that the OO40 COM object was the root cause (a threading issue for I can remember).
    I know that we have done everything in our code to close the connections, but to no still having the same problem(s). What we did was to try to obtain a connction from the datapool (50) which worked but for any reason this failed (99% of the time the connection pool was full) we would make a direct connection to the database (which we closed, destroyed etc).
    Over the last 6 months we have rewritten 60% of our Web application to improve performance using ODP.NET and still using OO40 for the remainder 40%. Becauase these new changes did not impact any existing functionality, we only done performance tests on the new framework (ASP.NET V2.0/V3.0, ODP.NET).
    We went live over yesturday (Monday 18/08/2008), with no problems until 1pm where we experienced errors on the old version (using OO4O).
    We then perform a load test (15 users for about 5-10 minutes) on the old version on one of these page(s) and noticed when the connections to the database hit 23 then these page(s) started to fail.
    As soon as these connection dropped, these page(s) started to work fine.
    We have 2 version of Oracle Client 9.2 and 10 (ODP.NET), could installing V10 along side 9 cause any problems?
    Any help would be great.
    Thank you

    Hello,
    Did you ckeck the TCP/IP port of the SQL Server service? Please verify you had configured the firewall on the computer to allow this instance of SQL Server to accept connections, for example Tcp port 1433, by default.
    The following thread is about same issue, you can try to the solution as Nitin post:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/27684811-1a59-4273-b7ed-3cc990b4f20a/sql-server-error-53-and-sql-server-error-17?forum=sqlgetstarted
    The following KB article may related to this issue:
    http://support.microsoft.com/kb/817179
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here.
    Fanny Liu
    TechNet Community Support

  • Running out of mutex

    Our company has been using BDB to store real-time traffic information (speed and incident). Traffic information, which we call a feed, comes in every three minutes for the entire US. We are creating databases for speed and incident separately. Each time we receive a feed, we creates DBs something like flow.traffic.5.db and incident.traffic.5.db. When DBs are becoming too old, we delete from the directory where we store them.
    We are having trouble in using the Berkeley DB library (version 4.5.20) in our application. In our production environment (on rh5 machines), our server crashes after some time, apparently because certain memory and/or other resources are being used up. We need assistance in getting to the cause of this problem, which we weren't seeing back when we used an earlier version of BDB (4.3.27).
    In my testing under Windows, I find that BDB soon runs out of available mutex locks, giving the message "unable to allocate memory for mutex; resize mutex region" from inside the __mutex_alloc_int() function. This is not under any kind of load at all, and a very simple configuration. The test is basically a repeated opening and closing of the databases in a serial fashion, so it is hard to see why the locks should be "used up" like that.
    The way we are using BDB is like this; first we create a DBENV and this DBENV will never be closed in run-time. Then, we create, use and delete db files under this DBENV. In the life period of a db file, many mutex will be used by DBENV to manage access to db files.
    We tried to increase the total mutex count by DBENV->mutex_set_max(int), but it just delay the crash.
    Does anyone have similar problem or remedy for this type of issue? Thanks in advance,

    Here are requeted information when there was a crash. I hope this help you to understand what we are experiencing .
    By the way, we are using BDB 4.5.20
    =============================================================================
    Stderr output was
    “unable to allocate memory for mutex; resize mutex region
    [errno: 12]: incident: Db::open: Cannot allocate memory
    [errno: 12]: incident: open: unretryable error
    terminate called after throwing an instance of 'DbException'
    what(): Error opening incident database -- session aborted!
    Aborted
    =============================================================================
    And,
    output of db_stat -x:
    3MB 792KB Mutex region size
    0 The number of region locks that required waiting (0%)
    4 Mutex alignment
    200 Mutex test-and-set spins
    34034 Mutex total count
    0 Mutex free count
    34034 Mutex in-use count
    34034 Mutex maximum in-use count
    Mutex counts
    0 Unallocated
    2 db handle
    1 env dblist
    1 env region
    1 lock region
    4 logical lock
    1 log filename
    1 log flush
    2 log region
    1231 mpoolfile handle
    2 mpool filehandle
    17 mpool file bucket
    1 mpool handle
    16381 mpool hash bucket
    16381 mpool buffer I/O
    1 mpool region
    1 unknown mutex type
    1 replication database
    1 replication region
    1 twister
    1 txn active list
    1 unknown mutex type
    1 txn region
    output of db_stat -t
    1/12437971 File/offset for last checkpoint LSN
    Sun Oct 26 20:19:28 2008 Checkpoint timestamp
    0x80001964 Last transaction ID allocated
    100 Maximum number of active transactions configured
    0 Active transactions
    2 Maximum active transactions
    6500 Number of transactions begun
    410 Number of transactions aborted
    6090 Number of transactions committed
    0 Snapshot transactions
    0 Maximum snapshot transactions
    0 Number of transactions restored
    40KB Transaction region size
    0 The number of region locks that required waiting (0%)
    Active transactions:
    output of db_stat -CA
    Default locking region information:
    4100 Last allocated locker ID
    0x7fffffff Current maximum unused locker ID
    9 Number of lock modes
    1000 Maximum number of locks possible
    1000 Maximum number of lockers possible
    1000 Maximum number of lock objects possible
    2 Number of current locks
    4 Maximum number of locks at any one time
    3 Number of current lockers
    6 Maximum number of lockers at any one time
    2 Number of current lock objects
    4 Maximum number of lock objects at any one time
    15458 Total number of locks requested
    15456 Total number of locks released
    0 Total number of locks upgraded
    2049 Total number of locks downgraded
    0 Lock requests not available due to conflicts, for which we waited
    0 Lock requests not available due to conflicts, for which we did not wait
    0 Number of deadlocks
    1000000 Lock timeout value
    0 Number of locks that have timed out
    1000000 Transaction timeout value
    0 Number of transactions that have timed out
    344KB The size of the lock region
    0 The number of region locks that required waiting (0%)
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    Lock REGINFO information:
    Lock Region type
    5 Region ID
    __db.005 Region name
    0xad907000 Original region address
    0xad907000 Region address
    0xad95cf40 Region primary address
    0 Region maximum allocation
    0 Region allocated
    REGION_JOIN_OK Region flags
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    Lock region parameters:
    32790 Lock region region mutex [0/64769 0% 11406/3086178512]
    1031 locker table size
    1031 object table size
    343720 obj_off
    335464 locker_off
    0 need_dd
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    Lock conflict matrix:
    0 0 0 0 0 0 0 0 0
    0 0 1 0 1 0 1 0 1
    0 1 1 1 1 1 1 1 1
    0 0 0 0 0 0 0 0 0
    0 1 1 0 0 0 0 1 1
    0 0 1 0 0 0 0 0 1
    0 1 1 0 0 0 0 1 1
    0 0 1 0 1 0 1 0 0
    0 1 1 0 1 1 1 0 1
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    Locks grouped by lockers:
    Locker Mode Count Status ----------------- Object ---------------
    1000 dd= 0 locks held 1 write locks 0 pid/thread 12222/2748504976
    1000 READ 1 HELD flow.navteq.410.db handle 0
    1001 dd= 0 locks held 0 write locks 0 pid/thread 12222/2748504976
    1002 dd= 0 locks held 1 write locks 0 pid/thread 12222/2748504976
    1002 READ 1 HELD sp_key.navteq.410.db handle 0
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    Locks grouped by object:
    Locker Mode Count Status ----------------- Object ---------------
    1000 READ 1 HELD flow.navteq.410.db handle 0
    1002 READ 1 HELD sp_key.navteq.410.db handle 0

  • I have a 4 yr. old iMac. I recently got a trojan on it that sent out emails to my address book. I got Norton Internet Security for Mac, and now my Mac is running slow, with way too many spinning beach balls of death. Was it a mistake to install Norton?

    I have a 4 yr. old iMac. I recently got a trojan on it that sent out emails to my address book. I got Norton Internet Security for Mac, and now my Mac is running slow, with way too many spinning beach balls of death. Was it a mistake to install Norton?

    yankeecat wrote:
    I have a 4 yr. old iMac. I recently got a trojan on it that sent out emails to my address book.
    There is no such Trojan or other malware known today that will do that using OS X nor has there ever been one. The most probable explanation is that somebody hacked into your e-mail account on the server, so you should change that password to something stronger right away. If it had come from your Mac then there would almost certainly be copies of those messages in your Sent Mail mailbox.

  • Why does my IPhone 4 tell me that it can't back up onto icloud as it has run out of storage space, but when i look at iCloud storage it tells me I have 4.7GB out of 5GB available?

    Why does my I-Phone 4 tell me that it can't back up onto i-Cloud as it has run out of storage space, but when I look at i-Cloud storage it tells me I have 4.7GB out of 5GB available?

    Welcome to the Apple Community.
    Have you checked how much space the backup will need.

  • I keep getting a Warning that I'm running out of disk space. Even after I deleted all of my photos and e-mail I still show 0 available. Please help!

    I keep getting a Warning that I'm running out of disk space. Even after I deleted all of my photos and e-mail I still show 0 available space. Please help!

    Correct KiltedTim the iPhone does not have a disk drive, and it does give an error message about running out of disk space. I'm here searching for how to clear it and/or what causes it. A friends 8gb iphone 3G has started giving her that message. It is not jailbroken, has no videos, 400 songs, 20 apps. The system information says there is 0 bytes free. There is 4.6 Gb of "other" data taking up the remaining free space. None of the few apps on the phone I expect would take up that much space with data. Even her emails and saved text messages shouldn't fill 4GB. New iPhone coming in the next couple of days. Easiest to just reset the old one after the upgrade and redownload the apps to make sure not to mess things up.

  • I have 54.84 GB available out of 55GB storage. Yet I get e mails warning me that i am running out of storage??

    I have 54.84 GB of storage available out of 50GB on my i cloud account. Yet i keep getting e mails from i cloud warning me that i am running out of storage. I bought £70 of extra storage to try and sort out this problem, but to no avail. Please tell me what to do!

    The problem could be that you don't have enough storage on the device itself, not on iCloud.  Go to Settings>General>Usage to see how much "Storage" you have available on the device.  Farther down the list is the available storage on iCloud.
    Also check:
    Go to Settings>iCloud>Storage & Backups>Manage Storage; there, tap the device you need info on and the resulting screen lists Backup Options with which apps store data on iCloud as well.
    A device needs many MB of storage in order to perform a backup to iCloud.
    Also see:  http://support.apple.com/kb/ht4847`

  • What happens when I run out of ip addresses on my airport extreme?

    Thank you in advance for your help.  I have several airport extreme wireless routers, and during peak useage I seem to have run out of ip leases.  The initial setup seems to have 200 leases available.  Can this be expanded?

    Hmmmm.  Well I'm not certain what to suggest, other than setting up another network and dividing the clients between the two.  Wish I knew more, since there might be some slick solution, but I'm afraid I've exhausted my knowleged base.

  • I got a message that I was running out of space. I tried moving my picture files to iCloud. The system was restored. However only some of my picture files are now available on either iPhoto or photos. How can I fi

    Mac Book Pro
    Operating System OSX version 10.9.5
    Memory 4GB
    The system sent a message that I was running out ospace.
    I tried moving files to iicloud the system shut down
    I reed the steps on the Repair Disk MacBook Pro
    I called 1 800 MY APPLE
    I was advised to take the computer into an Apple Store.
    The Technician got the system to startup and saved some of my files in a folder.
    However, these only represent a fraction of the photo files which I had saved on the system.
    How can I access the remaining files/

    restore your backup form when they were all there
    LN

  • Datagram Sockets possible without locally available IP addresses?

    Hi everybody,
    before starting to dig into socket programming for the next few months, I'd like to get some facts clear that don't clarify to me by consuming the developer handbooks.
    I would like to send datagram packets out on all interfaces without bound sockets, i.e. I want to start something similar to a DHCP broadcast. Is this possible with Java? AFAIK always sockets are required , even for datagram communication.
    Thank you

    Hi! Thanks for you replies.
    I'm trying to create some kind of alternative host configuration protocol with a reference implementation. Since the server software will run on Java for various purposes, it would be fine if also the client software could be implemented in Java. Therefore, I'd need the possibility to send out datagrams on unconfigured network interfaces.
    As far as I have understood the DatagramSocketAPI, there's always the need to have a local socket available (IP address + port number) to actually send data - is that true?
    Thank you!

  • Logic Pro 7 running out of memory!?!

    Hi!
    I am working on a project were I basically want to cut up every beat of a drum recording on 12 tracks and correct their timing individually (I have my reasons for doing this).
    This creates a decent amount of regions and for some reason Logic starts complaining about running short on memory and not having enough memory for the undo history.
    It bugs me because I am working on a Dual 2.5GHz G5 with 2 GB of RAM. Activity monitor says I have 480 MB of inactive memory and 1.25GB of free memory. Logic uses 300 MB of real memory and 762 MB of virtual memory. No other apps running.
    How can I make Logic use ALL the available memory?
    Is there a limit on the amount of memory that Logic can address? What is this limit, and how much memory is reasonably motivated for a PM running Logic?
    How about plug ins? Do they have separate memory spaces not limited by Logics potential limits? "Drumkit from ****" can by itself use a couple of Gigs of RAM if available...
    Thanks in advance!
    /Jont Olof

    Jont Olof Lyttkens, "Logic Pro 7 running out of memory!?!" #5, 03:19pm Sep 7, 2005 CDT
    However in the earlier days, running under Mac OS pre 9.x the ability to allocate memory to a specific application could increase the amount for the song event memory
    No, it didn't. It increased application memory, but the song event memory remained the same, just as it does now.
    I think, though, that with all Logic's new features, there is more actual data in an equivalent song, so the limit may be coming earlier. (I can't be sure of that though)
    I know you don't want to, but did you at least try reducing the undo history size (in prefs) ?
    Does deleting undo history and then saving help ?
    Another thing to consider, although I don't think it generates warnings like you are seeing, is Virtual Memory. If the computer has been up for a long time, running memory-intensive apps, like Logic, then it can get overloaded (too many pageouts) which can slow things down a lot. If you do notice things getting slower, then restarting the computer will flush the Swap File and get things going again.

  • Run out of licenses, can do 20 reports in 20 minutes before receiving error

    <p>I have a problem with running out of Licenses when using our ASP.NET Web Application.</p><p>Our Web Application exports and opens a Crystal Report to PDF when the user clicks on the report link.  Unfortunately we have only a certain number of licenses available and after each use it&#39;s useless for about 20 minutes!  In a 20 minute period we are able to run up to 20 reports before getting the "out of licenses" error page. </p><p>So if you have 5 users going through multiple reports in a short time we&#39;ve run out of licenses and they have to wait 20 minutes before trying again!?! </p><p>I am trying to find a means of improving this and have a few thoughts on how:</p><ol><li>Close the license being used (and make available to somebody else) once the report is created. <br /><em>We generally do not have 20 <u>concurrent </u>users at any time but in a 20 minute time span we can have over 20 report requests.</em><br /> <br /></li><li>Shorten the time before the license becomes available again (like to 5 minutes) <br /><em>Long enough for even the larger reports to run, but short enough that the chances of 20 reports being requested in a 5 minute period is slim.<br /> <br /></em> </li><li>Save the License use for that particular USER for the period of time (so if they open 1 or 10 reports it all utilizes the same License). <br /><em>This would work fine because it&#39;s a small office of just over 20 users and the chance of everybody accessing reports in that same 20 minutes is very low.<br /> <br /></em> </li></ol><p> If anybody has any ideas, suggestions, hints, or "it can&#39;t be done" I would greatly appreciate it!  We haven&#39;t found anything in the RAS settings and I haven&#39;t found anything that effects the LICENSING in .NET (and using Report.Close() does not free up the license).</p><p> Thanks,</p><p>~Drew </p>

    <p>Alright, I seem to have some success in fixing this issue, though it isn&#39;t the 100% best solution. </p><p>I create the ReportDocument in the Global.asax.vb file </p><font size="1" color="#0000ff">
    <blockquote />Dim<font size="1"> crpt </font><font size="1" color="#0000ff">As</font><font size="1"> </font><font size="1" color="#0000ff">New</font><font size="1"> CrystalDecisions.CrystalReports.Engine.ReportDocument<br /><font size="1">Session.Contents.Add("crpt", crpt)</font></font></p></font></blockquote><p><font size="1">and then I re-use this in the page that exports the file to PDF and displays it.  Since this is created as a session-level object in Global.asax.vb I reference it in the display page as Session("crpt") and I clean it up by the end of the page but I don&#39;t make the session object into nothing.</font></p><blockquote><p><font size="1">If Not IsNothing(Session("crpt")) Then</font></p><blockquote><p><font size="1">Session("crpt").Close()<br />System.Runtime.InteropServices.Marshal.ReleaseComObject(Session("crpt"))</font></p></blockquote><p><font size="1">End If </font></p></blockquote><p><font size="1">Then on Session End in the Global.asax.vb I clean up the Session variable and call the garbage collection.</font></p><blockquote><p><font size="1">If Not IsNothing(Session("crpt")) Then</font></p><blockquote><p><font size="1">Session("crpt").Close()<br />System.Runtime.InteropServices.Marshal.ReleaseComObject(Session("crpt"))<br />Session("crpt") = Nothing<br />Session("crpt").Dispose()</font></p></blockquote><p><font size="1">End If<br />GC.Collect() </font></p></blockquote><p><font size="1">It seems to be working at this time though there is the limitation that now everybody who enters the web application gets an object whether or not they are going to run reports. </font></p><p><font size="1">The more ideal situation would be for the object to not be created until the user enters the report page or have the page that creates/displays the report to check if the object exists and if it does not to create the object.</font></p>

  • Mavericks Mail Kernel System Has Run Out of Application Memory

    I have a new Mavericks late 2013 MBP.  When I got the computer, I used Migration Assistant to transfer everything from my late 2008 MacBook to the new MBP.  Now when I launch Mail, my memory use skyrockets and within a minute or so, I get a "run out of application memory" error message.  Soon after the computer stops working until I reboot.  Activity Monitor shows Memory Pressure at its redline max, Virtual Memory at about 70 GB, Swap Used 20 GB, Compressed 10 MB.  The processes using all the memory are kernel-task 10 GB and mds_stores 5 GB.  However, Spotlight is fully indexed and mds is inactive until I launch Mail.
    Interestingly, it happens even if I quit Mail immediately after launching it - the Mail window doesn't even need to open; the memory ust still climbs.  But it only happens with Mail; all other applications work fine.  Also, it does not happen if I boot in Safe Mode or if I log in using a different user account.
    I have spend many hours on the phone with the Apple tech guys, they sent log files to Apple engineering, and none can figure this out.  Their solution is to work around by creating a new user and transfer files over - not an elegant solution...
    I ran the diagnostic suggested by Link Davis; results copied below. I also ran the Etresoft diagnostic both before and after launching Mail.  Results also copied below.
    I am guessing that a 3rd party application in my user area causes Spotlight to loose control, when Mail is launched, perhaps trying to index 10,000 emails, but I really have no idea!
    Any help would be GREATLY appreciated!
    Link Davis Diagnostic
    Step 1
    nothing
    Step 2
    com.google.keystone.daemon
    com.adobe.fpsaud
    Step 3
    com.google.keystone.system.agent
    com.displaylink.useragent
    com.zeobit.MacKeeper.Helper
    com.spotify.webhelper
    com.facebook.videochat.rossmeador.updater
    com.adobe.ARM.ad895013aeb33ea6e968d9fdc06c0eb42c7c2a5229d98d64ad002716
    com.adobe.ARM.202f4087f2bbde52e3ac2df389f53a4f123223c9cc56a8fd83a6f7ae
    com.adobe.AAM.Scheduler-1.0
    Step 4
    /Library/Components:
    /Library/Extensions:
    ATTOCelerityFC8.kext
    ATTOExpressSASHBA2.kext
    ATTOExpressSASRAID2.kext
    ArcMSR.kext
    CalDigitHDProDrv.kext
    HighPointIOP.kext
    HighPointRR.kext
    PromiseSTEX.kext
    SoftRAID.kext
    /Library/Frameworks:
    .DS_Store
    AEProfiling.framework
    AERegistration.framework
    Adobe AIR.framework
    AudioMixEngine.framework
    DivX Toolkit.framework
    HPDeviceModel.framework
    HPPml.framework
    HPServicesInterface.framework
    HPSmartPrint.framework
    HPSmartX.framework
    NyxAudioAnalysis.framework
    PluginManager.framework
    Skype.framework
    TSLicense.framework
    iLifeFaceRecognition.framework
    iLifeKit.framework
    iLifePageLayout.framework
    iLifeSQLAccess.framework
    iLifeSlideshow.framework
    iTunesLibrary.framework
    /Library/Input Methods:
    /Library/InputManagers:
    Ecamm
    /Library/Internet Plug-Ins:
    AdobePDFViewer.plugin
    AdobePDFViewerNPAPI.plugin
    AmazonMP3DownloaderPlugin101750.plugin
    DRM Plugin.bundle
    Default Browser.plugin
    DirectorShockwave.plugin
    Disabled Plug-Ins
    DivXBrowserPlugin.plugin
    Flash Player.plugin
    Flip4Mac WMV Plugin.plugin
    Flip4Mac WMV Plugin.webplugin
    GarminGpsControl.plugin
    Google Earth Web Plug-in.plugin
    JavaAppletPlugin.plugin
    OfficeLiveBrowserPlugin.plugin
    Quartz Composer.webplugin
    QuickTime Plugin.plugin
    RealPlayer Plugin.plugin
    Silverlight.plugin
    flashplayer.xpt
    googletalkbrowserplugin.plugin
    iPhotoPhotocast.plugin
    npdivx.xpt
    npgtpo3dautoplugin.plugin
    nsIQTScriptablePlugin.xpt
    o1dbrowserplugin.plugin
    /Library/Keyboard Layouts:
    /Library/LaunchAgents:
    com.adobe.AAM.Updater-1.0.plist
    com.displaylink.useragent.plist
    com.google.keystone.agent.plist
    /Library/LaunchDaemons:
    com.adobe.fpsaud.plist
    com.displaylink.usbnivolistener.plist
    com.google.keystone.daemon.plist
    /Library/PreferencePanes:
    DivX.prefPane
    Flash Player.prefPane
    Flip4Mac WMV.prefPane
    /Library/PrivilegedHelperTools:
    /Library/QuickLook:
    GBQLGenerator.qlgenerator
    iBooksAuthor.qlgenerator
    iWork.qlgenerator
    /Library/QuickTime:
    .DS_Store
    AppleIntermediateCodec.component
    AppleMPEG2Codec.component
    macam.app
    macam.component
    /Library/ScriptingAdditions:
    /Library/Spotlight:
    .DS_Store
    GBSpotlightImporter.mdimporter
    LogicPro.mdimporter
    Microsoft Office.mdimporter
    iBooksAuthor.mdimporter
    iWork.mdimporter
    /Library/StartupItems:
    HP IO
    /etc/mach_init.d:
    /etc/mach_init_per_login_session.d:
    /etc/mach_init_per_user.d:
    Library/Address Book Plug-Ins:
    SkypeABDialer.bundle
    SkypeABSMS.bundle
    Library/Fonts:
    Library/Input Methods:
    .localized
    Library/Internet Plug-Ins:
    CitrixOnlineWebDeploymentPlugin.plugin
    FacebookVideoCalling.bundle
    Picasa.plugin
    WebEx.plugin
    WebEx64.plugin
    Library/Keyboard Layouts:
    Library/LaunchAgents:
    com.adobe.AAM.Updater-1.0.plist
    com.adobe.ARM.202f4087f2bbde52e3ac2df389f53a4f123223c9cc56a8fd83a6f7ae.plist
    com.adobe.ARM.ad895013aeb33ea6e968d9fdc06c0eb42c7c2a5229d98d64ad002716.plist
    com.facebook.videochat.rossmeador.plist
    com.spotify.webhelper.plist
    com.zeobit.MacKeeper.Helper.plist
    Library/PreferencePanes:
    Library/QuickTime:
    Google Camera Adapter 0.component
    Google Camera Adapter 1.component
    Library/Services:
    .localized
    Step 5
    Nothing
    Etresoft Before Launching Mail
    Hardware Information:
    MacBook Pro (Retina, 13-inch, Late 2013)
    MacBook Pro - model: MacBookPro11,1
    1 2.8 GHz Intel Core i7 CPU: 2 cores
    16 GB RAM
    Video Information:
    Intel Iris - VRAM: 1024 MB
    Audio Plug-ins:
    BluetoothAudioPlugIn: Version: 1.0
    AirPlay: Version: 1.9
    AppleAVBAudio: Version: 2.0.0
    iSightAudio: Version: 7.7.3
    Startup Items:
    HP IO - Path: /Library/StartupItems/HP IO
    System Software:
    OS X 10.9 (13A2093) - Uptime: 0 days 0:6:5
    Disk Information:
    APPLE SSD SM1024F disk0 : (1 TB)
    EFI (disk0s1) <not mounted>: 209.7 MB
    Macintosh HD (disk0s2) /: 999.7 GB (761.42 GB free)
    Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
    Apple Internal Memory Card Reader
    Apple Inc. BRCM20702 Hub
    Apple Inc. Bluetooth USB Host Controller
    Apple Inc. Apple Internal Keyboard / Trackpad
    FireWire Information:
    Thunderbolt Information:
    Apple Inc. thunderbolt_bus
    Apple Inc. Thunderbolt to Gigabit Ethernet Adapter
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
    [loaded] com.adobe.fpsaud.plist
    [not loaded] com.displaylink.usbnivolistener.plist
    [loaded] com.google.keystone.daemon.plist
    Launch Agents:
    [not loaded] com.adobe.AAM.Updater-1.0.plist
    [failed] com.displaylink.useragent.plist
    [loaded] com.google.keystone.agent.plist
    User Launch Agents:
    [loaded] com.adobe.AAM.Updater-1.0.plist
    [loaded] com.adobe.ARM.[...].plist
    [loaded] com.adobe.ARM.[...].plist
    [loaded] com.facebook.videochat.[redacted].plist
    [loaded] com.spotify.webhelper.plist
    [loaded] com.zeobit.MacKeeper.Helper.plist
    User Login Items:
    None
    3rd Party Preference Panes:
    DivX
    Flash Player
    Flip4Mac WMV
    Internet Plug-ins:
    AdobePDFViewer.plugin
    AdobePDFViewerNPAPI.plugin
    AmazonMP3DownloaderPlugin101750.plugin
    Default Browser.plugin
    DirectorShockwave.plugin
    DivXBrowserPlugin.plugin
    Flash Player.plugin
    FlashPlayer-10.6.plugin
    Flip4Mac WMV Plugin.plugin
    GarminGpsControl.plugin
    Google Earth Web Plug-in.plugin
    googletalkbrowserplugin.plugin
    iPhotoPhotocast.plugin
    JavaAppletPlugin.plugin
    npgtpo3dautoplugin.plugin
    o1dbrowserplugin.plugin
    OfficeLiveBrowserPlugin.plugin
    QuickTime Plugin.plugin
    RealPlayer Plugin.plugin
    Silverlight.plugin
    User Internet Plug-ins:
    CitrixOnlineWebDeploymentPlugin.plugin
    Picasa.plugin
    WebEx.plugin
    WebEx64.plugin
    Bad Fonts:
    None
    Time Machine:
    Auto backup: NO
    Time Machine not configured!
    Top Processes by CPU:
        2% WindowServer
        1% EtreCheck
        0% coreservicesd
        0% Dock
        0% CoreServicesUIAgent
        0% imagent
    Top Processes by Memory:
    344 MB   mds_stores
    213 MB   Safari
    115 MB   Dock
    82 MB    mdworker
    66 MB    mds
    33 MB    MacKeeper Helper
    33 MB    PluginProcess
    33 MB    WindowServer
    16 MB    com.apple.dock.extra
    16 MB    storeagent
    Virtual Memory Statistics:
    12.72 GB Free RAM
    1.77 GB  Active RAM
    176 MB   Inactive RAM
    1.33 GB  Wired RAM
    660 MB   Page-ins
    0 B      Page-outs
    Immediately After Launching Mail
    Hardware Information:
    MacBook Pro (Retina, 13-inch, Late 2013)
    MacBook Pro - model: MacBookPro11,1
    1 2.8 GHz Intel Core i7 CPU: 2 cores
    16 GB RAM
    Video Information:
    Intel Iris - VRAM: 1024 MB
    Audio Plug-ins:
    BluetoothAudioPlugIn: Version: 1.0
    AirPlay: Version: 1.9
    AppleAVBAudio: Version: 2.0.0
    iSightAudio: Version: 7.7.3
    Startup Items:
    HP IO - Path: /Library/StartupItems/HP IO
    System Software:
    OS X 10.9 (13A2093) - Uptime: 0 days 0:8:39
    Disk Information:
    APPLE SSD SM1024F disk0 : (1 TB)
    EFI (disk0s1) <not mounted>: 209.7 MB
    Macintosh HD (disk0s2) /: 999.7 GB (761.39 GB free)
    Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
    Apple Internal Memory Card Reader
    Apple Inc. BRCM20702 Hub
    Apple Inc. Bluetooth USB Host Controller
    Apple Inc. Apple Internal Keyboard / Trackpad
    FireWire Information:
    Thunderbolt Information:
    Apple Inc. thunderbolt_bus
    Apple Inc. Thunderbolt to Gigabit Ethernet Adapter
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    [failed] com.apple.pictd.plist
    Launch Daemons:
    [loaded] com.adobe.fpsaud.plist
    [not loaded] com.displaylink.usbnivolistener.plist
    [loaded] com.google.keystone.daemon.plist
    Launch Agents:
    [not loaded] com.adobe.AAM.Updater-1.0.plist
    [failed] com.displaylink.useragent.plist
    [loaded] com.google.keystone.agent.plist
    User Launch Agents:
    [loaded] com.adobe.AAM.Updater-1.0.plist
    [loaded] com.adobe.ARM.[...].plist
    [loaded] com.adobe.ARM.[...].plist
    [loaded] com.facebook.videochat.[redacted].plist
    [loaded] com.spotify.webhelper.plist
    [loaded] com.zeobit.MacKeeper.Helper.plist
    User Login Items:
    None
    3rd Party Preference Panes:
    DivX
    Flash Player
    Flip4Mac WMV
    Internet Plug-ins:
    AdobePDFViewer.plugin
    AdobePDFViewerNPAPI.plugin
    AmazonMP3DownloaderPlugin101750.plugin
    Default Browser.plugin
    DirectorShockwave.plugin
    DivXBrowserPlugin.plugin
    Flash Player.plugin
    FlashPlayer-10.6.plugin
    Flip4Mac WMV Plugin.plugin
    GarminGpsControl.plugin
    Google Earth Web Plug-in.plugin
    googletalkbrowserplugin.plugin
    iPhotoPhotocast.plugin
    JavaAppletPlugin.plugin
    npgtpo3dautoplugin.plugin
    o1dbrowserplugin.plugin
    OfficeLiveBrowserPlugin.plugin
    QuickTime Plugin.plugin
    RealPlayer Plugin.plugin
    Silverlight.plugin
    User Internet Plug-ins:
    CitrixOnlineWebDeploymentPlugin.plugin
    Picasa.plugin
    WebEx.plugin
    WebEx64.plugin
    Bad Fonts:
    None
    Time Machine:
    Auto backup: NO
    Time Machine not configured!
    Top Processes by CPU:
        98% mds_stores
        31% Mail
        3% WindowServer
        1% opendirectoryd
        1% EtreCheck
        1% fontd
        0% usernoted
        0% coreservicesd
        0% Dock
        0% mDNSResponder
    Top Processes by Memory:
    9.67 GB  mds_stores
    262 MB   Mail
    213 MB   Safari
    115 MB   Dock
    98 MB    mds
    66 MB    ReportCrash
    66 MB    WindowServer
    49 MB    Notes
    49 MB    SystemUIServer
    33 MB    MacKeeper Helper
    Virtual Memory Statistics:
    1.54 GB  Free RAM
    12.70 GB Active RAM
    396 MB   Inactive RAM
    1.37 GB  Wired RAM
    954 MB   Page-ins
    0 B      Page-outs

    Have you looked into Activity Monitor utility to see what system resources exist and how they are being allocated to applications, the OS X, and other background functions?
    You could boot in SafeBoot (shift key held through startup) and run Disk Utility> repair disk permissions. That can tell you a few things about your hard disk drive, capacities, and it may not hurt to repair disk permissions. Restart normally when done.
    Or try & boot from the Install DVD and use the version of Disk Utility in there to attempt to 'repair disk' while the HDD is unmounted. Then choose Startup manager to boot from the HDD and ignore the DVD on a restart.
    Is your computer as listed, a PowerPC (pre-intel architecture)
    Apple product, with a G4/G5 CPU from before 2006? If so,
    a host could move the discussion from this Intel area.
    Without more information, a failure of traction results from speculation.
    Is your computer still running OS X 10.5.3, or is that 10.5.8+ now?
    Good luck & happy computing!
    edited 2x

  • Can you archive old calendar items in Entourage so you don't run out of space on your Blackberry?

    Hi everyone,
    I have a Sprint Pearl 8130 and I am syncing with PocketMac to Entourage 2004 on an iBook G4 running OS 10.3.
    Most of my syncing issues are minor (for some reason, in contacts, work and home email addresses switch fields, but I can live with that) and I don't have too many complaints about PocketMac for now....
    My question is - Does anyone know how to archive old calendar items so that my Blackberry doesn't run out of space? I have calendar items going back to the beginning of 2008.  I don't need past calendar items on my Blackberry, except for reoccurring items, like birthdays and such, and maybe a month's worth of old appointments just for reference.  My Blackberry has run out of space a couple of times and when it deletes the appointments from my Blackberry, syncing wants to either delete from the Mac or restore to the Blackberry.  I know you can do this with a Palm and their Palm software, since I used to have one and I was able to archive items older than a week.  Then you would be able to access them in a separate archive profile.
    I have searched everywhere and the closest thing I can find is to purchase Missing Sync and set to match my sync date range.  https://support.markspace.com/index.php?_m=knowledgebase&_a=viewarticle&kbarticleid=327.  But that doesn't really solve my issue of running out of space on my Blackberry.  The other thing that I could think of is to export the calendar items into a .rge file, then delete the calendar items from there, sync, and have PocketMac remove items from my Blackberry, but it would be a pain to easily access old calendar items.
    I appreciate any thoughts, ideas and especially solutions!

    I have the exact opposite issue you mentioned
    my client wants his archived calender items to be synched to his 8830 world wide ed.
    he is running RIM software (DesktopManager) v 6.4
    BES 2007
    current issue is that his archived old calendars are not synchronizing to his handheld; we tried to force his PC to synch those items manually through cable, which didn't help, since our BES policy force waireless synch policy to the device and wireless synch never can see the archived items files
    I think if you can set the option on your device so it turns on the calendar wireless synch, and also make sure MAC does not select archive to synch
    Calendar > Options > General settings or /Wireless synch set to ON;
    if you running BES set Calendar Wireless synch off

Maybe you are looking for

  • FCPX 10.0.3 will not open after installing mountain lion

    Just installed Mountain Lion.  FCPX 10.0.3 was working fine prior to installation.  Nothing else changed.  Anyone else had this problem?  Thanks much. Here is the crash report: Process:         Final Cut Pro [365] Path:            /Applications/Final

  • Photo Stream is not working in Apple TV.

    After upgrading to 5.1, Photo Stream is not working.  An "Unable to sign in. The iCloud Terms of Service have changed" indication appears when trying to connect. What should i do? Thanks.

  • Naming Exception: Name not found for local interface in 8.1

    Hi, I am trying to use local interfaces for my ejbs to call from my web application as both are running on the same server. I am migrating from 6.1 to 8.1 and with 6.1, I was using the remote interfaces. Now, I am planning to use local interfaces fro

  • Stereo miking two actors

    I have 2 mics and was wondering how best to place them so as to get a realistic stereo field from recording 2, maybe 3 actors, as live. My first thought was to treat them as one big acoustic guitar and place the capsules close together and at 90 degr

  • HP Photosmart D7160

    I bought an HP photosmart D7160 a week and a half ago. There is no driver for it--it isn't in the list of drivers that come with macbooks, the one on the cd doesn't work. HP has support for macs that is about as helpful as trying to solve an algebra