View previous topic :: View next topic |
Author |
Message |
smching Junior Member
Joined: 04 Dec 2007 Posts: 5
|
Posted: Thu Dec 06, 2007 6:45 am Post subject: Remove unnecessary components |
|
|
I want to use SMS for the Hylafax only. How am I to remove extra components from SMS?
Thank You |
|
Back to top |
|
baboo Senior Member
Joined: 04 Sep 2007 Posts: 676
|
Posted: Thu Dec 06, 2007 7:24 am Post subject: |
|
|
Hi,
There are two ways that I am aware of:
1. removepkg - you must name specific package, could get messy
removepkg /var/log/packages/nameofpackage*
then sed -e 's/d1:12345:respawn:/#d1:12345:respawn:/g' -i /etc/inittab
2. webmin - you can remove modules;
good luck |
|
Back to top |
|
gerasimos_h Site Admin
Joined: 09 Aug 2007 Posts: 1757 Location: Greece
|
Posted: Thu Dec 06, 2007 9:31 am Post subject: |
|
|
That's partial right.
Do NOT
sed -e 's/d1:12345:respawn:/#d1:12345:respawn:/g' -i /etc/inittab
as it will disable faxgetty. If you done it, do the opposite
sed -e 's/#d1:12345:respawn:/d1:12345:respawn:/g' -i /etc/inittab
or open /etc/inittab and uncomment the line manual.
it's not necessary to remove packages though you can disable services for not consuming memory, unless you have disk space issue.
gerasimos_h _________________ Superb! Mini Server Project Manager
http://sms.it-ccs.com |
|
Back to top |
|
smching Junior Member
Joined: 04 Dec 2007 Posts: 5
|
Posted: Thu Dec 06, 2007 1:38 pm Post subject: |
|
|
I will try it out. Thank You. |
|
Back to top |
|
|