LinuxQuestions.org
Have you heard the LinuxQuestions.org Podcast?
Go Back   LinuxQuestions.org > Forums > Linux > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices

Tags used in this thread
Popular LQ Tags ,

Reply
 
Thread Tools
Old 10-02-2004, 09:32 PM   #31
johnMG
Member
 
Registered: Jul 2003
Location: CT, USA
Distribution: Debian Sarge (server), Etch (work/home)
Posts: 601
Thanked: 0

[Log in to get rid of this advertisement]
Eeek again! No rcconf package for "testing"! It's available for stable and unstable though. Great utility.
johnMG is offline     Reply With Quote
Old 10-02-2004, 09:40 PM   #32
Dead Parrot
Senior Member
 
Registered: Mar 2004
Distribution: Debian GNU/kFreeBSD
Posts: 1,597
Thanked: 0
Quote:
No rcconf package for "testing"!
Try sysvconfig. It has all the functionality of rcconf (and more).
Dead Parrot is offline     Reply With Quote
Old 10-02-2004, 11:22 PM   #33
johnMG
Member
 
Registered: Jul 2003
Location: CT, USA
Distribution: Debian Sarge (server), Etch (work/home)
Posts: 601
Thanked: 0
Quote:
Try sysvconfig. It has all the functionality of rcconf (and more). :)
<Burns>Exxxxcellent.</Burns>

Thanks!

Interestingly, I see that both discover and hotplug are listed there (though they are both "inactive" -- not automatically started up at boot-time). kudzu -- although also installed on my system -- is not even listed. Weird, no?

Are discover, hotplug, and kudzu related? How? {off to read some more man pages...}.

Last edited by johnMG; 10-02-2004 at 11:26 PM..
johnMG is offline     Reply With Quote
Old 10-02-2004, 11:39 PM   #34
johnMG
Member
 
Registered: Jul 2003
Location: CT, USA
Distribution: Debian Sarge (server), Etch (work/home)
Posts: 601
Thanked: 0
Just discovered a couple more good "post-install" packages to install:

configure-debian

galternatives
johnMG is offline     Reply With Quote
Old 10-03-2004, 01:47 PM   #35
utanja
Member
 
Registered: Apr 2004
Location: Europe:Salzburg Austria USA:Orlando,Florida;
Distribution: Debian Sid-Custom kernel
Posts: 508
Thanked: 3
Quote:
Originally posted by Dead Parrot
Try sysvconfig. It has all the functionality of rcconf (and more).
wundabar....!!!!!

ihave for a program to replace the services option in gnome-systemsptools.....this is excellent..
utanja is offline     Reply With Quote
Old 10-05-2004, 08:43 AM   #36
Underhill
Member
 
Registered: Aug 2004
Location: Kuala Lumpur, Malaysia
Distribution: Debian Etch
Posts: 58
Thanked: 0
My Gnome's Applications ==> System Tools ==> Services is gone after installing sysvconfig. Is there any way i could get it back?
Underhill is offline     Reply With Quote
Old 10-05-2004, 01:23 PM   #37
Dead Parrot
Senior Member
 
Registered: Mar 2004
Distribution: Debian GNU/kFreeBSD
Posts: 1,597
Thanked: 0
Quote:
My Gnome's Applications ==> System Tools ==> Services is gone after installing sysvconfig. Is there any way i could get it back?
Apparently gnome-system-tools and sysvconfig somehow conflict with each other. If you prefer to manage services via gnome-system-tools, you can try to first remove both programs entirely and then make a fresh install of gnome-system-tools:

# aptitude purge sysvconfig
# aptitude purge gnome-system-tools
# aptitude -r install gnome-system-tools
Dead Parrot is offline     Reply With Quote
Old 10-05-2004, 03:14 PM   #38
Underhill
Member
 
Registered: Aug 2004
Location: Kuala Lumpur, Malaysia
Distribution: Debian Etch
Posts: 58
Thanked: 0
Dead Parrot, that helps. Thank you.
Underhill is offline     Reply With Quote
Old 10-05-2004, 11:10 PM   #39
darthtux
Senior Member
 
Registered: Dec 2001
Location: 35.7480° N, 95.3690° W
Distribution: Debian, Gentoo, Red Hat, Solaris
Posts: 2,070
Thanked: 0
Quote:
Originally posted by johnMG
Eeek again! No rcconf package for "testing"! It's available for stable and unstable though. Great utility.
I'm running testing
root@poseidon ~ # apt-cache search rcconf
rcconf - Debian Runlevel configuration tool
root@poseidon ~ #

Run apt-get update && apt-get install rcconf
darthtux is offline     Reply With Quote
Old 10-10-2004, 06:15 AM   #40
darthtux
Senior Member
 
Registered: Dec 2001
Location: 35.7480° N, 95.3690° W
Distribution: Debian, Gentoo, Red Hat, Solaris
Posts: 2,070
Thanked: 0
I found sysv-rc-conf which is a replacement for rcconf.
darthtux is offline     Reply With Quote
Old 10-12-2004, 12:45 PM   #41
macondo
Senior Member
 
Registered: Jul 2003
Location: Panama
Distribution: Debian Sid
Posts: 1,012
Thanked: 0

Original Poster
How to keep your system clean

I usually do it this way:

#apt-get -y remove --purge <package>
#apt-get clean

#debfoster
keep what you want, sometimes after you purge, still there are other libraries pertaining to the app removed, which are left behind. Example: emacsen, after removing emacs21. If you make a mistake press 'u', to change your selection. Do not get rid of libraries you don't what they are, leave them there, deborphan will give you a list of the obsolete ones.

#deborphan
it gives you a list of 'orphaned' libs, to get rid of them:

#deborphan | xargs apt-get -y rmove --purge
#apt-get clean

it keeps me under 1 GB of used space in my hd.

Add to that:

#apt-get install localepurge

choose only your locales, choose your locale environment, say 'no' to localized man pages, and 'no' to new locales. It should save you 40-50 MB right there.

Still, like Dead Parrot says, fire up mc, and delete stuff like hidden files, you don't need. Example: i don't use gnome, so i nuke gconf, gnome2, etcI usually do it this way:


I do the debfoster/deborphan bit twice a week.

Last edited by macondo; 10-13-2004 at 06:12 PM..
macondo is offline     Reply With Quote
Old 10-12-2004, 02:32 PM   #42
Dead Parrot
Senior Member
 
Registered: Mar 2004
Distribution: Debian GNU/kFreeBSD
Posts: 1,597
Thanked: 0
Excellent advices, macondo. When you update your "Debian Post-Install Howto"
http://www.linuxquestions.org/questi...icle&artid=259 , there's absolutely no need at all to refer to my sporadic comments. You know this stuff better than I do.
Dead Parrot is offline     Reply With Quote
Old 10-12-2004, 05:09 PM   #43
macondo
Senior Member
 
Registered: Jul 2003
Location: Panama
Distribution: Debian Sid
Posts: 1,012
Thanked: 0

Original Poster
I like to think we are all part of this.
macondo is offline     Reply With Quote
Old 10-13-2004, 06:23 PM   #44
macondo
Senior Member
 
Registered: Jul 2003
Location: Panama
Distribution: Debian Sid
Posts: 1,012
Thanked: 0

Original Poster
How to switch from LILO to GRUB

The first thing is to get rid of LILO:

#apt-get -y remove --purge lilo
#apt-get clean

Then, to install grub:

#apt-get update
#apt-get install grub
#grub-install /dev/hdx

where 'x' is the letter of the hd in question. For example, if you only got one hd, then it's 'hda', if you got a slave one, then it will probably be 'hdd' or whatever, make sure you know what your second one is, if you're going to install grub on it.

#update grub

This last step is crucial!!!

reboot, to check it out.

Last edited by macondo; 10-13-2004 at 06:26 PM..
macondo is offline     Reply With Quote
Old 10-13-2004, 07:55 PM   #45
macondo
Senior Member
 
Registered: Jul 2003
Location: Panama
Distribution: Debian Sid
Posts: 1,012
Thanked: 0

Original Poster
Nano Mini-Howto Petition

Can someone post a mini-howto on Nano?

It doesn't have to be deep, just how to view, edit, save, and exit? Somebody asked me and i don't know.

Dead Parrot?

Thanks in advance!
macondo is offline     Reply With Quote

Reply

Bookmarks


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
DISCUSSION: Debian Post-Install Configuration macondo LinuxAnswers Discussion 5 12-11-2008 11:21 PM
(new to Debian) post install questions gugamare Debian 4 11-01-2005 10:01 AM
debian ugly post-install ssaady Debian 4 10-27-2005 07:02 AM
FC3 installation fails at post install configuration stage grstaker Fedora - Installation 8 06-20-2005 11:43 AM
RedHat 7.3 post install configuration LOCKS UP sput Linux - Distributions 7 07-19-2002 01:10 PM


All times are GMT -5. The time now is 06:19 AM.

Main Menu
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
RSS2  LQ Podcast
RSS2  LQ Radio
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration