Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 25

Thread: Ubuntu Gnome daily images now available.

  1. #11
    Join Date
    Mar 2006
    Beans
    4,405
    Distro
    Ubuntu Development Release

    Re: Ubuntu Gnome daily images now available.

    the ubiquity used in ubuntu-gnome don't like my box, I have tried several installs including a freshly d/l'd . iso and ubiquity always hangs at the second screen ( I tried moving the mouse as Stinger suggested but no luck) it isnt going to sleep just ubiquity hanging . I had the same problem with the reglar ubuntu early in raring but todays daily of that installed with no problem . I guess i'll just keep trying until they update the ubiquity in Ubuntu-gnome .
    if it ain't broke you haven't tweaked it enough

  2. #12
    Join Date
    Apr 2008
    Beans
    11,707

    Re: Ubuntu Gnome daily images now available.

    Quote Originally Posted by ronacc View Post
    the ubiquity used in ubuntu-gnome don't like my box, I have tried several installs including a freshly d/l'd . iso and ubiquity always hangs at the second screen ( I tried moving the mouse as Stinger suggested but no luck) it isnt going to sleep just ubiquity hanging . I had the same problem with the reglar ubuntu early in raring but todays daily of that installed with no problem . I guess i'll just keep trying until they update the ubiquity in Ubuntu-gnome .
    Sounds like this bug:

    https://bugs.launchpad.net/ubuntu/+s...y/+bug/1080701

  3. #13
    Join Date
    Mar 2006
    Beans
    4,405
    Distro
    Ubuntu Development Release

    Re: Ubuntu Gnome daily images now available.

    thanks kansasnoob , it was worth a look but i'm not even getting that far (partman) . For me it hangs as soon as I hit continue from the screen where it shows if ou are connected to the internet and asks if you want to d/l the updates while installing , I've tried various conbinations but all hang . next try I'll check the logs before I shut down , the live session works even when ubiquity is hung .
    if it ain't broke you haven't tweaked it enough

  4. #14
    Join Date
    Mar 2006
    Beans
    4,405
    Distro
    Ubuntu Development Release

    Re: Ubuntu Gnome daily images now available.

    update I tried another install and this time read the syslog after the hang , it reads similar to (not exactly) the same as some of those in the bug you referenced so it may be partman after all . either that or it may be trying to run wubi because it sees the windows install on the same box since it references that install in the syslog .
    if it ain't broke you haven't tweaked it enough

  5. #15
    Join Date
    Mar 2006
    Location
    Williams Lake
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: Ubuntu Gnome daily images now available.

    I ran the iso build script last weekend, so I really don't need the daily image right now, everything works as it should on my atom powered netbook, I even got to test what happens when I pull the plug, and then leave for a couple of hours, the system went into suspend, and recovered gracefully when I plugged the power cord back in.

    The only problem I seem to have is that when running a second monitor, I can only successfully set the resolution to 1280X1024, but that may be more of a hardware limitation, than the intel graphics driver.

    I plan on enabling the 3 ppas this weekend, as the last time I did it, my system went into a constant loop, using up all the ram, then restarting, and starting the cycle all over again.

  6. #16
    Join Date
    Mar 2012
    Beans
    21

    Re: Ubuntu Gnome daily images now available.

    Quote Originally Posted by Cheesemill View Post
    +1

    I use the following script run from cron to keep all of my daily images up to date (I've just updated it to include Ubuntu Gnome as well).
    Code:
    #!/bin/sh
    
    # Script to update Ubuntu daily iso builds.
    
    echo "Updating Raring Ringtail Daily ISO's"
    echo
    cd /mnt/data/isos/Linux/Ubuntu/Raring
    
    echo -n "Ubuntu Desktop amd64    -  "
    zsync -q -i raring-desktop-amd64.iso -o raring-desktop-amd64.iso http://cdimage.ubuntu.com/daily-live/current/raring-desktop-amd64.iso.zsync
    echo "Updated"
    
    echo -n "Ubuntu Desktop i386     -  "
    zsync -q -i raring-desktop-i386.iso -o raring-desktop-i386.iso http://cdimage.ubuntu.com/daily-live/current/raring-desktop-i386.iso.zsync
    echo "Updated"
    
    echo -n "Ubuntu Server amd64     -  "
    zsync -q -i raring-server-amd64.iso -o raring-server-amd64.iso http://cdimage.ubuntu.com/ubuntu-server/daily/current/raring-server-amd64.iso.zsync
    echo "Updated"
    
    echo -n "Ubuntu Server i386      -  "
    zsync -q -i raring-server-i386.iso -o raring-server-i386.iso http://cdimage.ubuntu.com/ubuntu-server/daily/current/raring-server-i386.iso.zsync
    echo "Updated"
    
    echo -n "Xubuntu Desktop amd64   -  "
    zsync -q -i xraring-desktop-amd64.iso -o xraring-desktop-amd64.iso http://cdimage.ubuntu.com/xubuntu/daily-live/current/raring-desktop-amd64.iso.zsync
    echo "Updated"
    
    echo -n "Xubuntu Desktop i386    -  "
    zsync -q -i xraring-desktop-i386.iso -o xraring-desktop-i386.iso http://cdimage.ubuntu.com/xubuntu/daily-live/current/raring-desktop-i386.iso.zsync
    echo "Updated"
    
    echo -n "Kubuntu Desktop amd64   -  "
    zsync -q -i kraring-desktop-amd64.iso -o kraring-desktop-amd64.iso http://cdimage.ubuntu.com/kubuntu/daily-live/current/raring-desktop-amd64.iso.zsync
    echo "Updated"
    
    echo -n "Kubuntu Desktop i386    -  "
    zsync -q -i kraring-desktop-i386.iso -o kraring-desktop-i386.iso http://cdimage.ubuntu.com/kubuntu/daily-live/current/raring-desktop-i386.iso.zsync
    echo "Updated"
    
    echo -n "Lubuntu Desktop amd64   -  "
    zsync -q -i lraring-desktop-amd64.iso -o lraring-desktop-amd64.iso http://cdimage.ubuntu.com/lubuntu/daily-live/current/raring-desktop-amd64.iso.zsync
    echo "Updated"
    
    echo -n "Lubuntu Desktop i386    -  "
    zsync -q -i lraring-desktop-i386.iso -o lraring-desktop-i386.iso http://cdimage.ubuntu.com/lubuntu/daily-live/current/raring-desktop-i386.iso.zsync
    echo "Updated"
    
    echo -n "Lubuntu Alternate amd64 -  "
    zsync -q -i lraring-alternate-amd64.iso -o lraring-alternate-amd64.iso http://cdimage.ubuntu.com/lubuntu/daily/current/raring-alternate-amd64.iso.zsync
    echo "Updated"
    
    echo -n "Lubuntu Alternate i386  -  "
    zsync -q -i lraring-alternate-i386.iso -o lraring-alternate-i386.iso http://cdimage.ubuntu.com/lubuntu/daily/current/raring-alternate-i386.iso.zsync
    echo "Updated"
    
    echo -n "Gubuntu Alternate amd64 -  "
    zsync -q -i graring-desktop-amd64.iso -o graring-desktop-amd64.iso http://cdimage.ubuntu.com/ubuntu-gnome/daily-live/current/raring-desktop-amd64.iso.zsync
    echo "Updated"
    
    echo -n "Gubuntu Alternate i386  -  "
    zsync -q -i graring-desktop-i386.iso -o graring-desktop-i386.iso http://cdimage.ubuntu.com/ubuntu-gnome/daily-live/current/raring-desktop-i386.iso.zsync
    echo "Updated"
    
    rm *old
    
    echo -n "Mini ISO amd64          -  "
    wget -q -N http://archive.ubuntu.com/ubuntu/dists/raring/main/installer-amd64/current/images/netboot/mini.iso
    echo "Updated"
    echo
    echo "All Raring ISO's updated."
    awesome script!! Thanks for sharing.

  7. #17
    Join Date
    Jul 2011
    Beans
    12

    Re: Ubuntu Gnome daily images now available.

    I installed the daily image to the hard drive and when booting for first time after install completed i dont get any login screen. Just the blue gnome background and the mouse pointer.

    Am i doing anything wrong?
    Ubuntu 10.04 LTS (Long Tested Stability)
    Kernel 2.6.35-25
    EeePC 1002HA Atom N270 2Gb

  8. #18
    Join Date
    Jan 2006
    Location
    Denmark
    Beans
    530
    Distro
    Ubuntu Development Release

    Re: Ubuntu Gnome daily images now available.

    @ rsrocha
    I'm getting exactly the same with the Gnome3 ppa enabled as I reported earlier

    So unless a solution comes up, I'm waiting for the beta release.
    Last edited by Stinger; March 19th, 2013 at 11:59 AM.

  9. #19
    Join Date
    Apr 2008
    Beans
    11,707

    Re: Ubuntu Gnome daily images now available.

    Ubuntu GNOME images are now on the QA Tracker also:

    Ubuntu_GNOME_QA.jpg

    The i386 images and testcases are here:

    http://iso.qa.ubuntu.com/qatracker/m...0290/testcases

    The amd64 images and testcases are here:

    http://iso.qa.ubuntu.com/qatracker/m...0289/testcases

    Edit: I was a bit premature with this announcement

    Stéphane Graber is still working on getting the Ubuntu GNOME images synced from daily to the QA Tracker but we're very close
    Last edited by kansasnoob; March 22nd, 2013 at 10:33 AM.

  10. #20
    Join Date
    Jan 2006
    Location
    Denmark
    Beans
    530
    Distro
    Ubuntu Development Release

    Re: Ubuntu Gnome daily images now available.

    @ kansasnoob

    Do you know if there will be any testing of upgrading using the gnome3 ppa ?

    It would be quite relevant for those of us who would like a Gnome 3.8 installation IMO.

    Cheers

Page 2 of 3 FirstFirst 123 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •