Conky "if connected to the Internetz"

the following conky is originaly from:
http://blog.pakos.biz/desktopowe-zmiany/
http://dl.pakos.biz/files/conkyrc
>>> Click here to see image
#Pakos | ja(at)pakos.biz | http://pakos.biz
# Use Xft?
use_xft yes
xftfont SonyEricssonLogo:size=8:bold
# Update interval in seconds
update_interval 1
# This is the number of times Conky will update before quitting.
# Set to zero to run forever.
total_run_times 0
# Create own window instead of using desktop (required in nautilus)
own_window yes
own_window_transparent no
own_window_type normal
own_window_hints undecorate,sticky,skip_taskbar,skip_pager
own_window_title blue bottom left panel
# Use double buffering (reduces flicker, may not work for everyone)
double_buffer yes
# Draw shades?
draw_shades no
# Draw outlines?
draw_outline no
# Draw borders around text
draw_borders no
draw_graph_borders no
# Stippled borders?
stippled_borders 0
# border margins
border_margin 6
# border width
border_width 1
# Default colors and also border colors
color1 5598d7
color2 d4d4d4
default_color 444444
#default_shade_color white
#default_outline_color black
own_window_colour 444444
# Text alignment, other possible values are commented
#alignment top_left
#alignment top_right
alignment bottom_left
#alignment bottom_right
# Gap between borders of screen and text
# same thing as passing -x at command line
gap_x 7
gap_y 6
minimum_size 1110
# Subtract file system buffers from used memory?
no_buffers yes
# set to yes if you want all text to be in uppercase
uppercase no
# Force UTF8? note that UTF8 support required XFT
override_utf8_locale yes
# Add spaces to keep things from moving about? This only affects certain objects.
use_spacer yes
TEXT
${color1}Uptime: ${color2}$uptime_short ${color1}Cpu: ${color2}${cpu}% ${freq}MHz ${color 3c3c3c}${cpugraph 7,50 92C1EE 5598d7} ${color1}Ram: ${color2}$memperc% $mem ${color1}Swp: ${color2}$swapperc% $swap ${if_existing /proc/net/route eth0}${color1}Download: ${color2}${downspeed eth0}KiB/s ${color 3c3c3c}${downspeedgraph eth0 7,50 92C1EE 5598d7} ${color1}Total: ${color2}${totaldown eth0} ${color1}Upload: ${color2}${upspeed eth0}KiB/s ${color 3c3c3c}${upspeedgraph eth0 7,50 92c1ee 5598d7} ${color1}Total:${color2} ${totalup eth0}${else}${if_existing /proc/net/route wlan0}${color1}Download: ${color2}${downspeed wlan0}KiB/s ${color 3c3c3c}${downspeedgraph wlan0 7,50 92C1EE 5598d7} ${color1}Total: ${color2}${totaldown wlan0} ${color1}Upload: ${color2}${upspeed wlan0}KiB/s ${color 3c3c3c}${upspeedgraph wlan0 7,50 92c1ee 5598d7} ${color1}Total:${color2} ${totalup wlan0}${else}${color1}Download: ${color2}${downspeed lo}KiB/s ${color 3c3c3c}${downspeedgraph lo 7,50 92C1EE 5598d7} ${color1}Total: ${color2}${totaldown lo} ${color1}Upload: ${color2}${upspeed lo}KiB/s ${color 3c3c3c}${upspeedgraph lo 7,50 92c1ee 5598d7} ${color1}Total:${color2} ${totalup lo}${endif}${endif} ${color1}Sda: ${color2}${fs_free_perc /}% ${fs_free /}/ ${fs_size /}
as you can see, this conky checks if it is connected to eth0 (Wired) and if not it is not then it checks wlan0 (WiFi) and if not than it shows the state of the lo interface (we can replace it with the message "You are not connected to the internetz")
My Problem is the following line/information/parameter etc.
${color1}External IP:$alignr${color2}${execi 300 wget www.whatismyip.com/automation/n09230945.asp -O - -q}
${alignc}${color1}NETWORK ${if_up wmaster0}${if_existing /proc/net/route eth0}(Wired)
${color1}Down:${color2} ${downspeed eth0} k/s $alignr${color1} Up:${color2} ${upspeed eth0} k/s
${color1}${downspeedgraph eth0 27,120 000000 FF0000 100} $alignr${upspeedgraph eth0 27,120 000000 FFFF00 100}
${color2}${totaldown eth0}$alignr${color2}${totalup eth0}
${color1}Local IP:${alignr}${color2}${addr eth0} (eth0)${else}${if_existing /proc/net/route wlan0}(Wireless)
${color1}Down:${color2} ${downspeed wlan0} k/s $alignr${color1} Up:${color2} ${upspeed wlan0} k/s
${color1}${downspeedgraph wlan0 27,120 000000 FF0000 100} $alignr${color1}${upspeedgraph wlan0 27,120 000000 FFFF00 100}
${color2}${totaldown wlan0}$alignr${color2}${totalup wlan0}
${color1}Quality:${color2} ${wireless_bitrate wlan0} ${wireless_link_qual_perc wlan0}% ${alignr}${color1}${wireless_link_bar 7,135 wlan0}
${color1}ESSID:$alignr${color2}${wireless_essid wlan0}
${color1}BSSID:$alignr${color2}${wireless_ap wlan0}
${color1}Local IP:${alignr}${color2}${addr wlan0} (wlan0)${endif}${endif}
${color1}External IP:$alignr${color2}${execi 300 wget www.whatismyip.com/automation/n09230945.asp -O - -q}
${else}(Offline)
${color2}${font zekton:pixelsize=36}${alignc}Disconnected${endif}
instead of asking "if connected to the internetz" it asks ${if_up wmaster0} means "is the wireless switch is on" but I find it useless because I usually turning it off and no matter if the Wired Interface is "online", as long as the wireless switch is off the message will be "Disconnected"
and... the problem with this line:
${color1}External IP:$alignr${color2}${execi 300 wget www.whatismyip.com/automation/n09230945.asp -O - -q}
is that it's relevant to both wlan0 and eth0 interfaces and I find in inefficient to copy the exact same line in thhe same script (actually, it is more than one line)
How to ask conky "if connected to the internetz"?
Last edited by RedArcher (2009-11-01 19:04:12)

This is what I use in my conkyrc to tell whether I am connected, and what type of connection I have.
I know many of the lines are repeated inside the if statements, and I don't know if there is another way. There is no way to call a function in conky that I know of (I could be wrong though)
NOTE: I removed all my $color and $offset entries to make this more easily readable.
${if_gw}
${if_existing /proc/net/route wlan0}Connection Type: Wireless
ESSID: ${wireless_essid wlan0}
Public IP:${execi 3600 wget -O - http://whatismyip.org/ | tail}
Local IP:${addr wlan0}
UP: ${upspeedf wlan0} DN: ${downspeedf wlan0}kb/s${endif}${if_existing /proc/net/route eth0}Connection Type: Wired
Public IP: ${execi 3600 wget -O - http://whatismyip.org/ | tail}
Local IP: ${addr eth0}
UP: ${upspeedf eth0} DN: ${downspeedf eth0}kb/s${endif}${else}
Not Connected${endif}

Similar Messages

  • Adobe cloud has lost connection with the server

    Adobe cloud has lost connection with the server, can't get adobe cloud to work so I can re-install photoshop to fix a corrupted DLL file.

    *Adding new items/removing orphans*
    Try iTunes Folder Watch or iTunes Library Updater. Folder Watch is much faster on the adding files front, can be set to run in the background and includes a useful exclusion feature, however it’s slow at removing orphans. iTLU is better for this although doing it manually after looking at a list of proposed removals generated by Folder Watch is probably faster still. iTLU can also be set to update iTunes when you've used 3rd party tools to change tag info.
    You may need to amend the list of file types these programs look for. My list includes:
    .mp3 .mp4 .m4a .m4b .m4p .m4v .mov .wav .aif .mid .ipa .ipg .ite .itlp .m4r .pdf
    Note the last 6 types may not be recognised as already being in the library so should either be omitted from the search or you can add (at least for Folder Watch) individual exclusions for files you know are already in your library.
    tt2

  • 10g Enterprise Manager is not able to connect to the database instance

    I am running a Oracle 10g database in Solaris 10 server. When i am trying to connect to the enterprise manager it says Enterprise Manager is not able to connect to the database instance.
    The database instance is open,the listener is up and the agent connection also says that it succeeded.
    The server houses two 10g databases and the EM was working properly till yesterday. Kindly Help.
    Thanks in advance.
    Ram

    Hi,
    The EM is started and if i give emctl status dbconsole
    -bash-3.00$ emctl status dbconsole
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.3.0
    Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
    http://gladiator:1158/em/console/aboutApplication
    Oracle Enterprise Manager 10g is running
    Logs are generated in directory /db8/ora10gr2/product/10.2.0/Db_4/gladiator_TROY/sysman/log
    it says that the EM is running. But when i am trying to access the URL it is in IE it says Page cannot be displayed what could be the problem for this???
    Thanks in advance.
    Ram

  • What do i do if my internet is wep and i need it to be wpa2 because my ipod touch 4th gen connects to the internet but when i click on safari or itunes it says safari cannot open the page because its not connected to the internet

    what do i do if my internet is wep and i need it to be wpa2 because my ipod touch 4th gen connects to the internet but when i click on safari or itunes it says safari cannot open the page because its not connected to the internet. i have contacted apple support and they said to change from wep to wpa2 but when i change it to wpa2 and type in password and connect on my laptop it says the saved setting on this computer for the network do not match the require ments of the network

    My 2nd gen works fine with WPA2 and AES encryption.
    You may need to go back and start over.  Reset the router back to factory defaults, log on as the admin, set up security, DHCP, and make sure the IP address pool has enough IP addresses to lease to ALL of the computers/devices that will connect to that the router.

  • The wi-fi on my ipod touch is connected but the internett is not working! Help

    Soo annoying, it's connected but the internett is not working. I don't know what to type in or what to do, so I need help.

    Are you 100% positive you are connected?  Head to Settings - Wi-Fi and tap the > next to the network you are connected to?  What is listed for an IP address?  If it's in the 169.x.x.x range, it means your iPod did not properly receive a valid IP address via DHCP from your modem/router. So the 169.x.x.x address is a self-assigned one.
    This can usually be resolved by a reboot of your router.  You can do this by unplugging it for about 30 seconds.  After it powers back up, try reconnecting it.  It wouldn't hurt to try a reset of your iPod as well.  To do this, press and hold both the Sleep/Wake and Home buttons together long enough for the Apple logo to appear.
    See here for more troubleshooting suggestions.
    iOS: Troubleshooting Wi-Fi networks and connections
    B-rock

  • If the wifi on my iPod Touch is on nothing else on the router will connect to the internet

    Ever since I updated my iPod Touch 4th Gen to iOS 6, If the wifi on my iPod Touch is on nothing else on the router will connect to the internet..
    It's the weirdest thing.
    My Wired and WiFi computers are experiencing DNS errors, unresolved URLs and in general having difficulty connecting to the internet...
    That is.... UNTIL I SHUT OFF THE WIFI ON MYiPOD 4th Gen TOUCH!!!
    Then everything works fine.
    I've reset my router, several times.
    I've reset my Cable Moden, several times.
    The problem persists until I disable the WiFi on my iPod

    Try the following:
    - A reset. Nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory settings/new iPod.

  • WRT 120N- Cannot connect to the internet with more than one PC at a time.

    Before I went on a three month vacation,I could connect 3 or 4 PC's either wireless or wired to my router with no problems at all.I have a desk top and a laptop computer which I use at home.After I returned,I found that I could connect to the internet with only one PC at a time.
    If I was say,connected via my laptop,my desk top would continuously keep getting disconnected and vice versa.I have been reading the suggestions from experts here and have done a few checks based on them.I also cannot get to my router page which is 192.168.1.1 I keep getting a message that says "Problem Loading Page" and this happens with both,Firefox and Internet Explorer.I am running Windows 7 - 32 bit on my desk top and Vista Home Premium on my laptop.
    I have opened the "Command Prompt" dialogue and pinged 192.168.1.1 and thereafter I typed in "ipconfig".These are the results:
    Microsoft Windows [Version 6.0.6002]
    Copyright (c) 2006 Microsoft Corporation.  All rights reserved.
    C:\Users\Gordon>ping 192.168.1.1
    Pinging 192.168.1.1 with 32 bytes of data:
    Reply from 192.168.1.1: bytes=32 time<1ms TTL=111
    Reply from 192.168.1.1: bytes=32 time<1ms TTL=111
    Reply from 192.168.1.1: bytes=32 time<1ms TTL=111
    Reply from 192.168.1.1: bytes=32 time<1ms TTL=111
    Ping statistics for 192.168.1.1:
        Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
        Minimum = 0ms, Maximum = 0ms, Average = 0ms
    C:\Users\Gordon>ipconfig
    Windows IP Configuration
    PPP adapter Brownwolf:
       Connection-specific DNS Suffix  . :
       IPv4 Address. . . . . . . . . . . : 92.98.42.65
       Subnet Mask . . . . . . . . . . . : 255.255.255.255
       Default Gateway . . . . . . . . . : 0.0.0.0
    Ethernet adapter Local Area Connection* 22:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
    Wireless LAN adapter Wireless Network Connection:
       Connection-specific DNS Suffix  . :
       IPv6 Address. . . . . . . . . . . : 2002:5c62:2a41:c:35a2:8753:8832:f494
       Site-local IPv6 Address . . . . . : fec0::c:35a2:8753:8832:f494%2
       IPv6 Address. . . . . . . . . . . : 2002:5661:4cc9:c:35a2:8753:8832:f494
       Temporary IPv6 Address. . . . . . : 2002:5661:4cc9:c:a408:59a3:918e:f0ab
       Temporary IPv6 Address. . . . . . : 2002:5c62:2a41:c:a408:59a3:918e:f0ab
       Link-local IPv6 Address . . . . . : fe80::35a2:8753:8832:f494%12
       IPv4 Address. . . . . . . . . . . : 192.168.0.1
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Default Gateway . . . . . . . . . :
    Ethernet adapter Local Area Connection:
       Connection-specific DNS Suffix  . :
       IPv6 Address. . . . . . . . . . . : 2002:5c62:2a41:c:413:cf4f:77af:474d
       Site-local IPv6 Address . . . . . : fec0::c:413:cf4f:77af:474d%1
       IPv6 Address. . . . . . . . . . . : 2002:5661:4cc9:c:413:cf4f:77af:474d
       Temporary IPv6 Address. . . . . . : 2002:5661:4cc9:c:1591:ad9:13da:8fea
       Temporary IPv6 Address. . . . . . : 2002:5c62:2a41:c:1591:ad9:13da:8fea
       Link-local IPv6 Address . . . . . : fe80::413:cf4f:77af:474d%11
       IPv4 Address. . . . . . . . . . . : 192.168.1.100
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Default Gateway . . . . . . . . . : fe80::35a2:8753:8832:f494%11
                                           192.168.1.1
    Tunnel adapter Local Area Connection* 7:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
    Tunnel adapter Local Area Connection* 11:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
    Tunnel adapter Local Area Connection* 14:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
    Tunnel adapter Local Area Connection* 15:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
    Tunnel adapter Local Area Connection* 19:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
    Tunnel adapter Local Area Connection* 20:
       Connection-specific DNS Suffix  . :
       IPv6 Address. . . . . . . . . . . : 2002:5c62:2a41::5c62:2a41
       Default Gateway . . . . . . . . . : 2002:c058:6301::c058:6301
    Tunnel adapter Local Area Connection* 23:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
    Tunnel adapter Local Area Connection* 24:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
    Tunnel adapter Local Area Connection* 28:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
    I presume that this model is a modem **bleep** router as I do not have a separate modem with my system.I have a DSL connection and the firmware version of my router is ver.1.0.If I recall,I did upgrade to the next firmware upgrade a few months after I purchased the router but I am not sure.
    I use both my PC's to run a small business venture and I am worried that resetting the router may cause some other problems and will stop me from using the internet.
    The Command Prompt information above was taken from my laptop.
    Any help will be really appreciated.
    Gerard.
    Solved!
    Go to Solution.

    brownwolf66 wrote:
    No,I have a desk top and a laptop and I cannot access 192.168.1.1 on either of them.In my OP,I have used the Command Prompt dialogue on both computers to ping 192.168.1.1 and I have attached the results.This is what I got:
    Microsoft Windows [Version 6.0.6002]
    Copyright (c) 2006 Microsoft Corporation.  All rights reserved.
    C:\Users\Gordon>ping 192.168.1.1
    Pinging 192.168.1.1 with 32 bytes of data:
    Reply from 192.168.1.1: bytes=32 time<1ms TTL=111
    Reply from 192.168.1.1: bytes=32 time<1ms TTL=111
    Reply from 192.168.1.1: bytes=32 time<1ms TTL=111
    Reply from 192.168.1.1: bytes=32 time<1ms TTL=111
    Ping statistics for 192.168.1.1:
        Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
        Minimum = 0ms, Maximum = 0ms, Average = 0ms
    The results I obtained using ipconfig in the command prompt have already been mentioned in my OP.
    I do not know if the above result is what it is supposed to be but I still cannot access my router's home page.How do I verify if there is a proxy server and if there is one,how do I disable it in my browsers?This problem occured suddenly as a few months earlier all was well.It's getting rather frustrating.
    I suggest resetting the router. Make sure firmware is updated. You can download it here - http://homesupport.cisco.com/en-us/support/routers/WRT120N. After firmware upgrade, reset and reconfigure. Just access the link below to guide you setting up the router.
    * Setting up a Linksys router for DSL Internet connection
    http://www6.nohold.net/Cisco2/ukp.aspx?vw=1&docid=20ee1457387f40178cd5f41d4b585db4_3687.xml&pid=80&r...
    * Setting up a Linksys router with Cable Internet service
    http://www6.nohold.net/Cisco2/ukp.aspx?vw=1&docid=0ff4c94586a345d082828ec2161aaecf_3686.xml&pid=80&r...

  • I am using Windows 7 Pro, 64 bit on a brand new PC, and cannot connect to the iTunes store using iTunes version 10.  HELP!!

    Ok, so after purchasing a new computer, with windows 7 pro, 64 bit, I tried downloading the newest iTunes, which at the time was 10.2.1 (i believe).  After installation, everything seemed to work, except that iTunes was unable to securely connect to the internet, use home sharing, or validate my computer.
    As troubleshooting, I first ran msconfig, and then turned OFF all programs that boot at start up EXCEPT itunes and quicktime.  After a restart, i opened itunes again, and got the same result.  That led me to believe that iTunes was NOT being blocked by another program on my machine.  I am currently running itunes 10.7 successfully on a Windows 7 32 machine at work.  Anyhow, for grins, I tried to install version 9 on the new computer, and it installed perfectly, and immediately connected to the itunes store, leading me to believe that there is nothing wrong with my software configuration (not sure if this is a safe assumption or not).  I then tried to let iTunes update itself using the automated update function.  It tried to update itself to the most current version, then 10.6.  Again, iTunes was unable to connect to the iTunes store.  I HAVE tried disabling the anti-virus software (AVG), but that made no difference. 
    I have since gone back and reinstalled iTunes 9.  Here's the catch though.  When I reinstalled using version 9, I had to redo all my library files.  I'm about 1/2 way through my CD's, and now have a substantial library file going.  The last time I let iTunes update itself to 10.6, once I realized that it was not going to connect to the store, I uninstalled iTunes, and reinstalled ver. 9.  However, when I did this, it told me it could no longer open the library file, because it was a newer .itl or .xml (i believe it was one of those two extensions) library file.  At that point, I basically started everything over again, using version 9, and have been importing CD's like a madman at night.
    Here are my questions:
    1) Is there a way to make a copy of the files that store my library info, so that if my upgrade to ver 10 IS NOT SUCCESSFUL, I can restore ver 9, but still have all of the album art work, playlists (when I import music, I create a playlist with the artists' name, and store things that way), etc. in tact? 
    2) What else can I try (firewall settings, internet options, etc.) to try and get version to to successfully install?  I would really like to get all the benfits of the newer versions.
    3) When I tried to get apple tech support before, they wanted me to pay a ridiculous 69$ fee for phone support.  I just bought an iphone 5....this should entitle me to a fresh 90 days of phone support, right?  The reason I ask here is that I could hardly understand the "tech" that answered the phone when I called for tech support last time, and to be honest, it really ****** me off that they wanted to try and milk me for another 69 bucks....I've purchased every iPhone since the 3Gs came out (pre-ordered at that), and have nearly gone broke purchasing music from their iTunes store....heck, maybe they're doing me me a favor not letting me into the store, huh?
    Any help or ideas would be greatly appreciated,
    -Brian

    Many thanks.
    With those symptoms, I'd try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • My iPod Touch will no longer stay connected to the internet

    Right before updating to iOS 6, I was using FaceTime and other various apps that require an internet connection, and they all worked just fine.
    After updating to iOS 6, I noticed that things took a much longer time to load, such as Facebook. I then noticed that FaceTime was now extremely laggy, and often disconnected within 30 seconds (note that both sides are using wi-fi, not data plan). Now my iPod won't even stay connected to the internet, it keeps automatically disconnecting itself when I try to use FaceTime and tells me to "Log in" whenever I try to re-connect, only to send me to an apple site that says my search could not be found?

    Though I'm not sure what that does, it was off o.O I turned it to auto, I am now able to use FaceTime but my App Store won't load any Categories, let's just hope Apple get's this sortded out soon.
    EDIT: For some reason I keep typing "not" instead of "now" T.T

  • 10.6.8 some devices can no longer connect to the Internet

    I have a home network with two MacBook Pros (let's call them MBP1 and MBP2), two iPod Touch, and an Airport Extreme connected to a cable modem. All networking and Internet access have been working flawlessly.
    Then we updated both MBPs to 10.6.8. Now, out of the four devices, only MBP1 can still connect to the Internet. MBP2 and the two iPods can see the wireless network, but can't connect to the Internet.
    We tried a variety of things suggested in other message threads on MBP2: install the 10.6.8 combo update, fix permissions, trash preference files, to no avail. We reset the Airport to factory settings and set it up again. We ran Disk Warrior on MBP2. We have exhausted everything in our bag of tricks.
    Anyone else experience something like this?
    Is 10.6.8 a red herring, and is this due to something else?
    Help!

    Linc... I followed your advice and started looking elsewhere for the problem. I remembered one thing that was different on my laptop: some time ago, I switched my DNS settings to use Open DNS.
    So I checked the DNS settings in the other laptop and the iPods, switched the DNS setting to Open DNS, and everything works like a charm.
    Thanks for pointing me in the right direction!

  • Can I use apple TV on home network with time capsule or Airport Xtreme without being connected to the internet?

    I'm wondering if I can use Apple TV to play movies and slide shows on my TV, play music over my sound system and print from my devices (Iphone 4S, iPad and MacBook pro 2011) by using an Airport Xtreme or Time Capsule (to back up the devices) if those devices are not connected to the internet. Can anyone advise pls? Reason for this is that I work on a moving ship and don't have an internet connection to speak of for much of the time (and if I do it's a wireless system that I need to pay by the minute and that is too slow to support the Apple TV), but would all the same like to create a wireless environment where my devices can interact with each other. I seem to get conficting info and a rep at the apple store in Honolulu told me that you cannot use Airport Xtreme or Time Capsule without an internet connection (it was busy, he may have misunderstood my question).
    Looking forward to your input.

    Don't try to home share it.. as that is dependent on using Apple ID.
    Just airplay to the ATV.. iTunes: Using AirPlay
    The movie should play exactly as your doing music.. but get rid of the whole home share if that is causing issues.. there is no mention of needing home share in the above..
    If you still have issues you might need to do it other ways.. like export the movie from itunes.. and play it using vlc which should allow you to stream it to the apple TV using airplay.
    That is a bit tricky and I have not used that setup but it should work.
    http://apple.stackexchange.com/questions/23412/can-i-stream-any-video-played-wit h-vlc-player-to-apple-tv
    If you have a hunt around you should find it fairly easy to do.. but straight airplay should work.. there is a very recent update to ATV which might help it with airplay.

  • ITunes could not connect to the iTunes Store "Error Message"

    I recently added iTunes 7.6 to my Windows XP operating system at the same time when I added an *Ion USB Turntable (TTUSB).* I currently have the 80G iPod with the larger video screen. I added in the supplied software of the EZ Vinyl Converter. The software reads from Gracenote and imports into iTunes okay. But now my PC cannot access the iTunes store to buy songs, read the tracks on the discs, or display new album artwork. The diagnostic read the network connectivety test, the CD/DVD drive, and iPod connectivity tests all read okay. I followed the directions on checking the network settings under the Internet Options Tool "Connections" Lan Settings and the Automatic detection and still no dice. All I get is "Make sure your network is active."
    Can anybody help out their?
    Microsoft Windows XP Professional Service Pack 2 (Build 2600)
    HP Pavilion 061 ED842AA-ABA M7250N
    iTunes 7.6.2.9
    QuickTime 7.5
    CD Driver 2.0.7.3
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 1.1.4.7
    Bonjour 1.0.4.12 (118.4)
    iTunes Serial Number 425XXXXXXXXXXXXX
    Current user is an administrator.
    The current local date and time is 2008-07-06 01:07:54.
    iTunes is not running in safe mode.
    Video Display Information
    RADEON X300 Series
    RADEON X300 Series Secondary
    ** External Plug-ins Information **
    No external plug-ins installed.
    ** Network Connectivity Tests **
    Network Adapter Information
    Adapter Name: {1C6FC80D-7300-43A2-A78B-9DFA93BF7727}
    Description: Intel(R) PRO/100 VE Network Connection - Packet Scheduler Miniport
    IP Address: XXXXXXXXXXXX
    Subnet Mask: XXXXXXXXXXXX
    Default Gateway: XXXXXXXXXX
    DHCP Enabled: Yes
    DHCP Server: XXXXXXXXXX
    Lease Obtained: Sun Jul 06 01:02:58 2008
    Lease Expires: Sun Jul 06 02:02:58 2008
    DNS Servers: 66.51.205.100
    66.51.205.100
    66.51.206.100
    Active Connection: LAN Connection
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Disabled
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to iTunes Store was successful.
    Secure connection attempt to iTunes Store was successful.
    Secure connection attempt to iPhone activation server was successful.
    iTunes has never successfully accessed iTunes store.
    ** CD/DVD Drive Tests **
    LowerFilters: PxHelp20 (2.0.0.0),
    UpperFilters: GEARAspiWDM (2.0.7.3),
    E: HL-DT-ST DVD-RAM GSA-H55N, Rev 1.03
    Audio CD in drive.
    Found 12 songs on CD, playing time 39:58 on Audio CD.
    Track 1, start time 00:02:00
    Track 2, start time 04:18:00
    Track 3, start time 07:16:25
    Track 4, start time 11:23:70
    Track 5, start time 15:23:17
    Track 6, start time 20:15:17
    Track 7, start time 23:04:67
    Track 8, start time 26:10:40
    Track 9, start time 28:59:05
    Track 10, start time 31:31:42
    Track 11, start time 33:32:32
    Track 12, start time 37:03:57
    Audio CD reading succeeded.
    Get drive speed succeeded.
    The drive CDR speeds are: 8 10 16 40 48.
    The drive CDRW speeds are: 8.
    The drive DVDR speeds are: 8.
    The drive DVDRW speeds are: 8.
    ** iPod/iPhone Connectivity Tests **
    iPodService 7.6.2.9 is currently running.
    iTunesHelper 7.6.2.9 is currently running.
    Apple Mobile Device service 1.14.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) 82801DB/DBM USB Universal Host Controller - 24C2
    Intel(R) 82801DB/DBM USB Universal Host Controller - 24C4
    Intel(R) 82801DB/DBM USB Universal Host Controller - 24C7
    Intel(R) 82801DB/DBM USB 2.0 Enhanced Host Controller - 24CD
    Intel(R) 82801GB USB Universal Host Controller - 27C8. Device is working properly.
    Intel(R) 82801GB USB Universal Host Controller - 27C9. Device is working properly.
    Intel(R) 82801GB USB Universal Host Controller - 27CA. Device is working properly.
    Intel(R) 82801GB USB Universal Host Controller - 27CB. Device is working properly.
    Intel(R) 82801GB USB2 Enhanced Host Controller - 27CC. Device is working properly.
    FireWire (IEEE 1394) Host Controllers:
    VIA OHCI Compliant IEEE 1394 Host Controller. Device is working properly.
    Connected Device Information:
    HP_ADMINIST (L:\), Fifth Generation iPod (iPod with video) running firmware version 1.3
    Serial Number: 8K645xxxV9R
    Bus Speed: 61440

    I'm seeing this error on some, but not all, of my Windows XP machines. On my personal development XP box, I see this error if iTunes is closed when I try and access iTunes U via my transfer script or Stanford's.
    "iTunes could not connect to the Music Store. The network connection was terminated unexpectedly. Make sure your network connection is active and try again."
    The errors occured in IE 7 Beta, Firefox 1.5.x, and Firefox 2 Beta. In each case, iTunes U loaded after I clicked the 'ok' button in iTunes. I did notice that in Firefox's case an additional pop-up window appeared that asked whether or not I had iTunes; when I selected that I do have itunes, it transfered me to iTunes but generated the error.
    After getting these errors on my Windows XP machine, I tried it on two different lab machines running Windows XP, and didn't get the error message once -- I tried it in IE 6, Firefox 1.0.x and Firefox 1.5.x and they all worked. It even worked with IE 7 Beta and Vista Beta.
    Based on this, I think the problem must lie in how Windows registered iTunes, and the handshake just isn't happening properly.
    Ken Newquist
    Lafayette College

  • Upon upgrading iPhoto, iPhoto Help no longer works.  It gives the error message:  "The selected topic is currently unavailable. To see all iPhoto Help, you must be connected to the Internet." Help!?

    Upon upgrading iPhoto, iPhoto Help no longer works.  It gives the error message:  "The selected topic is currently unavailable. To see all iPhoto Help, you must be connected to the Internet."   I am obviously connected to the internet since you are reading this.
    I tried upgrading permissions but it did not help!?  Can anyone tell me what is wrong?  Thanks

    Try
    Reboot the computer, see if that fixes it.
    Then try:
    Backup your files off the computer (not TimeMachine) and disconnect
    Hold c boot off the 10.6 disk and simply reinstalling OS X
    Log in and update to 10.6.8
    c boot off the 10.6 disk again and use Disk Utility >Repair Disk
    reboot and all should be fine, except some third party programs that install kext files, those will have to be reinstalled from fresh sources.

  • Can no longer get my laptop to connect to the internet

    Hi,
      I recently moved my router and dsl modem after reconnecting everything my laptop no longer can acquire internet access. I have network magic on both my desktop and my wired laptop. I tried resetting the modem reseting the router. nothing seems to work.
    I have network magic version 5.5.9195.0-Pure0
    Using Windstream DSL
    The modem is a Speedstream 4200 Adsl Modem version a12
    The router is a Belkin f4d7230-4 version 7000
    The problem is present in both wired and wireless configuration.
    The desktop is using Windows XP SP 3, the laptop is using Windows 7 64 bit professional
    I am using ZoneAlarm Extreme Security.
    I am able to connect the desktop directly to the DSL modem (bypassing the router) and have connection but when I try to connect the laptop, no internet access is available.
    I am lost!!! Any suggestions??

    Hi...
    Here is one item you can check... If I am following how your home network is setup...
    Usually when this happens you have to clone your mac-address to the appliance. This can be done using the administration console on your Belkin router.
    First, attach your laptop or desktop directly to the DSL and check your connection.
    Then after you have tested your internet connection ok directly attached to the DSL router you reconnect your Belkin router and open your network connection to the web interface. (check your ip address and gateway once attached to the Belkin and see what the gateway address is - this is the ip you need to use to get to the Belkin web interface) Once attached to the web inerface on the Belkin find the "Clone Mac Address" wizard within the advanced administration settings. Then once you clone your mac address using the wizard you should be reconnected to your network like it was originally and your setup should work again...
    Hope this makes sense...
    Good luck...
    H.
    Best Regards;
    Hmeister

  • Hi, my MacBook Air is not working anymore if it's not connected with the power cable. It's pretty new so I can't imagine that the battery is dead already. Why can't I use my MacBook Air without the power cable even though I charged it for hours?

    Hi, my MacBook Air is not working anymore if it's not connected with the power cable. It's pretty new so I can't imagine that the battery is dead already. Why can't I use my MacBook Air without the power cable even though I charged it for hours?

    Please take the Mac to  Apple store to have it checked out.
    Genius Bar reservation
    http://www.apple.com/retail/geniusbar/
    Best.

Maybe you are looking for

  • Sound distortion after downloading artworks

    I am using the latest version of itunes 7.0.1.8 It has seemed ok, until yesterday i decided to click on get album artwork. The artwork was downloaded fine but the noice quality immediately after and since has been awful. I can only describe it as an

  • Excise balance  Upload

    Hello, Now i want upload the Excise Balance With Excise - Capital Good Excise Duty - Cenvat           Excise Duty - Payable  P L A           Excise Duty - Payable Cess           Modvat Receivable 50% - Capital Goods           Sec & Higher Education C

  • Date difference is not showing the correct result for date interval

    Hi Expert,                 I've created two formula variable one for PO date and another for GR date while i am taking the date difference of GR and PO date for single PO date selection it showing me correct result , but while i am taking the date in

  • Cursor not right-justifying in Oracle Forms 11.1.1.6.0

    Hi All, A user notice during testing that 'cursor not right-justifying' in a field on a form. There were not such problem in the old forms enviroment 10.1.2.0.2 and clients running JInitiator 1.3.1.22. The new forms enviroment is Oracle weblogic 10.3

  • Export PDF from InDesign -- SIze mismatch

    We are facing a strange problem of like size mismatch in INDD and  Exported PDF. Say I have a INDD document of height 5.456 inch and 6.758  inch and when we are exporting it to PDF with High Quality Print then  PDF size will show 5.45 inch x 6.75 inc