Oresat Linux Updater

Total Page:16

File Type:pdf, Size:1020Kb

Oresat Linux Updater OreSat Linux Updater Ryan Medick Apr 22, 2021 CONTENTS 1 Glossary of Terms Used 3 2 OreSat Linux Updater Daemon5 2.1 Daemon..................................................5 3 Update Maker 9 3.1 Update Maker..............................................9 4 Files 11 4.1 Update Archive.............................................. 11 4.2 Status Archive.............................................. 13 5 Internals 15 5.1 OreSat Linux Updater’s Internal..................................... 15 6 Indices and tables 23 Index 25 i ii OreSat Linux Updater Warning: This is still a work in progress. CONTENTS 1 OreSat Linux Updater 2 CONTENTS CHAPTER ONE GLOSSARY OF TERMS USED D-Bus Inter-process communication system provided by systemd. See https://www.freedesktop.org/wiki/Software/ dbus/ Daemon Long running, background process on Linux. dpkg The low level package manager for install and removing packages on Debian Linux. APT is build ontop of it. OreSat PSAS’s open source CubeSat. See https://www.oresat.org/ OreSat Linux Manager (OLM) The front end daemon for all OreSat Linux boards. It converts CANopen message into DBus messages and vice versa. See https://github.com/oresat/oresat-linux-manager OreSat Linux Updater The common daemon found on all OreSat Linux boards, that handles updating the board with update archives. Status Archive A tar file with two status files produced by the OreSat Linux updater. One with a JSON list of the update archive in OreSat Linux updater’s cache and the other will be a copy of dpkg status file. The Update Maker will uses these to make future update archives. Update Archive A tar file used by the OreSat Linux updater daemon to update the board it is running on. It will contain deb package files and bash script. These will be made the the Updater Maker. 3 OreSat Linux Updater 4 Chapter 1. Glossary of Terms Used CHAPTER TWO ORESAT LINUX UPDATER DAEMON A common daemon on all Linux boards that allows board to updated over D-Bus using update files. 2.1 Daemon A backend service for updating the Linux board using deb packages and bash scripts. It is mostly a D-Bus server with a update file cache, that can run update files from the Update Maker. Basics: • Giving the daemon update file will not trigger an update, only when the Update D-Bus method is called will an update start. • The daemon can also generate status file that can be used to make future updates and to know what is install on the board. • If a update fails the update file cache will be clear as it is assume all future updates require older updates. To start the daemon, if the Debian package is installed. $ sudo systemctl start oresat-linux-updaterd 2.1.1 State Machine If the board is powerred off when the Updater is updating, it will try resume the update next time the daemon is started. class oresat_linux_updater.dbus_server.State(value) The states oresat linux updaer daemon can be in. STANDBY = 0 Waiting for commands. 5 OreSat Linux Updater UPDATE = 1 Updating. UPDATE_FAILED = 2 Update failed, cache was cleared STATUS_FILE = 3 Making the status tar file. 2.1.2 D-Bus API class oresat_linux_updater.dbus_server.DBusServer(work_dir: str, cache_dir: str, log- ger: logging.Logger) The D-Bus Server wrapper ontop oresat linux updater that handles all threading. Note: all D-Bus Methods, Properties, and Signals follow Pascal case naming. Parameters • work_dir (str) – Archivepath to working directory. • cache_dir (str) – Archivepath to update archive cache directory. • logger (logging.Logger) – The logger object to use. StatusArchive D-Bus Signal with a str that will sent the absolute path to the updater status file after the MakeStatusArchive D-Bus Method is called. Type str UpdateResult D-Bus Signal with a Result value that will be sent after an update has finished or failed. Type uint8 AddUpdateArchive(update_archive: str) ! bool D-Bus Method that copies an update archive into the update archive cache. Parameters update_archive (str) – The absolute path to update archive for the updater to store. Returns True if a file was added or False on failure. Return type bool property AvailableUpdateArchives D-Bus Property for the number of update archives in cache. Readonly. Type uint32 property InstructionCommand D-Bus Property for current instruction command. Will be an empty str if not updating. Readonly. Type str property InstructionIndex D-Bus Property for current index in the instructions. Wil be 0 if not updating. Readonly. Type uint8 property ListUpdates D-Bus Property for get the list of update filename in the cache. Readonly. Type str 6 Chapter 2. OreSat Linux Updater Daemon OreSat Linux Updater MakeStatusArchive() ! str D-Bus Method to make status tar file with a copy of the dpkg status file and a file with the list of update archives in cache. Returns Filepath to new file or empty str. Return type str property StatusName D-Bus Property for the curent status as a State name. Readonly. Type str property StatusValue D-Bus Property for the curent status as a State value. Readonly. Type uint8 property TotalInstructions D-Bus Property for the number intruction in the current update. Will be 0 if not updating. Readonly. Type uint8 Update() ! bool D-Bus Method to load the oldest update archive in cache and runs update. Returns True if a the updater will start to update or False on failure. Return type bool property UpdateArchive D-Bus Property for the current update archive. Will be a empty str if the daemon is not currently updating. Readonly. Type str 2.1. Daemon 7 OreSat Linux Updater 8 Chapter 2. OreSat Linux Updater Daemon CHAPTER THREE UPDATE MAKER A shell interface for making update files. 3.1 Update Maker TDB 9 OreSat Linux Updater 10 Chapter 3. Update Maker CHAPTER FOUR FILES File used by or created by the OreSat Linux updater dameon or Update Maker. 4.1 Update Archive An update archive is tar file that will be used by the OreSat Linux Updater daemon to update the Linux board the daemon is running on. The update maker will be used to generate these files. 4.1.1 Compression Update files are a tar file compressed with xz. xz is used as it offers a great compression ratio and the extra compression time doesn’t matter, since the update archive will be generated on a ground station server. 4.1.2 Tar Name The file name will follow filename standards for oresat-linux-manager (OLM) with the keyword set to “update”. See https://oresat-linux.readthedocs.io/en/latest/standards/file-transfer.html for more info on OLM file name standards. Example, a update to the GPS board: gps_update_1612392143.tar.xz The date field in the filename will be used to determine the next file to used as the oldest file is always run first. 4.1.3 Tar Contents The update archive will always include a instructions.txt file. It can also include deb files (debian package files), bash script, and/or files to be used by bash scripts as needed. Example contents of a update archive: instructions.txt package1.deb package2.deb package3.deb bash_script1.sh bash_script2.sh bash_script3.sh bash_script2_external_file 11 OreSat Linux Updater 4.1.4 instructions.txt instruction.txt contatins a JSON string with with a list of instruction dictionaries with type and items fields. The instructions will be run in order. class oresat_linux_updater.instruction.InstructionType(value) All the valid instruction types for the instructions.txt file. BASH_SCRIPT = 0 Run a bash scripts. SUPPORT_FILE = 1 One or more support files that will by used by a bash script. DPKG_INSTALL = 2 Install one or more packages with dpkg. DPKG_REMOVE = 3 Remove one or more packages with dpkg. DPKG_PURGE = 4 Purge one or more packages with dpkg. Example instructions.txt: [ { "type":"DPKG_INSTALL", "items":["package1.deb"] }, { "type":"BASH_SCIPT", "items":["bash_script1.sh"] }, { "type":"BASH_SCIPT", "items":["bash_script2.sh"] }, { "type":"DPKG_INSTALL", "items":["package2.deb","package3.deb"] }, { "type":"DPKG_REMOVE", "items":["package4"] }, { "type":"BASH_SCIPT", "items":["bash_script3.sh"] } { "type":"DPKG_PURGE", "items":["package5","package6"] }, { "type":"SUPPORT_FILE", "items":["bash_script2_external_file"] } ] 12 Chapter 4. Files OreSat Linux Updater 4.2 Status Archive A status archive is a .tar.xz archive file that contains two files; a olu-status txt file and dpkg-status txt file. The oresat_linux_updater daemon will make this if the MakeStatusFile dbus method is called. After every update, a OLU status file should be made and sent to the ground station, so future update can be made. The OLU status tar files will be around 100KiB. 4.2.1 OLU Status txt File This file will contain a JSON list of update archive files that are in the cache and are available to be installed. Note: If the cache is empty the status txt file will contain “null”. Example OLU status file: [ "gps_update_1612392143.tar.xz", "gps_update_1612381721.tar.xz" ] 4.2.2 DPKG Status txt File A copy of the dpkg status file (/var/lib/dpkg/status) that will be used by the update maker to make future updates to the board. Example dpkg status file: Package: adduser Status: install ok installed Priority: important Section: admin Installed-Size: 849 Maintainer: Debian Adduser Developers<adduser @packages.debian.org> Architecture: all Multi-Arch: foreign Version: 3.118 Depends: passwd, debconf (>= 0.5)| debconf-2.0 Suggests: liblocale-gettext-perl, perl Conffiles: /etc/deluser.conf 773fb95e98a27947de4a95abb3d3f2a2 Description: add and remove users and groups This package includes the'adduser' and 'deluser' commands for creating and removing users. -'adduser' creates new users and groups and adds existing users to existing groups; -'deluser' removes users and groups and removes users froma given group. Adding users with 'adduser' is much easier than adding them manually. Adduser will choose appropriate UID and GID values, create a home directory, copy skeletal user configuration, and automate setting initial values for the user's password, real name and so on.
Recommended publications
  • Release Notes for Debian 11 (Bullseye), 32-Bit PC
    Release Notes for Debian 11 (bullseye), 32-bit PC The Debian Documentation Project (https://www.debian.org/doc/) September 27, 2021 Release Notes for Debian 11 (bullseye), 32-bit PC This document is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. The license text can also be found at https://www.gnu.org/licenses/gpl-2.0.html and /usr/ share/common-licenses/GPL-2 on Debian systems. ii Contents 1 Introduction 1 1.1 Reporting bugs on this document . 1 1.2 Contributing upgrade reports . 1 1.3 Sources for this document . 2 2 What’s new in Debian 11 3 2.1 Supported architectures . 3 2.2 What’s new in the distribution? . 3 2.2.1 Desktops and well known packages . 3 2.2.2 Driverless scanning and printing . 4 2.2.2.1 CUPS and driverless printing . 4 2.2.2.2 SANE and driverless scanning . 4 2.2.3 New generic open command . 5 2.2.4 Control groups v2 . 5 2.2.5 Persistent systemd journal .
    [Show full text]
  • Debian Basic Packaging Workshop
    Debian Basic Packaging Workshop Per Andersson <avtobiff@gmail.com> http://sigsucc.se/talks/debian-basic/ FOSS-STHLM, 2010 Outline Why Package for Debian How Does Software Enter Debian? Debian Infrastructure Debian Package Wedge Package Into Debian Maintaining, or, Keeping Package in Debian Tools References and Resources Tools and Practice Why Package for Debian • Help maintain a very popular GNU distribution • GNU and kernels Linux, HURD, kFreeBSD... • 12 arches, 25 000+ packages • Debian is free software with a social contract • Large user base, user and developer communities • Goal: The Universal Operating System • ...i.e. WORLD DOMINATION • Robust package management system • dpkg • APT • Contribute because it is a Good ThingTM • Also, very fun and rewarding How Does Software Enter Debian? • Upstream source • Voluntary work • Request For Package (RFP) • You want someone else to do the job • Intend To Package (ITP) • You will do the job • Checking existing work • Work Needing and Prospective Packages (WNPP) Debian Infrastructure • dpkg, debs • APT • apt-get • aptitude • synaptic • wajig • ... • Repository • dist: Directory containing "distributions", canonical entry point (meta information) • pool: Physical location for all packages of Debian (pre-)releases Debian Package • Source Package • Upstream source with debian/ dir or patched with diff.gz • debian/ • control • copyright • changelog • rules • Package related files • debian/bin-pkg-name • Binary Package • deb or udeb • Package name listed in control field Package • ar(1) archive with
    [Show full text]
  • Pipenightdreams Osgcal-Doc Mumudvb Mpg123-Alsa Tbb
    pipenightdreams osgcal-doc mumudvb mpg123-alsa tbb-examples libgammu4-dbg gcc-4.1-doc snort-rules-default davical cutmp3 libevolution5.0-cil aspell-am python-gobject-doc openoffice.org-l10n-mn libc6-xen xserver-xorg trophy-data t38modem pioneers-console libnb-platform10-java libgtkglext1-ruby libboost-wave1.39-dev drgenius bfbtester libchromexvmcpro1 isdnutils-xtools ubuntuone-client openoffice.org2-math openoffice.org-l10n-lt lsb-cxx-ia32 kdeartwork-emoticons-kde4 wmpuzzle trafshow python-plplot lx-gdb link-monitor-applet libscm-dev liblog-agent-logger-perl libccrtp-doc libclass-throwable-perl kde-i18n-csb jack-jconv hamradio-menus coinor-libvol-doc msx-emulator bitbake nabi language-pack-gnome-zh libpaperg popularity-contest xracer-tools xfont-nexus opendrim-lmp-baseserver libvorbisfile-ruby liblinebreak-doc libgfcui-2.0-0c2a-dbg libblacs-mpi-dev dict-freedict-spa-eng blender-ogrexml aspell-da x11-apps openoffice.org-l10n-lv openoffice.org-l10n-nl pnmtopng libodbcinstq1 libhsqldb-java-doc libmono-addins-gui0.2-cil sg3-utils linux-backports-modules-alsa-2.6.31-19-generic yorick-yeti-gsl python-pymssql plasma-widget-cpuload mcpp gpsim-lcd cl-csv libhtml-clean-perl asterisk-dbg apt-dater-dbg libgnome-mag1-dev language-pack-gnome-yo python-crypto svn-autoreleasedeb sugar-terminal-activity mii-diag maria-doc libplexus-component-api-java-doc libhugs-hgl-bundled libchipcard-libgwenhywfar47-plugins libghc6-random-dev freefem3d ezmlm cakephp-scripts aspell-ar ara-byte not+sparc openoffice.org-l10n-nn linux-backports-modules-karmic-generic-pae
    [Show full text]
  • Pdf-Preview.Pdf
    The Debian Administrator's Handbook Raphaël Hertzog and Roland Mas Copyright © 2003-2013 Raphaël Hertzog Copyright © 2006-2013 Roland Mas Copyright © 2012-2013 Freexian SARL ISBN: 979-10-91414-02-9 (English paperback) ISBN: 979-10-91414-03-6 (English ebook) This book is available under the terms of two licenses compatible with the Debian Free Software Guide- lines. Creative Commons License Notice: This book is licensed under a Creative Commons Attribution- ShareAlike 3.0 Unported License. è http://creativecommons.org/licenses/by-sa/3.0/ GNU General Public License Notice: This book is free documentation: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Founda- tion, either version 2 of the License, or (at your option) any later version. This book is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Gen- eral Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. Show your appreciation This book is published under a free license because we want everybody to benefit from it. That said maintaining it takes time and lots of efforts, and we appreciate being thanked for this. If you find this book valuable, please consider contributing to its continued maintenance either by buying a pa- perback copy or by making a donation through the book's
    [Show full text]
  • Release Notes for Debian 9 (Stretch), 64-Bit Little-Endian Powerpc
    Release Notes for Debian 10 (buster), 64-bit little-endian PowerPC The Debian Documentation Project (https://www.debian.org/doc/) September 29, 2021 Release Notes for Debian 10 (buster), 64-bit little-endian PowerPC This document is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. The license text can also be found at https://www.gnu.org/licenses/gpl-2.0.html and /usr/ share/common-licenses/GPL-2 on Debian systems. ii Contents 1 Introduction 1 1.1 Reporting bugs on this document . 1 1.2 Contributing upgrade reports . 1 1.3 Sources for this document . 2 2 What’s new in Debian 10 3 2.1 Supported architectures . 3 2.2 What’s new in the distribution? . 3 2.2.1 UEFI Secure Boot . 4 2.2.2 AppArmor enabled per default . 4 2.2.3 Optional hardening of APT . 5 2.2.4 Unattended-upgrades for stable point releases . 5 2.2.5 Substantially improved man pages for German speaking users . 5 2.2.6 Network filtering based on nftables framework by default .
    [Show full text]
  • Release Notes for Debian 9 (Stretch), 32-Bit MIPS (Big Endian)
    Release Notes for Debian 9 (stretch), 32-bit MIPS (big endian) The Debian Documentation Project (http://www.debian.org/doc/) August 6, 2021 Release Notes for Debian 9 (stretch), 32-bit MIPS (big endian) This document is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. The license text can also be found at http://www.gnu.org/licenses/gpl-2.0.html and /usr/ share/common-licenses/GPL-2 on Debian. ii Contents 1 Introduction 1 1.1 Reporting bugs on this document . 1 1.2 Contributing upgrade reports . 1 1.3 Sources for this document . 2 2 What’s new in Debian 9 3 2.1 Supported architectures . 3 2.2 What’s new in the distribution? . 3 2.2.1 CDs, DVDs, and BDs . 4 2.2.2 Security . 4 2.2.3 GCC versions . 4 2.2.4 MariaDB replaces MySQL . 4 2.2.5 Improvements to APT and archive layouts . 5 2.2.6 New deb.debian.org mirror . 5 2.2.7 Move to ”Modern” GnuPG .
    [Show full text]
  • Release Notes for Debian 10 (Buster), IBM System Z
    Release Notes for Debian 10 (buster), IBM System z The Debian Documentation Project (https://www.debian.org/doc/) September 30, 2021 Release Notes for Debian 10 (buster), IBM System z This document is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. The license text can also be found at https://www.gnu.org/licenses/gpl-2.0.html and /usr/ share/common-licenses/GPL-2 on Debian systems. ii Contents 1 Introduction 1 1.1 Reporting bugs on this document . 1 1.2 Contributing upgrade reports . 1 1.3 Sources for this document . 2 2 What’s new in Debian 10 3 2.1 Supported architectures . 3 2.2 What’s new in the distribution? . 3 2.2.1 UEFI Secure Boot . 4 2.2.2 AppArmor enabled per default . 4 2.2.3 Optional hardening of APT . 5 2.2.4 Unattended-upgrades for stable point releases . 5 2.2.5 Substantially improved man pages for German speaking users . 5 2.2.6 Network filtering based on nftables framework by default .
    [Show full text]
  • Release Notes for Debian 7.0 (Wheezy), SPARC
    Release Notes for Debian 7.0 (wheezy), SPARC The Debian Documentation Project (http://www.debian.org/doc/) November 20, 2018 Release Notes for Debian 7.0 (wheezy), SPARC This document is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. The license text can also be found at http://www.gnu.org/licenses/gpl-2.0.html and /usr/ share/common-licenses/GPL-2 on Debian. ii Contents 1 Introduction 1 1.1 Reporting bugs on this document . 1 1.2 Contributing upgrade reports . 1 1.3 Sources for this document . 2 2 What’s new in Debian 7.0 3 2.1 Supported architectures . 3 2.2 What’s new in the distribution? . 4 2.2.1 CDs, DVDs and BDs . 4 2.2.2 Multiarch . 5 2.2.3 Dependency booting . 5 2.2.4 systemd . 5 2.2.5 Multimedia . 5 2.2.6 Hardened security . 5 2.2.7 AppArmor . 6 2.2.8 The stable-backports section . 6 2.2.9 The stable-updates section .
    [Show full text]
  • Administrative Health Data Mining Using Debian GNU/Linux
    Administrative Health Data Mining using Debian GNU/Linux Graham J Williams CSIRO Data Mining GPO Box 664 Canberra, ACT 2601, Australia [email protected] Abstract Government departments are increasingly turning to GNU/Linux for their desktops, in addition to their servers. In this paper we look into using com- modity hardware and software to manage and analyse large collections of data. CSIRO Data Mining has been using Debian GNU/Linux as a key plat- form for research and development in Data Mining for several years. During that time we have developed tools for rapidly accessing and analysing data and an environment for the analysis of very large datasets with delivery of results over secure web connections to clients as web services. All work has been performed on Debian GNU/Linux platforms with a variety of open source software including MySQL, Python, R, LaTeX, Apache, and locally developed wajig. In this paper we relate our successful experiences (and lessons learnt) with deploying Debian GNU/Linux, particularly in collabo- ration with a government department. 1 Introduction CSIRO Data Mining has been using Debian GNU/Linux for many years for the management and analysis of very large collections of data. Datasets ranging in sizes of up to 10 GB are often processed, massaged into various shapes, and analysed using many different tools. Sophisticated tools and environments are required in order to manage data of such magnitude and we have worked toward a computing environment based on GNU/Linux running on standard PCs. 1 Data Mining brings together technology from databases, artificial intelligence, and statistics, amongst others.
    [Show full text]
  • The Debian Administrator's Handbook
    The Debian Administrator's Handbook "The Debian Administrator's Handbook" is the title of the translation of the French best- seller known as Cahier de l'Admin Debian. Written by two Debian developers — Raphaël Hertzog and Roland Mas — it's a fantastic resource for all users of a Debian-based distribution. Given that traditional editors did not want to take the risk to make this translation, we decided to do the translation ourselves and to self-publish the result. But we want to go further than this, we want the result to be freely available (that is under the terms of a license compatible with the Debian Free Software Guidelines of course). However it's very difficult to spend several months of work without income. That's why we're running a fundraising campaign. Thanks to the first 380 supporters, we reached our first goal and we're now sure that the translation will happen. But your support is still very important to reach the second goal: the liberation of the book. It's easier to support a project that has already achieved something, instead of having only promised it. That's why we're releasing this sample chapter of the book. We hope that you'll enjoy it and that you'll join the hundreds of people who pledged some money towards the liberation of the book. Click here and contribute to the liberation fund Raphaël Hertzog & Roland Mas, Free Sample of The Debian Administrator's Handbook — http://debian-handbook.info Chapter 6. Maintenance and Updates: The APT Tools What makes Debian so popular with administrators is how easily software can be installed and how easily the whole system can be updated.
    [Show full text]
  • Proceedings of the 8Th Debian Conference
    Proceedings of the 8th Debian Conference DebConf8 Proceedings Team August 10th-16th, 2008 Preface These proceedings contain a record of the technical and social events held during 2008 Debian Developers Meeting, DebConf 8, at Mar del Plata (Ar- gentina), an open event aimed to improve communication between everyone involved in Debian development. This document has been arranged by the DebConf8 Proceedings Team, on behalf of the DebConf8 Organization Team. The authorship, copyright and licensing information of each article is specified in the proper chapter. In addition to a full schedule of technical, social and policy talks, DebConf pro- vides an opportunity for developers, contributors and other interested people to meet in person and work together more closely. It has taken place annually since 2000 in locations as varied as Canada, Finland and Mexico. Debian Con- ferences have featured speakers from around the world. They have also been extremely beneficial for developing key Debian software components, includ- ing the new Debian Installer, and for improving Debian's internationalization. More information about DebConf8 and the Debian Developers Meeting can be found on the DebConf website at http://www.debconf.org/. Contents Preface . ii Contents i 1 Knowledge, Power and free Beer 2 1.1 Free Beer . 2 1.2 Knowledge . 7 1.3 Power . 11 2 Solving Package Dependencies 18 2.1 Introduction . 19 2.2 The Past: EDOS . 20 2.3 Present and Future: Mancoosi . 33 3 Best practises in team package maintenance 44 3.1 Introduction . 44 3.2 Questions . 45 4 Custom Debian Distributions 48 4.1 Symbiosis between experts and developers .
    [Show full text]
  • Release Notes for Debian 10 (Buster), Armv7 (EABI Hard-Float ABI)
    Release Notes for Debian 10 (buster), ARMv7 (EABI hard-float ABI) The Debian Documentation Project (https://www.debian.org/doc/) October 2, 2021 Release Notes for Debian 10 (buster), ARMv7 (EABI hard-float ABI) This document is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. The license text can also be found at https://www.gnu.org/licenses/gpl-2.0.html and /usr/ share/common-licenses/GPL-2 on Debian systems. ii Contents 1 Introduction 1 1.1 Reporting bugs on this document . 1 1.2 Contributing upgrade reports . 1 1.3 Sources for this document . 2 2 What’s new in Debian 10 3 2.1 Supported architectures . 3 2.2 What’s new in the distribution? . 3 2.2.1 UEFI Secure Boot . 4 2.2.2 AppArmor enabled per default . 4 2.2.3 Optional hardening of APT . 5 2.2.4 Unattended-upgrades for stable point releases . 5 2.2.5 Substantially improved man pages for German speaking users . 5 2.2.6 Network filtering based on nftables framework by default .
    [Show full text]