Slashdot Mirror


Shuttleworth Says Snappy Won't Replace .deb Linux Package Files In Ubuntu 15.10

darthcamaro writes: Mark Shuttleworth, BDFL of Ubuntu is clearing the air about how Ubuntu will make use of .deb packages even in an era where it is moving to its own Snappy ('snaps') format of rapid updates. Fundamentally it's a chicken and egg issue. From the serverwatch article: "'We build Snappy out of the built deb, so we can't build Snappy unless we first build the deb,' Shuttleworth said. Going forward, Shuttleworth said that Ubuntu users will still get access to an archive of .deb packages. That said, for users of a Snappy Ubuntu-based system, the apt-get command no longer applies. However, Shuttleworth explained that on a Snappy-based system there will be a container that contains all the deb packages. 'The nice thing about Snappy is that it's completely worry-free updates,' Shuttleworth said."

2 of 232 comments (clear)

  1. Re:why bother? by Anonymous Coward · · Score: 5, Informative

    why is this modded troll?
    Lennart the great mastermind has announced it on his blog: http://0pointer.net/blog/revis...

  2. Re: why bother? by vadim_t · · Score: 4, Informative

    What are you on about?

    $ cat /usr/local/bin/errtest.sh
    #!/bin/bash
    echo This is stdout
    echo This is stderr 1>&2
     
    $ cat /etc/systemd/system/errtest.service
    [Unit]
    Description=stderr test
     
    [Service]
    ExecStart=/usr/local/bin/errtest.sh
     
    [Install]
    WantedBy=multi-user.target
     
    $ sudo systemctl start errtest
    $ journalctl -u errtest
    -- Logs begin at Thu 2015-03-05 22:42:26 CET, end at Mon 2015-09-07 14:40:56 CEST. --
    Sep 07 14:39:23 gadget systemd[1]: Started stderr test.
    Sep 07 14:39:23 gadget systemd[1]: Starting stderr test...
    Sep 07 14:39:23 gadget errtest.sh[8971]: This is stdout
    Sep 07 14:39:23 gadget errtest.sh[8971]: This is stderr

    There's your stdout and stderr.