Software installation on modern Ubuntu

Ralf Mardorf ralf.mardorf at alice-dsl.net
Sat Aug 26 19:55:29 UTC 2017


PS:

"auto-apt search Xlib.h" -
http://wiki.linuxquestions.org/wiki/Auto-apt

"sudo auto-apt run ./configure" -
https://www.howtogeek.com/106526/how-to-resolve-dependencies-while-compiling-software-on-ubuntu/

FWIW I only run

  tool update

or

  tool upd

to upgrade everything, since I wrote a script named "tool", so that I
don't need to run the commands for each Ubuntu tool one after the other.

$ cat /usr/local/bin/tool
# snip
     *)
        shift
        color="-o APT::Color=0"
        keepp="-o APT::Keep-Downloaded-Packages=1 "
        quiet=""
        case $1 in
          -q*|--quiet)
            quiet="-qq ";;
        esac
        case $1 in
# snip
            sudo apt update $quiet$color && \
            sudo apt-file update && \
            sudo auto-apt updatedb && \
            sudo auto-apt update-local && \
            sudo apt full-upgrade $keepp$color && \
            sudo apt autoremove $color;;
# snip





More information about the Ubuntu-devel-discuss mailing list