OESF Portables Forum

Everything Else => Zaurus - Everything Development => Distros, Development, and Model Specific Forums => Archived Forums => X/Qt => Topic started by: Cresho on April 25, 2006, 10:04:21 pm

Title: Installing Programs To Debian
Post by: Cresho on April 25, 2006, 10:04:21 pm
just out of curiosity, I installed debian to my pda since i have tons of space.  After this was successful, I want to install programs based on debian.

what methods are there?  I'd like to know some of the bumpy roads you guys went through.

ohh btw, i can view my medical drug guide in this mozilla. "which is a good thing."
Title: Installing Programs To Debian
Post by: ArchiMark on April 25, 2006, 10:53:14 pm
Typical way to add programs (and upgrade Debian too...) in Debian is using 'apt-get' as follows...this assumes that you're little Z is connected to the net either by WiFi or ethernet card....

To add programs:
Code: [Select]
$su
#apt-get install synaptic

Synaptic is a GUI install program for Debian, works great, allows you to see what you want to install, get some info on those apps, select and then install them. Very simple to use

For a text-based install program then substitute aptitude for synaptic....

To upgrade Debian:
Code: [Select]
$su
#apt-get update
#apt-get upgrade

There are some other commands besides these but this should be enough to get you going....

HTH,

Mark