Results 1 to 6 of 6

Thread: Is it possible to update Ubuntu daily build in terminal, also is their a change log?

  1. #1
    Join Date
    Oct 2012
    Beans
    30

    Is it possible to update Ubuntu daily build in terminal, also is their a change log?

    If i download and install a 19.04 daily build can i update it to a newer daily build via the terminal every few days? Also does Canonical have a change log for daily builds?

  2. #2
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: Is it possible to update Ubuntu daily build in terminal, also is their a change l

    This is still Cosmic, but I expect as some point it will be disco, so you can use same zsync each time.
    http://cdimage.ubuntu.com/daily-live/current/

    If you go here you can see the most recent:
    http://cdimage.ubuntu.com/daily-live/

    Then you can zsync your current ISO with just the changes, as of today it is 20181112, but you have to check each time until it is daily-live:
    My first zsync is my last copy of Cosmic ISO, renamed.
    zsync http://cdimage.ubuntu.com/daily-live...md64.iso.zsync

    I directly boot ISO from grub. But I always forget to update grub, so now use a configfile in my /ISO folder. I have one on each drive, so I can install to the other drive. I do copy from download location into /ISO partition on each drive, so path is /ISO, not /home/fred/ISO.
    Code:
    menuentry 'Live ISOs on SSD' {
    configfile (hd0,3)/ISO/livecdimage.cfg
    } 
    
    menuentry 'Live ISOs on HDD (boot on SSD)' {
    configfile (hd1,3)/ISO/livecdimage.cfg
    }
    Code:
    # livecdimage.cfg
    # Add this to 40_custom to load this file:
    # menuentry 'Live ISOs' {
    # configfile (hd0,3)/iso/livecdimage.cfg
    #} 
    # Add iso names to livecdimage.cfg
    #for i in `ls *.iso`;do echo "# "$i>>livecdimage.cfg; done;
    
    menuentry "Ubuntu 19.04 Disco amd64" {
        set isofile="/ISO/disco-desktop-amd64.iso"
        loopback loop (hd0,3)$isofile 
        linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile toram
        initrd (loop)/casper/initrd
    }
    Last edited by oldfred; November 13th, 2018 at 01:00 AM.
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

  3. #3
    Join Date
    Jun 2006
    Location
    UK
    Beans
    Hidden!
    Distro
    Ubuntu 22.04 Jammy Jellyfish

    Re: Is it possible to update Ubuntu daily build in terminal, also is their a change l

    Thread moved to Ubuntu Development Version.
    Ubuntu 20.04 Desktop Guide - Ubuntu 22.04 Desktop Guide - Forum Guide to BBCode - Using BBCode code tags

    Member: Not Canonical Team

    If you need help with your forum account, such as SSO login issues, username changes, etc, the correct place to contact an admin is here. Please do not PM me about these matters unless you have been asked to - unsolicited PMs concerning forum accounts will be ignored.

  4. #4
    Join Date
    Aug 2009
    Beans
    1,312
    Distro
    Ubuntu Development Release

    Re: Is it possible to update Ubuntu daily build in terminal, also is their a change l

    For changelogs, see https://lists.ubuntu.com/mailman/listinfo/disco-changes

    But many Ubuntu changes come directly from Debian.Years ago, those changes were published to that list too, but that was stopped to try to make that list more focused.

    So you may also want to look at https://lists.debian.org/debian-devel-changes/

    The tricky part is that not every Debian change makes it into Ubuntu, at least not right away.

    Some packages get delayed in -proposed for a while because of what -proposed is (during the development cycle) so there are changes you will see in the lists that won't show up yet in current Ubuntu.

  5. #5
    Join Date
    Jul 2010
    Beans
    264
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Is it possible to update Ubuntu daily build in terminal, also is their a change l

    Quote Originally Posted by oldfred View Post
    I directly boot ISO from grub. But I always forget to update grub, so now use a configfile in my /ISO folder. I have one on each drive, so I can install to the other drive. I do copy from download location into /ISO partition on each drive, so path is /ISO, not /home/fred/ISO.
    Can you do persistence when boot from iso?

  6. #6
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: Is it possible to update Ubuntu daily build in terminal, also is their a change l

    No, booting ISO directly is just the live installer. But I have all the folders in the system. But most you cannot write into as live user is 999 where folders all are user 1000.
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

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
  •