Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create aptss #235

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions aptss
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
tags: [ packaging ]
---
# To find packages matching <phrase>:
aptss search <phrase>

# To show information on a package:
aptss show <package>

# To fetch package list:
aptss update

# To download and install the updates and (UNLIKE aptss-get) install new necessary packages:
aptss upgrade

# To download and install the updates AND install new necessary packages
# AND remove packages that stand in the way of the upgrade - use with caution:
aptss dist-upgrade

# To perform a full system upgrade:
aptss update && aptss upgrade

# To install package(s):
aptss install <package>...

# To uninstall package(s):
aptss remove <package>...

# To remove automatically all unused packages:
aptss autoremove

# To list dependencies of a package:
aptss depends <package>...

# To remove packages and delete their config files:
aptss purge <package>...

# To list all packages installed:
aptss list --installed

---
aptss is a wrapper of apt-fast and apt in order to accelerate package installation and download for spark app store and linuxdeepin