-
Notifications
You must be signed in to change notification settings - Fork 1
Packages
TODO: This page is a work in progress
The recommended operating system for Odroid is Debian, and as such reguardless if you install software from source or from binaries, knowing those commands is important to doing specific tasks.
dpkg --status <string>
Shows the information about a package. This is useful if you want to know if the software is installed or not.
Alternatively, you could use dpkg-query.
This command really just shows the installed packages (ii) in /var/lib/dpkg/status
pkg-config <string> --libs
Generally it will output an answer that starts with -L/usr/lib or -L/usr/local/lib. Arguements start with -l<string>
apt-cache search <string>
Generally the software that is installed is listed first. Anything that isn't is listed secondary.
apt-cache show <string>
apt-get commands require root access, so to use this command you will need to start with sudo.
sudo apt-get update && sudo apt-get upgrade
Update will check the repositories for new software, and upgrade will install the software.
If all this is confusing, or you need a textual user interface, run sudo aptitude