Pacget: Super fast pacman downloads

I spent all day (yes I'm a slow horrible programmer) writing this scrip. It takes the download url from pacman, then looks up the mirror list in /etc/pacman.d/<repo> and adds them all as mirrors to aria2.
What ends up happening is aria2c connects to 10-20 servers downloading from all of them at the same time, which should give anyone on broadband a huge boost in download speed. This boosted my download speeds from 100-300KB/s to 2,000KB/s (my connections limit).
http://wiki.archlinux.org/index.php/Fas … ror_Script
Hope you guys like it.
ps: would making a package out of this be overkill?, like one that auto installs everything?

noriko, I liked your idea with changing the testing repo. I made it so the script now tests if the /etc/pacman.d/repo file exists, if it does it'll just use it, otherwise it'll just do one mirror. So if you have an /etc/pacman.d/testing, it should now use it.
I mad a few revisions that I want to post up on here first to get some feedback on it before I change the wiki.
Whats changed is the repo check, and I made it so:
less then 5mb = 3 mirrors
less then 10mb = 7 mirrors
greater then 10mb = 30 mirrors
Also to clearify:
Any repo database file will only use one mirror (they are usually very small and not worth being split up).
Sorry for the messy script, I'll clean it up soon and add comments/allow easy modifications to it.
/usr/bin/pacget
#!/bin/bash
#pacget script
rm -f *.aria2
cachedir=/var/cache/pacman/pkg
file=$(awk -F '/' '{ print $NF }' <<<$1)
echo Downloading: $file|sed 's,/,,'
#exit 0
repo=$(awk -F '/' '{x=NF-3 } { print $x }' <<<$1)
echo repo: $repo
#exit 0
function numir {
size=$(sed -n '/^%CSIZE%$/{n;p}' /var/lib/pacman/$repo/$(sed 's/.pkg.tar.gz//'<<< $file)/desc)
if [[ $size -lt 5000000 ]]; then
m=3
elif [[ $size -lt 10000000 ]]; then
m=7
else
m=30
fi
if [[ $2 = *.db.tar.gz.part || ! -f /etc/pacman.d/$repo ]]; then
echo "(using one mirror)"
mirrors=$1
else
if [ -f /etc/pacman.d/$repo ]; then
numir
mirrors=$(sed -n 's/^Server = //; s,$,/'"$file"', ; /^ftp/p; /^http/p' /etc/pacman.d/$repo|head -$m)
fi
fi
aria2c -t20 -m2 -l /root/log $mirrors -o $file.pacget
if [ -f $cachedir/$file.pacget.aria2 ]; then
rm $cachedir/$file.pacget $cachedir/$file.pacget.aria2
exit 0
fi
mv $file.pacget $2
exit 0
PS: Tell me if I should post this version up on the wiki.
PSS:
noriko wrote:
2000kb/s?? r u sure?
i used it, works perfectly btw Wink but it's not enhancing anything lol.. my download is still still stuck at 240-5 kb/s ..
hmm.. might me an isp limit of some sorts....
:: Retrieving packages from extra...
Downloading: openoffice-base-2.0.4-1.pkg.tar.gz
repo: extra
6,816,112/127,700,347 Bytes 5% 02m04s 2001.86 KB/s 24 connections

Similar Messages

  • We a super fast internet connection, how ever, try to download Adobe creative photoshop for desktop, download is runnig 2 hours (i don`t see any progress

    we a super fast internet connection, how ever, try to download Adobe creative photoshop for desktop, download is runnig 2 hours (i don`t see any progress

    Dear Reader,
    Concerns "any specific error messages " no but i was using firefox
    browser.... and  Chrome no response dind`t work at all!!!
    So if found a tiny measage on pag. 10 in Google.. i heave to use
    Internet Explorer!!!!!!!!!!!!
    Op 14-11-2014 0:24, Jeff A Wright schreef:
    >
          we a super fast internet connection, how ever, try to download
          Adobe creative photoshop for desktop, download is runnig 2 hours
          (i don`t see any progress
    created by Jeff A Wright
    <https://forums.adobe.com/people/JeffAWright> in /Creative Cloud
    Download & Install/ - View the full discussion
    <https://forums.adobe.com/message/6927903#6927903>

  • Just bought an ipad mini I have synced it with my itunes but when I go to play my music it just flashes threw all the songs or albums or artists like it is on super fast shuffle until it finds a song it would like to play.  need help please

    Just bought an ipad mini I have synced it with my itunes but when I go to play my music it just flashes threw all the songs or albums or artists like it is on super fast shuffle until it finds a song it would like to play.  need help please

    Since you are a new iPad user .....
    Complete guide to using iOS 6
    http://howto.cnet.com/ios-6-complete-guide/
    Guide to Built-In Apps on iOS
    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/guide-to- built-in-apps-ios
    You can download a complete iOS 5 iPad User Guide and iOS 6 iPad User Guide here: http://support.apple.com/manuals/ipad/
    Also, Good Instructions http://www.tcgeeks.com/how-to-use-ipad-2/
    Apple - iPad - Guided Tours
    http://www.apple.com/ipad/videos/
    Apple iPad Guided Tours - Watch the videos see all the amazing iPad apps in action. Learn how to use FaceTime, Mail, Safari, Videos, Maps, iBooks, App Store, and more.
    http://www.youtube.com/watch?v=YT2bD0-OqBM
    http://www.youtube.com/watch?v=ROY4tLyNlsg&feature=relmfu
    http://www.youtube.com/watch?v=QSPXXhmwYf4&feature=relmfu
    How to - Articles & User Guides & Tutorials
    http://www.iphone-mac.com/index.php/Index/howto/id/4/type/select
    iPad How-Tos  http://ipod.about.com/lr/ipad_how-tos/903396/1/
    You can download an iPad User Guide to the iPad from the iTunes store.
     Cheers, Tom

  • Even more faster pacman searches ??

    UPDATED: version 0.2.1
           rewritten synchronize function. it is more robust now.
    UPDATED: version 0.2
          fixes a SERIOUS bug:
          directories of the db were not deleted when the db is synchronize back in case some packages had been removed. (i am a newbie with the use of rsync) hopefully that bug will not hit many people because the number of user of the script might be very low. 
         If you're the user hit by the bug: for upgraded package simply delete the duplicate directory in /var/lib/pacman/local
         for removed package, you have to track which one have been removed, and remove the directory in /var/lib/pacman/local.
        I will update my python script to check for that (see below in the thread)
    UPDATED: version 0.1.2
            - add a synchronize option (it simply synchronize back the db to disk but keep pacman-tmpfs running)
            -basic refactoring (bad ?)
    UPDATED: version 0.1.1
            - add a restart option
            - refactoring: use a cleanup fonction
    hi,
    i was looking at those pacman-cache and pacman-drive and i was wondering why do they use ext2 fs in a loopback ? and i already have ext3 for my / so if i use one of them will it give me any speed improvement ?
    So it thought why not use tmpfs. all in ram it must be super fast !   :shock:
    so i made pacman-tmpfs (i have not thought very long to find a name  )
    it is a daemon script to be placed in /etc/rc.d and to be activated in DAEMONS of /etc/rc.conf (or manually run first may be)
    it copies the pacman db in a tmpfs filesystem and move it over the pacman db. DO NOT PANIC. it is not overwritten. and then when you stop the daemon it sync back the change to the original pacman db
    $ time pacman -Ss pacman
    real    0m1.229s
    user    0m0.596s
    sys     0m0.568s
    you could still use pacman-optimize but pacman-tmpfs must be stopped so that it does something usefull. Using pacman-optimize will give you  better start-up time for pacman-tmpfs.
    do not use pacman-tmpfs while running pacman-drive or pacman-cache.
    I run pacman-tmpfs for only 1 day. so it lacks some big testing . be carefull !
    it need testers. BACKUP your pacman db PLEASE !
    i have not tested the catching error code i have written in it.
    what do you think of it ? please tell me ! :-)
    #!/bin/sh
    # /etc/rc.d/pacman-tmpfs Version 0.2.1 2006-12-16
    # under the WTFPL. see http://sam.zoy.org/wtfpl/
    # DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
    # Version 2, December 2004
    # Copyright (C) 2006 solsTiCe d'Hiver
    # <solstice>
    # Everyone is permitted to copy and distribute verbatim or modified
    # copies of this license document, and changing it is allowed as long
    # as the name is changed.
    # DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
    # TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
    # 0. You just DO WHAT THE FUCK YOU WANT TO.
    umask 022
    . /etc/rc.conf
    . /etc/rc.d/functions
    pacman_db=/var/lib/pacman
    #db_size=256M
    # look for a command to synchronize directory
    if which dirsync >/dev/null 2>&1 ;then
    sync_cmd="dirsync -q"
    # elif which mirdir >/dev/null 2>&1 ;then
    # sync_cmd="mirdir -e none"
    elif which rsync >/dev/null 2>&1 ; then
    sync_cmd="rsync -a --delete"
    fi
    if [ -z "$sync_cmd" ] ; then
    echo "Cannot be run without rsync or dirsync or mirdir"
    exit 1
    fi
    if [ -f /tmp/pacman.lck ] ;then
    echo "Cannot be run while pacman is running"
    exit 1
    fi
    mount_move() {
    local ret
    # fix a bug in mount ???
    mount --move "$1" "$2"
    ret=$?
    umount "$1" 2>/dev/null || true
    return $ret
    _backup() {
    # copy db in /root as backup and give up
    backup_dir=/root/pacman-tmpfs-backup-`date "+%Y-%m-%d_%H:%M:%S"`
    mkdir -p "$backup_dir"
    cp -a $1/* "$backup_dir"
    umount $1
    logger -s -t '[pacman-tmpfs]' -p local0.crit "Cannot synchronize back the database"
    logger -s -t '[pacman-tmpfs]' -p local0.crit "You need to manually restore the content of $backup_dir into $pacman_db"
    logger -s -t '[pacman-tmpfs]' -p local0.crit "You need to delete /var/run/daemon/pacman-tmpfs once that is done."
    start() {
    # lock pacman db
    touch /tmp/pacman.lck
    tmp_db=`mktemp -d -t tmp_db.XXXXXX`
    # create the tmp fs
    mount -t tmpfs -o size=$db_size,mode=0755 none $tmp_db
    # copy the db into the tmpfs
    cp -a $pacman_db/* $tmp_db
    # replace the pacman db with tmpfs one
    mount_move $tmp_db $pacman_db
    rmdir $tmp_db
    # unlock pacman db
    rm -f /tmp/pacman.lck
    stop() {
    #lock pacman db
    touch /tmp/pacman.lck
    tmp_db=`mktemp -d -t tmp_db.XXXXXX`
    # move the tmpfs db so that we can copy the changes back to home
    mount_move $pacman_db $tmp_db
    $sync_cmd $tmp_db/ $pacman_db
    if [ $? -gt 0 ] ;then
    _backup $tmp_db
    stat_fail
    return 1
    fi
    umount $tmp_db
    rmdir $tmp_db
    # unlock pacman db
    rm -f /tmp/pacman.lck
    synchronize() {
    # we create another tmpfs, copy into it the db (tmpfs -> tmpfs)
    #lock pacman db
    touch /tmp/pacman.lck
    tmp_db=`mktemp -d -t tmp_db.XXXXXX`
    # create a new tmp fs
    mount -t tmpfs -o size=$db_size,mode=0755 none $tmp_db
    # copy the db(old tmpfs) into the new tmpfs
    cp -a $pacman_db/* $tmp_db
    # get rid off the old tmpfs
    umount $pacman_db
    # we can copy the changes back to home
    $sync_cmd $tmp_db/ $pacman_db
    if [ $? -gt 0 ] ;then
    _backup $tmp_db
    stat_fail
    return 1
    fi
    # now move back inplace the new tmpfs db
    mount_move $tmp_db $pacman_db
    rmdir $tmp_db
    rm -f /tmp/pacman.lck
    case "$1" in
    start)
    if ck_daemon pacman-tmpfs ;then
    stat_busy "Starting pacman-tmpfs ..."
    start
    if [ $? -gt 0 ] ;then
    stat_fail
    else
    add_daemon pacman-tmpfs
    stat_done
    fi
    else
    stat_fail
    fi
    stop)
    if ! ck_daemon pacman-tmpfs ;then
    stat_busy "Stopping pacman-tmpfs. Please wait ..."
    stop
    if [ $? -gt 0 ] ;then
    stat_fail
    else
    rm_daemon pacman-tmpfs
    stat_done
    fi
    else
    stat_fail
    fi
    restart)
    if ! ck_daemon pacman-tmpfs ;then
    stat_busy "Stopping pacman-tmpfs. Please wait ..."
    stop
    if [ $? -gt 0 ] ;then
    stat_fail
    else
    rm_daemon pacman-tmpfs
    stat_done
    sleep 1
    stat_busy "Starting pacman-tmpfs ..."
    start
    if [ $? -gt 0 ] ;then
    stat_fail
    else
    add_daemon pacman-tmpfs
    stat_done
    fi
    fi
    else
    stat_fail
    fi
    synchronize)
    if ! ck_daemon pacman-tmpfs ;then
    stat_busy "Synchronizing ..."
    synchronize
    if [ $? -gt 0 ] ;then
    stat_fail
    else
    stat_done
    fi
    else
    stat_fail
    fi
    echo "Usage: $0 {start|stop|restart|synchronize}"
    esac
    exit 0
    # vim:ts=4:sw=4

    that script checks for any differences between pacman.log and /var/lib/pacman/local
    it prints package that must be installed according to pacman.log but not found in pacman's local db
    #!/usr/bin/env python
    # pacman.py Version 0.2 2006-12-16
    # under the WTFPL. see http://sam.zoy.org/wtfpl/
    # DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
    # Version 2, December 2004
    # Copyright (C) 2006 solsTiCe d'Hiver
    # <solstice>
    # Everyone is permitted to copy and distribute verbatim or modified
    # copies of this license document, and changing it is allowed as long
    # as the name is changed.
    # DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
    # TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
    # 0. You just DO WHAT THE FUCK YOU WANT TO.
    import os
    import os.path
    from sys import exit,argv
    import re
    import urllib
    class Pkg:
    def __init__(self,n,v,r):
    self.name = n
    self.ver = v
    self.rel = r
    def __str__(self):
    return '%s %s-%s' % (self.name,self.ver,self.rel)
    def __cmp__(self,other):
    return cmp(self.name,other.name)
    def create_pkg(s):
    words = s.split('-')
    name = words[0:-2]
    words[0:-2] = ['-'.join(name)]
    return Pkg(words[0],words[1],words[2])
    def init_db():
    global db
    db = {}
    repositories = os.listdir(dbdir)
    for r in repositories:
    repodir = os.sep.join([dbdir,r])
    if not os.path.isdir(repodir):
    continue
    tmp = os.listdir(repodir)
    try:
    tmp.remove('.lastupdate')
    except ValueError:
    pass
    tmp.sort()
    db[r] = tmp
    def from_repo(s):
    # find pkg from repo s that are installed locally
    tmp = []
    try:
    for p in db['local']:
    if p in db[s]:
    tmp.append(create_pkg(p))
    except KeyError:
    pass
    tmp.sort()
    return tmp
    def localpkg():
    # find pkg installed ( i.e. in local) but not found in any repo
    keys = db.keys()
    keys.remove('local')
    tmp = []
    for p in db['local']:
    found = False
    for r in keys:
    if p in db[r]:
    found = True
    break
    if not found:
    tmp.append(create_pkg(p))
    tmp.sort()
    return tmp
    def parselog(initlog = None,verbose=True):
    installed = re.compile(r'.*installed (.*) ((.*))')
    removed = re.compile(r'.*removed (.*) ((.*))')
    upgraded = re.compile(r'.*upgraded (.*) ((.*) -> (.*))')
    result = []
    if initlog is not None:
    for line in initlog:
    if not line.startswith('base/'):
    continue
    line = line.replace('base/','')
    line = line.replace('.pkg.tar.gz','')
    result.append(create_pkg(line.rstrip()))
    try:
    log = open('/var/log/pacman.log','r')
    for line in log:
    m = installed.match(line)
    if m:
    ll = m.groups()
    result.append(create_pkg('-'.join([ll[0],ll[1]])))
    m = removed.match(line)
    if m:
    ll = m.groups()
    pkg = create_pkg('-'.join([ll[0],ll[1]]))
    try:
    result.remove(pkg)
    except ValueError:
    if verbose:
    print 'Warning: %s not installed but removed' % pkg
    pass
    m = upgraded.match(line)
    if m:
    ll = m.groups()
    pkg = create_pkg('-'.join([ll[0],ll[1]]))
    try:
    result.remove(pkg)
    except ValueError:
    if verbose:
    print 'Warning: %s not installed but upgraded' % pkg
    pass
    result.append(create_pkg('-'.join([ll[0],ll[2]])))
    log.close()
    return result
    except IOError,e:
    print '%s: %s' % (e.filename,e.strerror)
    exit(1)
    def difference(u,v):
    diff = []
    for i in u:
    if i not in v:
    diff.append(i)
    return diff
    def duplicate(l):
    result = []
    i = 0
    while i <len> 1 and argv[1] == '-v':
    print ':: Packages that are installed according to pacman.log'
    print 'n'.join('%s' % i for i in pll)
    exit(0)
    dblocal = [create_pkg(i) for i in db['local']]
    diff = difference(pll,dblocal)
    if diff:
    print ''':: Installed according to pacman.log but not found in /var/lib/pacman/local'''
    print 'n'.join('%s' % i for i in diff)
    diff = difference(dblocal,pll)
    if diff:
    print ''':: Found in /var/lib/pacman/local but not installed according to pacman.log'''
    print 'n'.join('%s' % i for i in diff)
    dup = duplicate(dblocal)
    if dup:
    print ":: Duplicates found in pacman's db"
    print 'n'.join('%s' % i for i in dup)

  • Export quicktime video to play super fast.

    I have a 8 hour video of me driving from Ohio to Kansas. Isn't there a way to export it so it plays super fast; kinda like they do on some music videos?

    Tilting at windmills if I ever saw it.
    You could download the iTunes version (a little over one gigabyte) to have a file to work with and use QuickTime Pro to export.
    You would then switch to the MPEG-4 Video codec rather than use the H.264 version that is nearly impossible play without issues on a G3.
    Cut the frame rate in half (30 down to 15) and do the same with the data rate (not sure of those values).
    Size the file at 640X480 (not sure of the actual dimensions so check the aspect) and leave the audio track the same. Wait (probably a very long time) for the export to complete.
    You could test a few one minute "cuts" from the source to check your settings so you really don't waste a lot of time.

  • BT infinity 'super fast' fibre optic, what a joke!...

    ridiculous, just ran BT's own test your speeds, I'm getting 15.45 download, 2.90 upload and 41.50 ping (whatever that is), I knew internet was slow but what a joke, that's when it's working, it flashes orange more than is blue, this is the second modem to do this (and they're sending a third!)
    not quite the at least 51 download speed was promised by BT when signed up to the super duper mega fast Infinity2 fibre optic package, I'm connected to the DSL not the WAN, will this affect it, trying to talk to their CS is a joke, they're obviously reading from a booklet and have no idea when ask about that, in fact they ignore it completely!!
    anyone else getting this?  it's the home hub 5, my socket wasn't changed like was told it would have to be neither? :s
    am seriously tempted to cancel the DD and send the hubs back to BT with a note saying as haven't provided what said would you can shove it, seriously, telling folks will get super fast and signing up to the most expensive package got...then delivering a sloppy second service, I'm not prepared to pay over £40 a month for, it won't even connect to my son's laptop neither, says is 'too far' we live in a bog standard house, not a 30 bedroom mansion, his bedroom is right above the modem, he can't get much closer unless moves on top of the thing!
    Solved!
    Go to Solution.

    Posts merged to avoid duplication.
    Can you run this checker and post back a screen shot of the results
    http://www.dslchecker.bt.com/adsl/adslchecker.welcome
    and use this speed tester then carry out the further diagnostics and post back a screen shot of all the results including your IP profile for up and down. This test must be done with a wired connection.
    http://speedtest.btwholesale.com/
    If you have a Homehub 5 can you also post the stats from 1-12 by logging onto the homehub management pages then troubleshooting > helpdesk. http://bthomehub.home/

  • Music is playing super fast  help?????????

    ever since i downloaded itunes 8 every song i play in itunes seems to be playing in super fast mode.... kinda sounds like alin and the chipmunks
    i tried reinstalling and other versions but still the same
    can anyone help me out with this???

    I'm having a similar problem. It started with iTunes 7, so I hoped version 8 would fix it. It's not my sound driver, because the files play fine in Media Player, and it's not all of the songs. About 20% of my songs just sound like garbage and play really fast. I've uninstalled and reinstalled, and that didn't help either. I've noticed a couple of the tracks on my iPod sound the same, so I am apprehensive about updating my iPod, fearing that it will screw up the rest of my music.

  • Telstra Velocity/NBN Super Fast Broadband Add On Error

    Have recently moved to a new address with Velocity enabled and the broadband was enabled on Friday. I want to enable the Super Fast Speed Boost and the option is there in my account, however when I go to add it I get an error "Sorry, there is an error while processing your request. Please try again later." Is this just due to the fact the service has to be up and running for a while before I can enable that add-on? Stef

    It may be. It can sometimes take a few days for all the systems to talk to each other.
    If you want to check if it can be done now, manually, then you could jump on Live Chat and ask them to see if it will go through for them.
    https://livechat.telstra.com/TCOM:Crowdsupport:Consumer

  • Super fast delete function

    While playing with my new phone I some how Added a feature that makes certain keys magnify like the A p keys and will also super fast delete what I type. Driving me crazy. How do I stop this from happening?
    Solved!
    Go to Solution.

    Options (swipe down from the top bezel) > Accessibility, did you enable the magnify option?
    or
    Options > Langauage and Input > On-Screen Keyboard, did you enable the Keypress Pop-up?
    For what you call "super fast delete", do you mean the pop-up delete confirm no longer shows?
    Open your Hub and touch the [...] link at bottom right > Settings > Display and Actions > Delete Message Confirmation: is this enabled or disabled?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Is it faster to download a movie to a laptop then sync to the ipad?

    Is it faster to download a movie to a laptop then sync to the ipad?

    D. Shawn-
    I agree that it shouldn't make any difference. But that isn't the problem I often have.  Many of the short movies I download are not in a format the iPad can view.  In that case, it would be necessary to download them to the computer, convert them to MPEG4, and transfer them via iTunes.
    I use a free program called HandBrake to convert various video formats to MPEG4 (MP4, MV4).  It is available for Macintosh, Windows and Linux at:
    <http://handbrake.fr/>.
    Fred

  • Why does my battery discharg faster after downloading oS7?

    Why does my battery discharge faster after downloading on OS7?  i am using a iPhone 4S.
    thanks in advance
    Rick

    Try here >  iOS 7 Battery Life Draining Too Fast? It’s Easy to Fix

  • Normally super-fast computer takes 5-10 minutes to wake up??

    Last night I sat down at my normally super-fast, very responsive HP ENVY Phoenix 810-445qe running Windows 7 Professional 64-bit (i7-4790 processor, 32 GB RAM). I wiggled the mouse, expecting the same wake-up as usual, but got no response. I wiggled the mouse a few more times, and tapped the space bar and a few other keys on the keyboard. Nothing. Finally, after several minutes, the screen turned on, and I was greeted with a blue "HP" logo, after which the machine said "Resuming Windows." It then proceeded to go through some kind of boot process that took TWICE as long as an actual boot, including a phase where I got a black screen for a while with just a mouse cursor. (The computer was actually ON when I had initially approached it.) I had done some Windows updates earlier, and also updates for Adobe Acrobat Reader and some recommended updates for several hardware items. I had left a Microsoft Word document open, along with Google Chrome with multiple tabs open, so it wasn't as though nothing was running. And for the record, I have my power management set to Balanced, with the screen going off after 30 minutes and computer sleeping after 45 minutes. It is set to NEVER hibernate. Normally when I sit down at the computer and wiggle the mouse, I get a nearly instantaneous response. Why was my computer so unresponsive and hard to wake up? And more to the point, how can I make sure that this doesn't happen again?

    Well, the problems you are having might be that you have new applications(higher requirements) that your iMac can't handle. Try upgrading your memory. you can get the OS in itunes or apple store through purchase history.

  • Premiere Pro is eating up all my RAM and Crashing on a Super-Fast Mac System?

    Premiere Pro is eating up all my RAM and Crashing on a Super-Fast Mac System?
    Mac 12 Core (2012 Version)
    24 GB RAM
    Nvida quatro 4000
    Blackmagic Decklink
    Cineraid 24TB RAID tower
    CS6.02
    Note I copied the project and media to a much older MAC with only 12Gb RAM and 8 Cores and it plays great.
    Can not get the new faster system to work??

    Premiere Pro is eating up all my RAM and Crashing on a Super-Fast Mac System?
    Mac 12 Core (2012 Version)
    24 GB RAM
    Nvida quatro 4000
    Blackmagic Decklink
    Cineraid 24TB RAID tower
    CS6.02
    Note I copied the project and media to a much older MAC with only 12Gb RAM and 8 Cores and it plays great.
    Can not get the new faster system to work??

  • Openreach have introduced Super Fast Vans...

    Seems BT have introduced Super Fast vans to match their Super Fast Broadband.  It also seems that they neglegted to teach the drivers how to handle these vans.

    Oh thats brilliant.

  • Super Fast Broadband Coming Close By

    Hey,
    I've just moved house, which doesn't have Super fast broadband yet. But, I noticed that an area close to me (about 2-2.5 miles away) will be getting SFB soon (scheduled for December 2014).
    My question is will this be able to spread out this far to me (2-3 mile) for me to receive fast broadband or not?
    Thanks
    Craig

    you will be to far at 2/3 mls 
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

Maybe you are looking for

  • Trouble with Content Server connection

    I am having an issue with content server on Unix.  I'm finished with content server install and need to connect my ABAP system to it via CSADMIN. But when I first enter CSAdmin, I give it my host and port. What is the unix http script name for the de

  • Photoshop 2014- saving printing presets on a Mac?

    I'm running os x Mountain Lion and used to be able to save printing presets when I was printing photos via PS but lately the quality and media settings keep reverting to standard quality and plain paper.  Anybody know how I can keep the presets saved

  • RECORDING VOCALS AFTER RECORDING MUSIC

    I recently created a song with software instruments. I then got a microphone and connected it so that I can record some vocals over the music. Unfortunately I can't seem to hear the beat on my headphones while I record the vocals. There is no sound.

  • Calculate transaction per second

    Dear Friends , I have run the Oracle 10g with AIX unix server . I want to know "How many Transaction is occured per minute or second" in PEAK hour into my production server . How can I find it ? Give me some suggestions plz ... ..

  • Iphone is geblokkeerd , wat nu ?

    mijn iphone is geblokkeerd , in het display staat , sluit aan op itunes , maar dan moet je reageren via je iphone , dat kan dus niet !!! wat nu ???????