Package Management
-
Packages Bianbu software packages follow the Debian package standards and are managed using
apt
. -
Repositories Bianbu provides the following official APT package repositories:
- Bianbu 1.0 (End of Life) : http://archive.spacemit.com/bianbu-ports/
- Bianbu 2.0 (Current Release): http://archive.spacemit.com/bianbu/
Update Package
To refresh the local package, run the following command in the terminal:
apt-get update
Install or Update a Package
To install or upgrade a specific package — for example, hello
— run the following command:
apt-get install hello
Remove a Package
To uninstall a package while preserving its configuration files — for example, hello
, run the following command::
apt-get remove hello
To completely remove a package along with its configuration files, run the following command::
apt-get purge hello