Slashdot Mirror


Ubuntu 6.10 is Out

cloudmaster writes "Apparently they were watching me to see when I downloaded the 6.10-rc release isos, as I did that last night, and the full release happened this morning. :) Neat stuff, including Firefox 2.0, Gnome 2.16, myth 0.20, faster booting thanks to upstart (sort of a replacement for init, among others), etc. The announcement and download pages are up. I've got *my* torrent running..."

11 of 386 comments (clear)

  1. Easy upgrade from Dapper by fracai · · Score: 5, Informative

    gksudo "update-manager -c"

    --
    -- i am jack's amusing sig file
    1. Re:Easy upgrade from Dapper by fracai · · Score: 4, Informative
      --
      -- i am jack's amusing sig file
  2. Re:Can I by Rik+Sweeney · · Score: 4, Informative

    Can I now dist-upgrade my Ubuntu Dapper to Edgy?

    I think so, I was going to do (on the command line)

    sudo sed -e 's/\sdapper/ edgy/g' -i /etc/apt/sources.list

    sudo apt-get update

    sudo apt-get dist-upgrade

    * Go to bed / work *

    Which will update my sources list, update the repository and then upgrade. At least, that's what I think it'll do. If anyone has any corrections then let us know.

  3. Ubuntu Do What Debian [C/W]ouldn't... by vain+gloria · · Score: 5, Informative

    I say, here's fun! Official word from Mozilla on why Ubuntu shipped with Firefox branded Firefox, rather than Iceweasel.

    Plaudits to the Ubuntu guys for getting this release out so quickly. Wonder if I should stick with 6.06 and its LTS or upgrade?

  4. Re:Can I by grazzy · · Score: 4, Informative

    Also the documentation recommends running sudo apt-get update && sudo apt-get dist-upgrade
    Thats because if the first command fails you shouldnt run the second for whatever reason.

    Ubuntu is the next best thing since sliced bread, and everyone should atleast try it out. I upgraded my 5.10 (no idea how I managed to install that) the other day to 6.06 this way - it went without a hickup. I love ubuntu :P

  5. With Strigi! by oever · · Score: 4, Informative

    The universe now contains the desktop search with the fastest file-indexer: Strigi! This is a huge improvement over Beagle in terms of resource usage and with the added ability to search for files no matter how deeply nested in packages, archives or mail, it's clearly the best file searching tool for Linux.

    --
    DNA is the ultimate spaghetti code.
  6. Re:Can I by Anonymous Coward · · Score: 4, Informative

    I updated Kubuntu from 6.06 yesterday (as detailed in the RC press release) and after rebooting the system stop working (frozen at the end of the boot process).
    Should it happen to you, I did this:

    1. reset
    2. hit ESC when prompted at boot
    3. select safe mode from the menu
    4. run "startx" on the commnad prompt. KDE should start.
    5. Update the system with Adept (system > package manager).
    6. reboot.

    Everything is fine now.

  7. Et tu, Kubuntu? by CheeseTroll · · Score: 4, Informative

    Kubuntu 6.10 has also been released. New features + installation/upgrade instructions are here: http://kubuntu.org/announcements/6.10-release.php

    --
    A post a day keeps productivity at bay.
  8. Re:So, they replaced init. by beezly · · Score: 5, Informative

    It doesn't take much to find out via the ubuntu wiki - https://wiki.ubuntu.com/ReplacementInit has lots of information on the whole implementation.

    With regards to launchd, that page says;

    The four candidates were Solaris SMF, Apple's launchd, the LSB initserv/chkconfig tools and initNG.

    The first two of these suffer from inescapable licence problems, which is relatively unfortunate as both have features that are somewhat appealing though neither quite fix our problems. Having whichever system we use being adopted as a Linux-wide standard would not be possible if we chose either of these two systems.

    and also from discussion further down the page;

    NabLa: [WWW] Apple's launchd has been [WWW] released recently under the Apache license. Would that resolve those "inescapable licence problems"? Looks like a very interesting possibility now.

    • ScottJamesRemnant: it still doesn't meet our requirements, so would be only a base for our own work. We've already implemented enough that it'd be a backwards step to start again based on launchd. Also the new launchd licence may not be GPL compatible, so it would still not be ideal
    • jec : I think that the licence (apache 2.0) is GPL compatible. But if work is already advanced on your own solution, then great! Just hope that Redhat/SuSE/Debian will adopt it...
    • ThomMay: it's not - [WWW] the FSF mark it as incompatible.
  9. I just downgraded to ubuntu 6.04.1 by Billly+Gates · · Score: 5, Informative

    Its not ready yet. I have summarized my experience here 2 days ago.

    Initramfs has been updated several times a day and reports of usb drives double mounting, not mounting, and randomly unmounting are quite huge, many wifi cards no longer work, multiple midi files can crash xmms, firefox 2.0 randomly crashes, and other issues means its not ready yet in my book.

    Also in my journal I mentioned gpart crashed during a resizing of my ntfs partition. That was quite scary but I did not lose anything. According to launchpad it has not been fixed yet so Windows users beware.

    Ubuntu is my favorite and one of the most stable distro's out there. However I highly advise ubuntu users to wait a few weeks before upgrading to this version.

  10. Re:Upstart faster how?... by Anonymous Coward · · Score: 5, Informative

    It still seems to be a serialised startup process, and the documentation does not make it clear how to specify startup dependencies ("IP before NTP", or "spamd before sendmail")

    From the documentation, it looks like you can do exactly this, by specifying that spamd be started when and before sendmail is started. You can also have sendmail start whenever spamd has finished starting. It looks to give you the ability to inject dependencies in either direction. Example: If sendmail is already installed and configured to start at system boot, the spamd installer just needs to add "start on sendmail/start" to it's own startup script, and upstart will call it before calling sendmail's startup script. Or you can go the other direction, and have sendmail's script use "start on spamd/started" to run sendmail's startup script after spamd's startup script finishes running.

    However, the most useful aspect seems to be the fact that it can process events at any time, not just startup/shutdown. Such as starting an iPod sync daemon only when an iPod is connected, and stopping it when the iPod is removed.