Re: Does anyone else get this?

2002-01-19 Thread Bambang Purnomosidi D. P.

You are not alone. I got that too and I don't know why :(

--
bpdp

On Saturday 19 January 2002 7:06 pm, Dougie Nisbet wrote:
 Whenever I post to this list, I get some sort of autoresponse from
 [EMAIL PROTECTED], containing my posting as an attachment. Is it just me?

 ¸ÞÀÏ Àü¼Û ½ÇÆÐ ¾Ë¸² [EMAIL PROTECTED]
 Date: Sat, 19 Jan 2002 20:20:50 +0900 (KST)
 From: [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]

 Attachment: 0

 Re: fetchmail.eml

 Dougie



Docbook 4.1 broken?

2002-01-15 Thread Bambang Purnomosidi D. P.

High,

I update docbook package to 4.1 (unstable), jade, jadetex and then install 
docbook book. After that db2pdf can not work anymore when I use an example 
from the book for article. Here is an excerpt of error messages:

.
.
jade:/usr/share/sgml/entities/xml-iso-entities-8879.1986/ISOamsr.ent:21:17:E: 
X2256 is not a function name



Did I miss some packages? or docbook 4.1 package (or jade, or jadetex) 
broken?. Somebody experience this before?

TIA

--
bpdp



Re: postfix dependancies

2002-01-09 Thread Bambang Purnomosidi D. P.
On Wednesday 09 January 2002 3:36 pm, Craig Dickson wrote:
 Ax wrote:
  Dne st 9. leden 2002 09:19 Dougie Nisbet napsal(a):
   Ah, I understand now. Is there anyway to examine dependancies without
   using apt-get install?
 
  dselect

 Or simply view the file /var/lib/dpkg/available, and search for
 Package: postfix (or whatever package you want to look for).

This one is better (I think):

$ apt-cache show postfix

--
bpdp



About kernel configuration

2001-12-03 Thread Bambang Purnomosidi D. P.

Hi,

Is there any way to know that, for examples, my kernel-images have quota 
support enabled? In this case, consider I am using kernel-images from .deb, 
not compile it myself. Of course many configuration I need to know beside 
quota support.

TIA

--
bpdp



Re: About kernel configuration

2001-12-03 Thread Bambang Purnomosidi D. P.

Hi,

On Monday 03 December 2001 2:02 pm, Daniel Freedman wrote:
  Is there any way to know that, for examples, my kernel-images have quota
  support enabled? In this case, consider I am using kernel-images from
  .deb, not compile it myself. Of course many configuration I need to know
  beside quota support.

 Hi,

 Try:

 grep CONFIG_QUOTA /boot/config-2.x.y

 where, e.g., x=4,y=9, etc. (specify your installed kernel)

Yep. It works for me. Thanks.

But, what I mean is, let say I lost my /boot/config-2.x.y file, how do I know 
what kernel configuration exists?


TIA

--
bpdp



help setup quota

2001-12-03 Thread Bambang Purnomosidi D. P.

I am using unstable, so the quota package is 3.02-3

In this case I want to set quota for group student which have home dir in
/home/student/studentname

Here are my steps:

1. install quota package
2. edit /etc/fstab:

/dev/sda4   /home   ext2defaults,grpquota   0   2

3. Create /home/quota.group and make it 600
4. reboot
5. # edquota -g student
 
I made: soft=1
hard=12500

since I want to setup soft limit: 10MB and hard limit 12.5 MB
6. Reboot
7. When I want to setup grace time:
# edquota -t 
No filesystems with quota detected


Did I miss something?

TIA

--
bpdp



kernel compilation and ncurses problem

2001-10-20 Thread Bambang Purnomosidi D. P.

I will upgrade my kernet to 2.4.12 because of security problems. When I tried 
to make menuconfig, it showed error:

--
rm -f include/asm
( cd include ; ln -sf asm-i386 asm)
make -C scripts/lxdialog all
make[1]: Entering directory `/usr/src/linux/scripts/lxdialog'
/usr/bin/ld: cannot find -lncurses
collect2: ld returned 1 exit status

 Unable to find the Ncurses libraries.

 You must have Ncurses installed in order
 to use 'make menuconfig'

make[1]: *** [ncurses] Error 1
make[1]: Leaving directory `/usr/src/linux/scripts/lxdialog'
make: *** [menuconfig] Error 2
-

I already have (from unstable) libncurses5, ncurses-bin, ncurses-term, and 
ncurses-base.

DId I miss something??

Any help appreciated.

--
bpdp



Re: kernel compilation and ncurses problem

2001-10-20 Thread Bambang Purnomosidi D. P.

Thank you all.
Everything's clear n work now.

--
bpdp



Re: Sound configuration

2001-10-11 Thread Bambang Purnomosidi D. P.

Basically it needs some steps:
1. Find out what sound card on your laptop.
2. # modconf
3. install appropriate module for your soundcard
4. add ordinary user into group audio

--
bpdp
http://3wsi dev n sysadm

On Thursday 11 October 2001 1:15 pm, JimmyMah wrote:
 I am a new user to debian linux. I have install the os (version-potato) in
 my laptop recently. However I could not activate the sound system.

 Please advise.




Re: What is nvi?

2001-10-02 Thread Bambang Purnomosidi D. P.

nvi is new vi, exist because original vi copyrighted and can not be 
redistributed. In this case, just install nvi

Just a suggestion: install vim (and vim-rt), more features.

--
bpdp

On Tuesday 02 October 2001 3:04 pm, Lars Jensen wrote:
 I just did a dist-upgrade from potato to woody, and after that vi
 doesn't work. I get some error message like this:

 vi: wrapper couldn't execute /usr/bin/vi nor /bin/elvis-tiny

 Instead vi appears to have been replaced by nvi. Is nvi a replacement of
 vi? Why doesn't vi work?

 Lars.

 %%%
 Lars Jensen, Truckee Meadows Community College, Reno NV 89512-3999.
 Tel: 775.673.7113 E-mail: [EMAIL PROTECTED]



Re: Serving web pages for local use only

2001-09-26 Thread Bambang Purnomosidi D. P.

Set the ServerName directive to localhost or 127.0.0.1
That should be in /etc/apache/httpd.conf file

You also need to do 

apachectl start 

as root.

To run Perl CGI scripts, you need to setup ScriptAlias directive in 
httpd.conf. This should be created for you when you install Apache. Find out 
if it is commented, if it is then uncomment it.

--
bpdp

On Wednesday 26 September 2001 6:22 pm, Steve Dondley wrote:
 Hi,

 I'd like to use my machine to serve web pages, more specifically, I'd like
 it to run Perl cgi-scripts.  The machine will NOT be serving pages over the
 net.  I'm guessing I can just point my browser to 127.0.0.1.

 I installed apache but I'm stuck on what to do next, however.  I can't get
 the httpd daemon running.  Apparently, I need to set the ServerName
 directive.  Since I don't a domain name for the machine, what do I use for
 this?  Anything else I need to do?

 Thanks!



Re: ncurses

2001-09-24 Thread Bambang Purnomosidi D. P.

Hi,

There are many ncurses packages available. Please take a look at this command 
output:

apt-cache search ncurses

I guess you will need ncurses-bin, ncurses-term, ncurses-base, and 
libncurses5 (maybe).


--
bpdp


On Monday 24 September 2001 11:23 am, Robert Epprecht wrote:
 Hello
 I'm trying to compile a programm (iForth) that needs ncurses.

 apt-get install ncurses
 Package ncurses has no available version, but exists in the database.
 This typically means that the package was mentioned in a dependency and
 never uploaded, has been obsoleted or is not available with the contents
 of sources.list
 E: Package ncurses has no installation candidate

 So what do I do?
 And: Could installing ncurses break anything in my potato system?

 Robert Epprecht



Re: TeX printing problem

2001-09-24 Thread Bambang Purnomosidi D. P.

Yup. that's the right output. The dvips is used to create ps from dvi file. 
You need to use -o option for dvips to create a ps file and then you can use 
gv to view the ps file. Check out man dvips.

--
bpdp

On Monday 24 September 2001 1:34 pm, Dale Morris wrote:
 After my recent install and upgrade to woody I can't print tex
 documents. Other printing seems okay, mail messages from mutt print
 fine.

 xdvi displays the document properly, but when I try to print the
 following file:

 $dvips quantum.tex

 the printed output is not the document I viewed in xdvi, but the
 following:

 %!PS-Adobe-2.0
 %%Creator: dvips(k) 5,86d Copyright 1999 Radical Eye Software
 %%Title: quantum.dvi
 %%Pages: 1
 %%PageOrder: Ascend
 %%BoundingBox: 0 0 596 842
 %%EndComments
 %%DVIPSWebPage: (www.radicaleye.com)
 ..
 Then after this 'header' it prints out a page full of TeX commands. Is
 there some configuration file that I haven't done or ??

 thanks



Re: SUID

2001-09-19 Thread Bambang Purnomosidi D. P.
On Wednesday 19 September 2001 12:27 am, Ian Marlier wrote:
 I feel like an idiot asking this, but how does one set something to
 run SUID?  I can't figure out what change has to be made...I tried
 RTFM, but didn't see anything that seemed relevant, even in the man
 files for sudoers and the like.


Did you mean run SETUID? try man chmod or info chmod.
Maybe all you need is 

chmod u+s filename  - for executable 
chmod u+S filename - for non-executable

--
bambang



Re: .deb

2001-07-17 Thread Bambang Purnomosidi D. P.
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tuesday 17 July 2001 13:41, Peter Donaldson wrote:
 This might sound like a dumb question. But how do i make a .deb file???


apt-get install maint-guide


- -- 
bambang - http://3wsi.com
Public key available upon request
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE7U+K+ZQU0lpSem28RArscAKCS5vztcTf+VCvhTHoagfp1HI1hzwCfWo1I
1VvtQgKYRLzWepwc+Kzqi1o=
=5f1o
-END PGP SIGNATURE-