Announcement

Collapse
No announcement yet.

Gkrellkam stopped working in Hardy

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Gkrellkam stopped working in Hardy

    When I ran Gusty I had gkrellkam set up to get a bunch of local, and world weather maps, and radars but in Hardy it doesn't show the maps in the gkrell window and when you click on the window it doesn't update the files. What happened?
    Thanks
    Alvin ARS ka9qlq
    Kubuntu 12.04 on a AMD X2 6000+ Asus M3A78-CM 4 GB RAM ATI Radeon 3100 256MB & 2 TB SATA HD
    Just believing there IS a God won't get you to Heaven.
    Accepting Jesus as your Lord and master is the only way!
    http://www.4laws.com/laws/languages.html
    http://www.godssimpleplan

    #2
    Re: Gkrellkam stopped working in Hardy

    Just a guess: do you have "wget" installed? That's the program that actually downloadss the "stuff" from the net. I think it is installed automagically, but I'm not certain.

    Comment


      #3
      Re: Gkrellkam stopped working in Hardy

      Code:
      ka9qlq@dittohead:~$ wget
      wget: missing URL
      Usage: wget [OPTION]... [URL]...
      
      Try `wget --help' for more options.
      but thanks any way. It down loads the first pic then doesn't get new ones AND will not show any pics in the gkrellkam window.
      Thanks
      Alvin ARS ka9qlq
      Kubuntu 12.04 on a AMD X2 6000+ Asus M3A78-CM 4 GB RAM ATI Radeon 3100 256MB & 2 TB SATA HD
      Just believing there IS a God won't get you to Heaven.
      Accepting Jesus as your Lord and master is the only way!
      http://www.4laws.com/laws/languages.html
      http://www.godssimpleplan

      Comment


        #4
        Re: Gkrellkam stopped working in Hardy

        Well this sucks buuut I made a BASH file thus
        Code:
        #!/bin/bash
        
        #Look out! We be programming!
        # copyright ka9qlq
        
        cd /home/ka9qlq/.gkrellm2/maps
        
        wget -q [url]http://weather.yahoo.com/images/ussat_440x297.jpg[/url]
        wget -q [url]http://weather.yahoo.com/images/na_unitedstates_ne_outlookf_en_US_440_mdy_y.jpg[/url]
        wget -q [url]http://weather.yahoo.com/images/central_sat_440x297.jpg[/url]
        wget -q [url]http://weather.yahoo.com/images/us_cn_9regradar_medium_usen.jpg[/url]
        wget -q [url]http://weather.yahoo.com/images/ussat_440x297.jpg[/url]
        wget -q [url]http://weather.yahoo.com/images/na_unitedstates_cn_outlookf_en_US_440_mdy_y.jpg[/url]
        wget -q [url]http://weather.yahoo.com/images/northeast_sat_440x297.jpg[/url]
        wget -q [url]http://weather.yahoo.com/images/us_ne_9regradar_medium_usen.jpg[/url]
        wget -q [url]http://weather.yahoo.com/images/na_fcsthi_440_mdy_y.jpg[/url]
        wget -q [url]http://weather.yahoo.com/images/na_precip_440_mdy_y.jpg[/url]
        wget -q [url]http://www.goes.noaa.gov/GIFS/ECI8.JPG[/url]
        wget -q [url]http://radar.weather.gov/Legend/N0R/IND_N0R_Legend_0.gif[/url]
        wget -q [url]http://www.weather.gov/forecasts/graphical/images/conus/PoP121_conus.png[/url]
        wget -q [url]http://www.weather.gov/forecasts/graphical/images/conus/Wx1_conus.png[/url]
        wget -q [url]http://www.weather.gov/forecasts/graphical/images/conus/WindSpd1_conus.png[/url]
        wget -q [url]http://www.weather.gov/forecasts/graphical/images/conus/Sky1_conus.png[/url]
        wget -q [url]http://www.weather.gov/satellite_images/national.jpg[/url]
        wget -q [url]http://www.arcamax.com/wthr/svcurr_us.png[/url]
        wget -q [url]http://www.crh.noaa.gov/wwamaps/ind-is.gif[/url]
        wget -q [url]http://www.hpc.ncep.noaa.gov/noaa/noaa.gif[/url]
        wget -q [url]http://www.lininteractive.com/wish/weather/doppler8/loop/latest.jpg[/url]
        wget -q [url]http://www.crh.noaa.gov/radar/images/DS.p19r0/SI.kilx/latest.gif[/url]
        wget -q [url]http://maps.weather.com/web/radar/us_lex_closeradar_medium_usen.jpg[/url]
        wget -q [url]http://www.lininteractive.com/wish/wxcent/Regional_SAT_RAD.jpg[/url]
        then made a text file thus
        Code:
        /home/ka9qlq/.gkrellm2/maps/ussat_440x297.jpg
        /home/ka9qlq/.gkrellm2/maps/na_unitedstates_ne_outlookf_en_US_440_mdy_y.jpg
        /home/ka9qlq/.gkrellm2/maps/central_sat_440x297.jpg
        /home/ka9qlq/.gkrellm2/maps/us_cn_9regradar_medium_usen.jpg
        /home/ka9qlq/.gkrellm2/maps/ussat_440x297.jpg
        /home/ka9qlq/.gkrellm2/maps/na_unitedstates_cn_outlookf_en_US_440_mdy_y.jpg
        /home/ka9qlq/.gkrellm2/maps/northeast_sat_440x297.jpg
        /home/ka9qlq/.gkrellm2/maps/us_ne_9regradar_medium_usen.jpg
        /home/ka9qlq/.gkrellm2/maps/na_fcsthi_440_mdy_y.jpg
        /home/ka9qlq/.gkrellm2/maps/na_precip_440_mdy_y.jpg
        /home/ka9qlq/.gkrellm2/maps/ECI8.JPG
        /home/ka9qlq/.gkrellm2/maps/IND_N0R_Legend_0.gif
        /home/ka9qlq/.gkrellm2/maps/PoP121_conus.png
        /home/ka9qlq/.gkrellm2/maps/Wx1_conus.png
        /home/ka9qlq/.gkrellm2/maps/WindSpd1_conus.png
        /home/ka9qlq/.gkrellm2/maps/Sky1_conus.png
        /home/ka9qlq/.gkrellm2/maps/national.jpg
        /home/ka9qlq/.gkrellm2/maps/svcurr_us.png
        /home/ka9qlq/.gkrellm2/maps/ind-is.gif
        /home/ka9qlq/.gkrellm2/maps/noaa.gif
        /home/ka9qlq/.gkrellm2/maps/latest.jpg
        /home/ka9qlq/.gkrellm2/maps/latest.gif
        /home/ka9qlq/.gkrellm2/maps/us_lex_closeradar_medium_usen.jpg
        and told gkrellkam it was the pic list and it works add the BASH file to CRON and you got a ghetto fix. Clunk!!!!!!!! Why does this work but not the old way?
        Thanks
        Alvin ARS ka9qlq
        Kubuntu 12.04 on a AMD X2 6000+ Asus M3A78-CM 4 GB RAM ATI Radeon 3100 256MB & 2 TB SATA HD
        Just believing there IS a God won't get you to Heaven.
        Accepting Jesus as your Lord and master is the only way!
        http://www.4laws.com/laws/languages.html
        http://www.godssimpleplan

        Comment


          #5
          Re: Gkrellkam stopped working in Hardy

          Oh and use -Nq or it wont refresh right
          Thanks
          Alvin ARS ka9qlq
          Kubuntu 12.04 on a AMD X2 6000+ Asus M3A78-CM 4 GB RAM ATI Radeon 3100 256MB & 2 TB SATA HD
          Just believing there IS a God won't get you to Heaven.
          Accepting Jesus as your Lord and master is the only way!
          http://www.4laws.com/laws/languages.html
          http://www.godssimpleplan

          Comment


            #6
            Re: Gkrellkam stopped working in Hardy

            Wow.

            And I though I was pretty cool to get 2 CPU core temps and the moon plugin working on Gkrellm.

            Comment


              #7
              Re: Gkrellkam stopped working in Hardy

              Well I think it doesn't work right because gkrellkam uses /tmp if your pic list file has the web address so it's probably a permissions problem but beyond my talent to fix.
              Thanks
              Alvin ARS ka9qlq
              Kubuntu 12.04 on a AMD X2 6000+ Asus M3A78-CM 4 GB RAM ATI Radeon 3100 256MB & 2 TB SATA HD
              Just believing there IS a God won't get you to Heaven.
              Accepting Jesus as your Lord and master is the only way!
              http://www.4laws.com/laws/languages.html
              http://www.godssimpleplan

              Comment


                #8
                Re: Gkrellkam stopped working in Hardy

                For me, GkrellKam works fine! I get weather images from the web, the krell window just shows the resized-image and, when I click on it, the real image pops up. In these days, my network has been compromised in some hours of the day and I realized that GkrellKam doesn't work good in these moments. Maybe when the wget process doesn't finish your duty very well. Just talking about... Good luck! Nice script, however!... Sorry for the poor english, meu irmão!... 8)
                Kubuntu 8.04 Hardy Heron in a Pentium 4, 512 mb... So cool!...

                Comment

                Working...
                X