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


-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss

Reply via email to