[solved but questions] Lightweight alternative to alunn

I was wondering if there was a lighter alternative to alunn. I know that there are a lot of GUI frontends for pacman and I've looked into those which looked promising from the list on the wiki but most of them do too much or they don't do it correctly (in my opinion ).
Essentially, I would like something which would just notify me of updates to installed apps from at least the official repositories. Ideally, it would do the same for apps installed from AUR. I absolutely do not want something with the ability to upgrade my system. Nor do I want something which will update the package databases. That is, it must not run pacman -Sy (or pacman -Syu) unless in a fakeroot environment. It should not need root privileges for anything, ever.
A systray icon would be nice but is not absolutely essential.
The main problem with alunn is that it pulls in a lot of gnome dependencies, including gvfs and various other gnome things. gvfs is creating problems for rsync backup and, while I'm sure this is avoidable, it made me realise that the only reason I have it installed is for alunn and I thought maybe I could find something which was either generally lighter or hooked into kde/qt dependencies which I've already got installed. If it could also check for AUR updates, that would be the icing on the cake.
I was also wondering about just scripting a cron job but I'm not sure how to run a cron job as an ordinary user in Linux and I've had no luck getting notifications to work from cron jobs.
Last edited by cfr (2012-06-11 20:36:56)

I still really have the same questions. That is, I'd still like to know the answers. However, I found something which at least seems to work by finding a sort of answer to (1) though I'm far from sure that this is how it should be done...
This is very heavily based on the original versions. (The cron job is probably identical or almost so and the basic notification script will be similar. The main difference is the script I'm using to get the notifications to behave themselves. I'm just including everything here for completeness - I'm certainly not claiming authorship!)
I installed a script at /usr/local/bin/pacmandbcheck-notifications:
#!/bin/bash -
# ref.: http://www.andreascarpino.it/blog/posts/hey-youve-n-outofdated-packages-part-ii/
# instructions: add to user crontab
# mangled by cfr
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
export PATH
DISPLAY=:0
export DISPLAY
if test -x /usr/bin/on_ac_power; then
/usr/bin/on_ac_power &> /dev/null
if test $? -eq 1; then
exit 0
fi
fi
fakedb=/dev/shm/fakepacdb
[[ -d "$fakedb" ]] || exit 0
enwau=$(pacman --dbpath "$fakedb" -Qqu)
#pkgs=$(pacman --dbpath "$fakedb" -Qqu | wc -l)
pkgs=$(echo $enwau | wc -w)
#aurpkgs=$(cower -udf 2> /dev/null | wc -l)
aurpkgs=0
unset msg1
unset msg2
unset packages
if [[ ${pkgs} -gt 0 ]]; then
msg1="${pkgs} in pacman"
fi
if [[ ${aurpkgs} -gt 0 ]]; then
msg2=" ${aurpkgs} in AUR"
fi
let packages=${pkgs}+${aurpkgs}
echo $enwau > /tmp/hysbysu.$$
enwau=$(cat /tmp/hysbysu.$$)
rm /tmp/hysbysu.$$
if [[ ${packages} -gt 0 ]]; then
# kdialog --icon "arch-logo" --title "Out-Of-Date packages" --passivepopup "There are ${packages} outofdated packages (${msg1}${msg2})" 10
# notify-send -u normal -i arch-logo "Out-Of-Date packages" "There are ${packages} outofdated packages (${msg1}${msg2})"
hysbysu -u normal -i arch-logo -t 0 -s "${packages} outdated packages" -b "${enwau}"
fi
exit 0
and another at /usr/local/bin/hysbysu:
#!/bin/bash -
#set -x
export DISPLAY=:0
export XAUTHORITY=~/.Xauthority
PATH=/usr/local/bin:/usr/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin
export PATH
allan=0
usage="Usage: $0 [OPTION]
Send a notification in a way which respects the KDE GUI but falls back to the standard setup (I think) if KDE isn't running.
Options:
-b --body specify message [empty]
-c --category specify category [empty]
-h --help print this message and exit
--hint specify additional hints [empty]
-i --icon specify icon [info]
-o --options options to pass to notification command [empty]
-s --summary specify summary [\"Notification\"]
-t --time specify time to expire [0 i.e. no expiry]
-u --urgency specify urgency (low, normal or critical) [normal]
For cases where the default is "empty", the default will effectively be notify-send's default since all this script does is pass stuff onto the command."
error () {
echo "$@" 1>&2
((allan++))
usage_and_exit $allan
usage () {
printf %b "$usage\n"
usage_and_exit () {
usage
exit $1
tempargs=$(getopt -o b:c:hi:o:s:t:u: --long body:,category:,help,hint:,icon:,options:,summary:,time:,urgency: -- "$@")
if [ $? != 0 ];
then
usage_and_exit
fi
eval set -- "$tempargs"
body=""
cat=""
hint=""
icon=""
summ="Notification"
time="0"
urg="normal"
while true
do
case "$1"
in
-b | --bo | --bod | --body)
body="$2"
shift;
shift;;
-c | --ca | --cat | --cate | --categ | --catego | --categor | --category)
cat="$2"
shift;
shift;;
-h | --help)
usage;
exit $allan;;
--hi | --hin | --hint)
hint="$2"
shift;
shift;;
-i | --ic | --ico | --icon)
icon="$2"
shift;
shift;;
-o | --opt | --opts| --opti | --optn | --option | --options)
options="$2"
shift;
shift;;
-s | --su | --sum | --summ | --summa | --summar | --summary)
summ="$2"
shift;
shift;;
-t | --ti | --tim | --time)
time="$2"
shift;
shift;;
-u | --ur | --urg | --urge | --urgen | --urgenc | --urgency)
urg="$2"
shift;
shift;;
shift;
break;;
error Unrecognised option "$1".
esac
done
args="$@"
if [ "$icon" = "" ]
then
if [ "$urg" = "low" ]
then
icon="dialog-information"
else
if [ "$urg" = "normal" ]
then
icon="dialog-warning"
else
if [ "$urg" = "critical" ]
then
icon="dialog-error"
else
icon="specialcharacters-Character-Question"
fi
fi
fi
fi
ksession_pid=$(ps -o pid= -C 'kwin -session' | sed 's/ //g')
if [ "$ksession_pid" = "" ]
then
dbus_session_file=~/.dbus/session-bus/$(cat /var/lib/dbus/machine-id)-0
if [ -e "$dbus_session_file" ]
then
. "$dbus_session_file"
[ $? == 0 ] || ((allan++))
export DBUS_SESSION_BUS_ADDRESS DBUS_SESSION_BUS_PID
else
error "Gwall! Allwn i ddim canfod $dbus_session_file."
fi
else
dbus_session_address=$(grep -z DBUS_SESSION_BUS_ADDRESS /proc/$ksession_pid/environ | sed 's/^DBUS_SESSION_BUS_ADDRESS=//')
[ "$dbus_session_address" != "" ] || error "Could not get DBUS_SESSION_BUS_ADDRESS for session."
export DBUS_SESSION_BUS_ADDRESS="$dbus_session_address"
fi
if [ "$hint" = "" ]
then
notify-send -i "$icon" -u "$urg" -t "$time" -c "$cat" $options "$summ" "$body"
[ $? == 0 ] || ((allan++))
else
notify-send -i "$icon" -u "$urg" -t "$time" -c "$cat" -h "$hint" $options "$summ" "$body"
[ $? == 0 ] || ((allan++))
fi
#notify-send $options $args
#kdialog --passivepopup prawf-kd 0
exit $allan
As I say, I'm far from sure that's a good way to get the DBUS variable KDE's session is using. I haven't tested what happens in the absence of KDE as that's the only environment I have available.
I also installed this at /etc/cron.hourly/pacmandbcheck:
#!/bin/bash -
# ref.: http://www.andreascarpino.it/blog/posts/hey-youve-n-outofdated-packages-part-ii/
# instructions: install in /etc/cron.hourly/
# mangled by cfr
PATH=/bin:/sbin:/usr/bin:/usr/sbin
export PATH
if test -x /usr/bin/on_ac_power; then
/usr/bin/on_ac_power &> /dev/null
if test $? -eq 1; then
exit 0
fi
fi
fakedb=/dev/shm/fakepacdb
realdb=/var/lib/pacman
[[ ! -d $fakedb ]] && { mkdir -p "$fakedb/sync" || exit 1; }
[[ ! -L $fakedb/local ]] && { ln -s "$realdb/local" "$fakedb" || exit 2; }
exec fakeroot pacman --dbpath "$fakedb" -Sy
exit $?
Finally, I added this to my user crontab:
55 * * * * nice /usr/local/bin/pacmandbcheck-notifications

Similar Messages

  • I am trying to use the "This solved my question - 10 points" and the "This helped me - 5 points" but they are NOT doing anything. How do I award the points ?

    I am trying to use the "This solved my question - 10 points" an the "This helped me - 5 points" but they are NOT doing anything. How do I award the points ?

    Are you talking about the "Legend" panel at the right of the window?
    Those text are just help texts explaining the reputation points. You can only award points, if you are the original poster of a question. Then you will see active buttons to award points below the answers you receive. See here for more information: https://discussions.apple.com/static/apple/tutorial/reputation.html
    Regards
    Léonie

  • Can't mark reply "This solved my question"

    In the email I received that notified me of a reply to my question, when I click on the link for either "This solved my question" or "This helped me", it takes me to Safari, but gives me the following:
    Apple Support Communities
    Unauthorized
    It appears you're not allowed to view what you requested. You might contact your administrator if you think this is a mistake.
    If I sign in to the Discussions, and go to Your Stuff and choose the question, I see the Legend, but there are no buttons for me to mark a reply as "This solved my question" or "This helped me". 
    Any idea why I can't do this?  I'm running Mac OS 10.8.5, and Safari 6.0.5.  Could there be something in my Safari settings that is blocking this?
    Thanks,
    Marcia Bolsinga

    There have also been intermittent problems with the forum software lately and this might be causing this problem.
    Try going to your thread again and see if the symptoms change any,

  • I can not purchase from the iTunes store because of the security question I am I do not know your security question and alternative mail has been hacked

    I can not purchase from the iTunes store because of the security question I am I do not know your security question and alternative mail has been hacked

    You need to contact Apple. Click here, phone them, and ask for the Account Security team.
    (87808)

  • How to undo "This solved my question" on this Using iPhone forum?

    How to undo "This solved my question" on this "Using iPhone" forum?
    new to this forum... how do you undo this?

    **** lol, In that case they should give a warning or some type of "You sure?" yes/no. I clicked completely by mistake. anyways...

  • [svn:osmf:] 14915: Introduce BasicVideoElement, lightweight alternative to VideoElement.

    Revision: 14915
    Revision: 14915
    Author:   [email protected]
    Date:     2010-03-22 11:58:59 -0700 (Mon, 22 Mar 2010)
    Log Message:
    Introduce BasicVideoElement, lightweight alternative to VideoElement.  The former supports progressive and basic RTMP streaming, the latter also supports MBR RTMP streaming as well as HTTP streaming.
    Modified Paths:
        osmf/trunk/framework/OSMF/.flexLibProperties
        osmf/trunk/framework/OSMF/org/osmf/elements/AudioElement.as
        osmf/trunk/framework/OSMF/org/osmf/elements/ImageElement.as
        osmf/trunk/framework/OSMF/org/osmf/elements/SWFElement.as
        osmf/trunk/framework/OSMF/org/osmf/elements/VideoElement.as
        osmf/trunk/framework/OSMF/org/osmf/media/LoadableElementBase.as
        osmf/trunk/framework/OSMFTest/org/osmf/OSMFTests.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestVideoElement.as
        osmf/trunk/framework/OSMFTest/org/osmf/media/TestLoadableElementBase.as
        osmf/trunk/framework/OSMFTest/org/osmf/media/TestMediaPlayerWithVideoElement.as
    Added Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/BasicVideoElement.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestBasicVideoElement.as
        osmf/trunk/framework/OSMFTest/org/osmf/media/TestMediaPlayerWithBasicVideoElement.as
        osmf/trunk/framework/OSMFTest/org/osmf/utils/DynamicLoadableElement.as

  • TS4123 I have problem with iTunes story (secure link to itunes store failed). I make In the "Command Prompt" screen, type in   netsh winsock reset the itune story is solve but after i close itunes the problem is back

    I have problem with iTunes story (secure link to itunes store failed). I make In the "Command Prompt" screen, type in   netsh winsock reset the itune story is solve but after i close itunes the problem is back

    The results show that you have a proxy server set and this can often cause problems with iTunes.
    The proxy setting can be accessed in Internet options>>Connections>>LAN Settings.
    Try un-checking the proxy server check box.
    It might also be a good idea to run a malware check if you didn't know you had the proxy server set.
    You can download a free version of an excellent scanner- Malwarebytes here:
    http://www.malwarebytes.org/

  • Help me for solve this Question this is my problem

    help me for solve this Question this is my problem
    i installed EBS 11i fresh not vision
    i did cart of account and did set of book
    then assigned it with profile option gl set of books name
    and when enter to make ajournal appeare this messege
    [http://www9.0zz0.com/2009/10/06/03/232202588.jpg]
    [http://www9.0zz0.com/2009/10/06/03/634050066.jpg]

    Hi,
    Not sure why are you getting this kind of error (which is pointing to a URL with Jpg file) while creating a journal.
    Could you please bounce your server once and try..
    Please let us know if the error/warning stopping you to enter a journal in GL??
    We don't think profile option is a show stopper here.... We assume that you have assigned Sets of Books, MO: Operating unit & HR USer Profile option at Responsibility level correctly....
    Regards,
    S.P DASH

  • I can't send out email using my iPhone4. I tried to follow the step provided to solve but still not working. What should I do?

    I can't send out email using my iPhone4. I tried to follow the step provided to solve but still not working. What should I do?

    Contact your mail provider and get the CORRECT settings for the outgoing server to set up on your phone.

  • How do I uncheck "This solved my question" on the Apple Support Communities forum?

    I checked an answer as "this solved my problem" when it actually did not, and I don't want anyone to be mislead.
    How do I uncheck "This solved my question" on the Apple Support Communities forum?

    You can't uncheck it. You'll need to post the question again.
    You could also just add the comment that it was not actually answered.

  • Oldschool K6/200 Kernel Question [SOLVED] BUT MORE QUESTIONS

    Ok so I've been playing around with the Idea of switching over to linux for awhile now. I've been told that Arch is a great distro to start learning on. That Being said I have an old calibri with a AMD K6/200 running an old red hat distro my father used to use. Well I looked through the documentation for ArchLinux and found this
    "Arch Linux is optimized for the i686 processor and therefore will not run on any lower or incompatible generations of x86 CPUs (i386,i486,i586). A Pentium II or AMD K6-2 processor or higher is required. x86-64 architectures are also officially supported."
    Posted in the "Official Arch Linux Install Guide" Great it should work on my computer. So I download the archlinux-2008.06-core-i686.iso burn it and boot from it.... says wrong Kernel for my CPU. I'm kinda stumped any help?
    Last edited by Jorad (2008-08-03 21:12:27)

    Well thank you all very much. I think i'm going to try all of your ideas out. Possibly starting off with Xubuntu as it seems to be an easier transition. I currently have 3 of these machines and it seems this will be an enjoyable challenge. xubuntu's wiki does not seem to be as user friendly as this so it's going to take awhile for me to find the proper kernel lol. here goes nothing..... by nothing i mean XP
    EDIT: Also the current Kernel of Xubuntu says that it supports 1386-class processors. I guess I'll find out sooner or later. Thanks again
    P.S I'm getting the alt install anyway... hope installation isn't going to be a hassle lol
    Last edited by Jorad (2008-08-05 03:34:22)

  • IDVD no audio solved, but ...

    like many other, I had the problem that when I edited my movies in iMovie and iDVD the audio was fine, until I started burning them on DVD or disk image. Than there was either no audio at all, or after some minutes (usually 5-15) the audio was gone.
    I tried lot's of tips that I found in this forum, but nothing helped.
    My data was on an external USB2 drive (mac formated). Since access to USB2 is somewhat slow on macs, I got a new firewire drive. Using the terminal cp, I copied all my data to the new harddrive. When I than opened my iDVD project and did my 101 try to burn the DVD, everything went fine. I tried my other projects that I got stuck with (no audio) ... all of them burned just fine. When I do it from the USB2 drive --> no audio !!!
    So my problem is solved and I'm happy.
    But I would like to know just for my sanity what is causing this problem when having the data on a USB2 drive (400GB, MacOS Extended). Does anybody has any idea?
    The drive is slower than a firewire drive. But the only effect I would expect from that is that I have to wait longer until my movie is rendered ....
    20'' iMac (Intel)   Mac OS X (10.4.9)   latest version of iMovie/iDVD

    Welcome Uwe_Meier
    Glad to hear the issue was solved eventually. To answer your question, iMovie and iDVD6 were designed to work well with firewire devices. They are often problematic at best with USB.
    The reason for this is that firewire offers a sustained data stream which is in practice ideal for most video applications, whereas usb transfers data in packet technology (burst of data that are entirely CPU dependent). Firewire is actually smarter technology for most high speed data transfers (and especially video) since it is not cpu dependant. FW negociates bus conflicts on its own whereas the same bus conflict can slow USB to a crawl.
    The drive is slower than a firewire drive. But the only effect I would expect from that is that I have to wait longer until my movie is rendered ....
    Nope. This isn't correct. Here's why:
    "While USB 2.0 has a higher theoretical speed limit (480Mbps) than Firewire 400 (400 Mbps), Firewire is much faster than USB 2.0 in real life usage, just by nature of the design of the protocol.
    Firewire has very little overhead and is far more efficient with sustained data transfers than USB 2.0.
    USB is very dependant on CPU usage and is adversely affected by other processes running on the machine, as well as other devices attached to the USB bus. Firewire is not suceptible to these issues.
    In the real world, you will never get anywhere near 480Mbps with USB 2.0. You are hardly even likely to see half that speed.
    Firewire is faster than USB 2 in almost every aspect... especially on a Mac."
    The above is a quote from Rich Fleming.
    http://discussions.apple.com/thread.jspa?messageID=4009484&#4009484
    (3) G4 PM's/(3) S-Drives/Sony TRV900/Nikons/6FWHD's/PS7/iLife06/FCPHD/DVDSP/etc. Mac OS X (10.4.8) My ichatav AIM account is: SDMacuser1 (Please use Text chat prior to video)

  • [SOLVED] Weird question: pacman -Syu nothing to do for quite a while

    Hi,
    Perhaps this an odd question but I feel like for the past 2-3 weeks on two different computers "pacman -Syu" returns "x up to date" for all repos and "nothing to do" as the result. Could nothing really be upgradeable for this long? Can anyone else confirm this or has something gotten goofed? Is there a way to check actual versions with what I have to make sure things really are working properly? Even if nothing was upgradeable I can't remember the last time I saw core, extra, or community actually download without doing "pacman -Syyu". They alway say up to date and I'm thinking this just can't be correct...
    What might help for me to post? I haven't changed anything in pacman.conf or pacman.d/mirrorlist...
    Thanks,
    John
    Last edited by jwhendy (2010-09-02 14:20:53)

    x33a wrote:
    In the future, take a look here:
    https://www.archlinux.de/?page=MirrorStatus
    That's the link I keep losing. Bookmarking now...
    @jwhendy can you change the subject to include the word [SOLVED], please?

  • Pacman seg fault(Solved but with comments on pacman-db-upgrade)

    Performed an install from FTP and booted into root login.
    Performed pacman -Syu  and received report system up to date.
    Performed downloads via pacman of twelve packages including xorg and xfce4.
    Performed download of abs package. 
    Downloaded abs repos.
    Modified abs extra vlc package and performed pacman -U install of modified package.
    Pacman working well at this point.
    Rebooted.
    After reaching xfce4 Desktop, attemptd to install firefox.
    Pacman -S firefox produced..... /usr/bin/pacman/ report(forget the exact error)
    Subsequent trials with ...pacman -U .... produces seg fault.
    Cannot use pacman.  All other programs seem to perform correctly.  Perhaps have lost DNS.
    Cannot perform ...pacman -Syu --debug.....segfaults.
    Last edited by lilsirecho (2011-07-19 18:19:49)

    Solved the difficulty but have no idea what can be done to prevent it from occuring for another user.
    It seems that the db did not get upgraded when the ...pacman-db-upgrade ...command was executed.  There was no statement for ..."pre 3.5 db" upgrade....while executing the command.
    After re-install, the upgrade command performed correctly and pacman now performs correctly after reboots.
    The question comes up as to what to do if the upgrade command does not work correctly and whether some indicator of correct response should appear in the beginners guide.  Additionally, what can be done in the event that the upgrade command fails to meet the correct response.
    These questions will in time be resolved by a new .iso but the present exposure is amazing in its consequences!
    Perhaps the upgrade command is also a function of properly synced mirrors but the command requesting the upgrade was ...pacman -Syy... the mirror sync function!
    What do we have...catch22?
    The resultant segfaults make sense if the pacman sync db is not upgraded.
    How is a user to know the upgrade failed?  What to do about such a condition?
    Marking this thread as solved ...with comments...

  • FI-GL: Question regarding "alternative account no." - Why in BSEG?

    Hi all,
    I have another question. I think this is really a little bit tricky this time (I spend a lot of time investigating this question but couldn't find an answer).
    It's regarding the field "alternative account no." in FS00 (table SKB1-ALTKT) and it's about the design of the SAP system regarding this feature (alternative chart of account).
    We've one company code (Belgium) in the system which uses alternative account numbers for a country specific local chart of accounts. The country specific chart of accounts BE01 is assigned to this company code in OBY6 besides the operative chart of accounts. The company code is in production for some years so there are many postings up to now. So far so good. Now, they have found an error in the assignment from alternative account to operative account. As a result, they want us to evaluate the option to change the alternative account number for this account in the transaction FS00.
    For sure, it's not possible to change the alternative account no. in FS00 as long as there is a balance on this account. But if you post this balance to a temporary / technical account, it's possible to change the alternative account no. If you do this, SAP will give you the message FH 165 which is a warning and not a error message (so you can save the changes). After that, it's possible to create an inverse posting in order to get the balance back to this account.
    Now to the strange part (for me): Why does SAP record this alternative account no. for each document line item in the BSEG table in the field BSEG-LOKKT? This is also what the message FH 165 is about. For me, this does not really make sense, but I'm sure that I miss a detail somewhere.
    I mean, you know for example that the alternative account A belongs to the operative account B (via FS00 / SKB1-ALTKT). Therefore, why do you need to write this account to every single line item in BSEG? Why doesn't SAP just substitute the operative account no. with the alternative account no. in all relevant reports (RFBILA00, balance display S_ALR_87012277...).
    The background of my question is now: If I zero out the balance and change the alternative account number in FS00, then all postings up to now won't be changed automatically. So for all postings up to now, the old alternative account no. remains in the BSEG table. For all new postings, the new alternative account no will be in the BSEG table. So from my understanding, there will be an inconsistency in the database if I change the alternative account no.
    In order to evaluate whether I can change the alternative account no. without risking inconsistencies, I would now need to know how this field (BSEG-LOKKT) is used in the SAP system. Is it used in any special reports or for what purpose is it in the BSEG table? What about the balance table GLT0? Is there also a special balance table for the alternative account no. in the system or how are the balances (e.g. for RFBILA00) calculated for the alternative chart of accounts?
    I would be very glad for any help as I am really at the end with my SAP knowledge on this point.
    Thank you in advance and sorry for the long (and maybe confusing?) posting.
    Regards,
    Peter

    hi Peter,
    I believe the system is perfectly designed in this case
    Let's say you have G/L account A in Operative CoA, which is linked to account 1 in Alternative CoA. Than the local law changes and you have to link account A to account 2 from 01.01.2008. The system works perfectly: All the items which were posted earlier are still shown on Alternative account 1 (according to local law for last year), while the new items will be shown on account 2 (according to local law for the new year).
    BSEG-LOKKT is only used for reporting, does not control anything. On the other hand there won't be any inconsistency in your system, if you change the alternative account number acc. to business needs.
    hope this helps
    ec

Maybe you are looking for

  • ThinkPad X1 Carbon Gen 1 vs Gen 2.

    I have started using the ThinkPad X1 Carbon Gen 2 as my main work laptop this week, and have officially retired my ThinkPad X1 Carbon Gen 1 for backup purpose. So far this is what i feel are the major positives of the ThinkPad X1 Carbon Gen 2 vs Gen

  • NBA content on Apple TV

    Hey everyone, So, I was pretty excited to see the newest Apple TV update has access to NBA.com content. Unfortunately, it seems that when I am accessing any of the game recaps or highlights that the Apple TV loads very slow. I have no trouble streami

  • Can macintosh computers support the latest iTunes software?

    My friend has an old mac computer I'm not sure what type or what software it has. I just know how it looks and well he wants to install the latest software of iTunes however when he tries to do so a message from iTunes says that he needs to update hi

  • Button inactive during thread

    hi, Button is inactive during the thread exection in jprogressbar.. can anybody shed some light on this... thnx in advance

  • Radius certificate problems...

    Hello, I am using AirPort Extreme's with Radius configured in Mac OS X Server 10.6. Authenticating works, but only with a certificate error on the clients. So I purchased a certificate and installed it (including the intermediate certificate in the S