The Following 6 Users Say Thank You to aspidites For This Useful Post: | ||
![]() |
2009-12-26
, 08:38
|
Posts: 755 |
Thanked: 406 times |
Joined on Feb 2008
@ UK
|
#2
|
The Following User Says Thank You to codeMonkey For This Useful Post: | ||
![]() |
2009-12-26
, 10:10
|
Posts: 22 |
Thanked: 1 time |
Joined on Dec 2009
@ Dortmund, Germany
|
#3
|
tar -xvzf aptly-[VERSION].tar.gz
The Following User Says Thank You to NuMetal For This Useful Post: | ||
![]() |
2009-12-26
, 17:45
|
Posts: 402 |
Thanked: 229 times |
Joined on Nov 2009
@ Missouri, USA
|
#4
|
![]() |
2009-12-28
, 10:28
|
Posts: 402 |
Thanked: 229 times |
Joined on Nov 2009
@ Missouri, USA
|
#5
|
aptly -ic pkg1 pkg2...
aptly -Cic pkg1 pkg2...
The Following User Says Thank You to aspidites For This Useful Post: | ||
![]() |
2010-01-02
, 06:55
|
Posts: 402 |
Thanked: 229 times |
Joined on Nov 2009
@ Missouri, USA
|
#6
|
The Following User Says Thank You to aspidites For This Useful Post: | ||
![]() |
2010-01-04
, 03:03
|
Posts: 402 |
Thanked: 229 times |
Joined on Nov 2009
@ Missouri, USA
|
#8
|
aptly -s emulator
I got tired of having to use separate tools to manage my packages. As it stood before, I had to use apt-get to install and remove remote packages, apt-cache to search for and gather information about packages, and dpkg to install local packages (after of course making sure the dependencies were installed with apt-get).
Since then, I've written a python script called aptly to allow me to take advantage of the most frequently options of the above tools. As an added bonus, aptly allows me to combine some of the above tools in one command without the use of "&&", grep, etc.
Here are the current features:
- Install local deb files with automatic dependency resolution
- Install local and remote packages from the same command:
Code:
- Get information about multiple packages at once
- Quickly update and upgrade installed packages:
Code:
- Install multiple files simultaneously:
Code:
or sequentially:
Code:
While I find this script helpful, I'm not sure if anyone else is interested, which is why I haven't built an official package yet. To try it out, download the *tar.gz archive and run:aspidites | blog | aspidites@inbox.com
Last edited by aspidites; 2009-12-30 at 07:29.