sidux.com
Menu

News

Give back
Last 3 Contributions
25-08-2008 20.00
20-08-2008 15.00
18-08-2008 15.00

Donate


Sponsor
hetzner.de

Languages
Preferred language:



Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Author Message
amenditman
Post subject: Limit Included Packages  PostPosted: Jul 09, 2008 - 01:35 AM



Joined: Jul 08, 2008
Posts: 19
Location: Florida
Status: Offline
Hi,

I'm kind of new to Linux and all the applications that are installed really are confusing.

How about a minimal Live CD that either has one application for each basic need, word processor, web browser, picture viewer, etc., or maybe a list of popular ones which are available and the user can select from the list during install.

I understand that Linux is about choices, but the KMenu as installed from the Live CD is overwhelming.

What do you think?

Amenditman
 
 View user's profile Send private message  
Reply with quote Back to top
BlueShadow
Post subject: Limit Included Packages  PostPosted: Jul 09, 2008 - 01:44 AM



Joined: Jan 10, 2007
Posts: 724

Status: Offline
Hi,

obviousely you installed the kde-full version.
There are also the much smaller kde-lite (pretty basic) and xfce(more or less complete desktop) versions availlable on the mirrors

Greets, Blue Shadow
 
 View user's profile Send private message  
Reply with quote Back to top
amenditman
Post subject: RE: Limit Included Packages  PostPosted: Jul 09, 2008 - 04:18 AM



Joined: Jul 08, 2008
Posts: 19
Location: Florida
Status: Offline
Thanks, I'll check those out.
 
 View user's profile Send private message  
Reply with quote Back to top
amenditman
Post subject: RE: Limit Included Packages  PostPosted: Jul 09, 2008 - 10:27 PM



Joined: Jul 08, 2008
Posts: 19
Location: Florida
Status: Offline
OK, I see, but, can I just start to uninstall packaged applications which I find I don't use? I mean without doing a re-install of a different version?
 
 View user's profile Send private message  
Reply with quote Back to top
cleary
Post subject: Re: RE: Limit Included Packages  PostPosted: Jul 10, 2008 - 12:32 AM



Joined: Nov 27, 2006
Posts: 419
Location: Griffith NSW Australia
Status: Offline
amenditman wrote:
OK, I see, but, can I just start to uninstall packaged applications which I find I don't use? I mean without doing a re-install of a different version?


RTBM == Read The Bluewater Manual

http://manual.sidux.com
 
 View user's profile Send private message  
Reply with quote Back to top
amenditman
Post subject: RE: Re: RE: Limit Included Packages  PostPosted: Jul 10, 2008 - 02:32 AM



Joined: Jul 08, 2008
Posts: 19
Location: Florida
Status: Offline
Sorry for being snippy Cleary.

I am reading the manual, though I haven't finished and don't understand everything yet.

I was just hoping to get a response in the tone of the above, and was encouraged to ask.
 
 View user's profile Send private message  
Reply with quote Back to top
hubi
Post subject: Re: RE: Limit Included Packages  PostPosted: Jul 10, 2008 - 02:49 AM



Joined: Nov 30, 2006
Posts: 3087
Location: Budapest
Status: Offline
amenditman wrote:
OK, I see, but, can I just start to uninstall packaged applications which I find I don't use? I mean without doing a re-install of a different version?
Yes.

The root commands are:
Code:
apt-get remove packagename # deletes a package
apt-get remove --purge packagename # deletes a package and removes the config files in /etc (not in your $HOME)


To remove a package "family" like openoffice.org you can also use this command:
Code:
apt-get remove [--purge] packagename*

# example:
apt-get remove --purge openoffice.org*
Please always read the output of apt before you confirm.

The autoremove option of apt is disabled in sidux, in a rolling release it might lead to mayhem. But remaining libs do no harm.

hubi

_________________
Bonitas stultitiaque sodales sunt.
 
 View user's profile Send private message  
Reply with quote Back to top
sleekmason
Post subject:   PostPosted: Jul 10, 2008 - 03:01 AM



Joined: Dec 12, 2006
Posts: 178

The relevent sections on package managment should give you some basic info about apt-get.

Indeed you can just remove the packages you don't need without any problem. If this was a fresh install for you, it might be better to burn the kdelite version using k3b (see manual) before you start getting your system really set up. It would just save you some heartache of removing programs.

An easy way to see what programs are on your system is by using synaptic package manager to look at the programs. Please read the manual about using synaptic as it is not advised to use it for upgrading or installing xorg and the like.

If it is installed it will be under system in your menu. If not, you can install synaptic by opening a terminal, su to root,
then
Code:
apt-get update && apt-get install synaptic
,

Good luck and enjoy:)

_________________
You've made it all the way to sidux. Sit down, rest a while:)
 
 View user's profile Send private message  
Reply with quote Back to top
muchan
Post subject:   PostPosted: Jul 10, 2008 - 11:47 AM



Joined: Aug 24, 2007
Posts: 393
Location: Ljubljana
Status: Offline
An easier way to see what programs are on your system is just write
ls /usr/bin
on command line. Smile
 
 View user's profile Send private message  
Reply with quote Back to top
makke
Post subject:   PostPosted: Jul 10, 2008 - 02:24 PM



Joined: Nov 26, 2006
Posts: 155
Location: Hagen
Status: Offline
but there is not only /usr/bin!
dpkg -l | awk '/^ii/{ print $2 }' | grep -v -e ^lib -e -dev
generates a nice package-list
 
 View user's profile Send private message  
Reply with quote Back to top
sleekmason
Post subject:   PostPosted: Jul 10, 2008 - 05:43 PM



Joined: Dec 12, 2006
Posts: 178

you guys crack me up!Smile

_________________
You've made it all the way to sidux. Sit down, rest a while:)
 
 View user's profile Send private message  
Reply with quote Back to top
piper
Post subject:   PostPosted: Jul 11, 2008 - 10:23 PM
Team Member


Joined: Nov 27, 2006
Posts: 1936
Location: underworld
Status: Offline
Code:
dpkg -l|grep ^ii >list.txt
will put that list in /home and can be printed out Wink

_________________
sidux uses high compression technology > special care is needed when burning the iso > please burn in DAO-mode, DAO or DIE. NEVER EVER do a apt-get upgrade or use adept, synaptic or aptitude
 
 View user's profile Send private message Send e-mail Visit poster's website  
Reply with quote Back to top
GoinEasy9
Post subject:   PostPosted: Jul 12, 2008 - 06:13 AM



Joined: Jul 07, 2007
Posts: 130
Location: Manorville, New York
Status: Offline
the shorter the better: ls /usr/bin >list.txt

but piper's is easier to read with the extra info.

_________________
sidux Gaia 64 - ECS 6100SM-M AMD64 AthlonX2
sidux Gaia 32 - Asus P4PE-X P4 Nvidia
sidux Eros 32 - Asus P4PE-X P4 Ati
sidux Gaia 32 - Thinkpad G41
sidux Eros 32 - M2N32SLI-WE AMD64 AthlonX2
 
 View user's profile Send private message  
Reply with quote Back to top
h2
Post subject:   PostPosted: Jul 12, 2008 - 06:32 AM



Joined: Nov 28, 2006
Posts: 4095

Status: Offline
and /usr/sbin

complete install list: dpkg -l | egrep '^(hi|ii)' | cut -d ' ' -f 3 > list.txt

_________________
sidux Maintenance script: dist-upgrade, kernel install, general utilities: smxi
Backup script [using rdiff-backup]: rd-h2.sh
 
 View user's profile Send private message  
Reply with quote Back to top
ModestUser
Post subject:   PostPosted: Jul 12, 2008 - 10:19 AM



Joined: Jan 07, 2008
Posts: 195

Status: Offline
I do it even shorter:
<TAB><TAB> Wink
and more comfortable:
Code:
dpkg -l | awk '/^.i/ { print $2 " (" $3 ")" }' | $PAGER

_________________
cat /dev/coffeemachine | cupsaccept
 
 View user's profile Send private message  
Reply with quote Back to top
Display posts from previous:     
Jump to:  
All times are GMT - 1 Hours
Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Powered by PNphpBB2 © 2003-2007 The PNphpBB Group
Credits
 
Logos and trademarks are the property of their respective owners, comments are property of their posters, the rest is © 2006-2008 by sidux e.V., 10407 Berlin, Kniprodestr. 104. sidux e.V. is a Berlin, Germany based non-profit foundation. Consult Impressum and Legal Terms for details. sidux is Free Software released under the GNU/GPL license and other compatible licenses.
This CMS is powered by PostNuke, all themes used at this site are released under the GNU/GPL license. designed by w3you.