cdrecord image

2003-02-19 Thread Curtis Vaughan
In order to write files to a burner I issue the following command:
mkisofs -R -J /directory/with/files | cdrecord dev=0,0,0 -v -

However, I can't figure out how to issue the command to write an *iso 
image to a writable CD. Can anyone help me?

Curtis Vaughan
North Pacific Corporation

Tel: (425) 822-1001
Mobile: (206) 423-6979

WashTech (CWA Local 37083)
IWW x353203


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: cdrecord image

2003-02-24 Thread Curtis Vaughan
Well, just issuing a command like:
cdrecord -dev=0,0,0 -v - cdimage.iso
starts the processes up and eventually gets to to:
Waiting for reader process to fill input buffer ...
And it just sits there like that forever.

Now, I'm assuming when you say to issue the command:
mkisofs -R -J -o cdimage.iso /directory
that /directory in this case is where the cdrom is mounted? or what?

Anyhow, I tried to do the following:
mkisofs -R -J -o cdimage.iso | cdrecord dev=0,0,0 -v -
But that didn't work. It immediately completed the job with:
Waiting for reader process to fill input buffer ... input buffer ready.
cdrecord: Premature EOF on stdin.
cdrecord: Input buffer error, aborting.
cdrecord: fifo had 1 puts and 0 gets.
cdrecord: fifo was 0 times empty and 0 times full, min fill was 100%.
I've looked at the man pages, and I'm even more confused.

Curtis

On Wednesday, Feb 19, 2003, at 16:09 US/Pacific, Michael Wardle wrote:

On Thursday, February 20, 2003 10:07, Curtis Vaughan wrote:
In order to write files to a burner I issue the following command:
mkisofs -R -J /directory/with/files | cdrecord dev=0,0,0 -v -
However, I can't figure out how to issue the command to write an *iso
image to a writable CD. Can anyone help me?
You could always read the man pages for mkisofs and cdrecord. :-P

To create a CD image using mkisofs, add the -o option
(example: mkisofs -R -J -o cdimage.iso /directory)
To write a CD image using cdrecord, just specify the file name
(example: cdrecord -dev=0,0,0 -v- cdimage.iso)
I'm not too sure how reliable it is to use a pipe between the two; I
would be worried that using a pipe would make a buffer underrun more
likely.
--
Michael Wardle
Adacel Technologies


--


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



FreeS/WAN on PPPOE

2003-02-26 Thread Curtis Vaughan
Has anyone had similar problems?

Out DSL connection is through a PPPOE connect, unfortunately. Although 
setting up multiple VPNs has generally been no problem, this time for 
this office it has been a pain. The only reason we can think of now is 
because this is first time we've dealt with a PPPOE connection. Has 
anyone experienced similar problems? If so, were you able to overcome 
it? Or, perhaps this isn't the problem at all.

Curtis Vaughan
North Pacific Corporation
WashTech (CWA Local 37083)
IWW x353203
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Road Warriors on FreeS/WAN

2003-02-26 Thread Curtis Vaughan
A simple question, perhaps.

When setting up road warrior account for FreeS/WAN do Windows users who 
authenticate with the network thereby gain normal in office network 
access? Or are there more steps to this.

Let me take a step back.
I thought I would simplify things by turning on RRAS on a Windows 2000 
Server for people needing network access for certain reasons. Well, it 
turns out the firewall doesn't pass GRE.  So, I was returning to my 
original idea about road warrior, but am not sure whether it will 
provide what we need.

Curtis Vaughan
North Pacific Corporation
WashTech (CWA Local 37083)
IWW x353203
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



kernel menuconfig

2003-03-05 Thread Curtis Vaughan
Has anyone created a file that shows all the options available in 
menuconfig when doing a kernel compile?

It would be handy so that I can note on it what options I absolutely 
need for various configurations.

Curtis Vaughan
North Pacific Corporation
WashTech (CWA Local 37083)
IWW x353203
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Kernel compile for dhcpd

2003-03-05 Thread Curtis Vaughan
When I recompiled the kernel for one server, dhcpd would not work. 
According to the error I didn't compile the kernel for certain aspects 
of dhcpd. However, when I went through all the configuration items in 
menuconfig I couldn't find what it seemed to be requiring.  What in 
fact do I need to check for?

Curtis Vaughan
North Pacific Corporation
WashTech (CWA Local 37083)
IWW x353203
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



kernel compile for ide modules

2003-03-05 Thread Curtis Vaughan
I have tried compiling my kernel twice now, but the ide modules that 
would appear in modconf don't show up. What do I need to check?

And by the way, if I just download a kernel and install it, it will 
have all the modules with it. Surely there's a command that can be 
issued when compiling a kernel such that it just automatically includes 
all the modules.  What command would that be?

Curtis Vaughan
North Pacific Corporation
WashTech (CWA Local 37083)
IWW x353203
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Kernel compile for dhcpd

2003-03-07 Thread Curtis Vaughan
Hubert Chan states that I can just take my old config file and copy to 
the new tree.  I assume you mean to copy it to where I am compiling the 
kernel.  But in which folder exactly and I assume this is prior to 
running make-kpkg -config=menuconfig kernel-image

On Wednesday, Mar 5, 2003, at 12:21 US/Pacific, Hubert Chan wrote:

The option is CONFIG_FILTER, which in menuconfig is something like
socket filtering.  On my (sid) system, that information can be found in
/usr/share/doc/dhcp3-client/README.Debian.  I'm sure that on Woody,
there's a similar file.
BTW, when compiling your kernel, it's generally a good idea to start 
off
with the configuration that's found in /boot/config-
version>.
Then just turn off any options that you know for sure you don't need,
and turn on options that you know you need.

--


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



config file for Kernel compile

2003-03-08 Thread Curtis Vaughan
One user on this list stated that I can just take my old kernel config 
file and copy to the new tree (?).  I assume that he meant by this that 
I should copy it to those directories where I am compiling the kernel.  
But in which folder exactly and I assume this is prior to running 
make-kpkg -config=menuconfig kernel-image.

For the sake of information, I untar the kernel in /usr/src, then 
create a link to it as linux. I go into the linux directory (i.e., 
/usr/src/linux) and then run the aforementioned command.

Curtis

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: config file for Kernel compile

2003-03-10 Thread Curtis Vaughan
Ok, I loaded the previous config file while in menuconfig and it worked 
great!

So, that got some of the stuff working, but I still don't see the items 
for ide (i.e., there is no ide tree in my 
/lib/modules/2.4.18/kernel/drivers directory.  I thought maybe that 
since I had another computer with almost the exact same architecture 
that maybe I could just copy that tree over to this computer and 
modprobe the modules that way. No go.

So, I though hm, is it possible to somehow use the previous config file 
as well as the config file for that other computer? Or can I just 
manually edit the config file and load it?

Curtis

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Postfix: Moving users

2003-03-11 Thread Curtis Vaughan
Since the postfix user list has been having some problems, maybe 
someone here knows the answer to my question:

Can anyone tell me how difficult (or simple) it will be to move user 
mailboxes from one Postfix server set up with cyrus to another Postfix 
server using courier-imap.
Also, whereas on the cyrus Postfix server the email are stored under 
/var/spool/cyrus/mail/users (something like that, at least) on the 
courier-imap we plan on having them set up under maildir in the home 
directories.

Curtis Vaughan
WashTech (CWA Local 37083)
IWW x353203
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



SMTPS/SASL and ports

2003-03-14 Thread Curtis Vaughan
Trying to configure postfix for SASL connectivity.

Now most mail clients have you check SSL connectivity enabled, but the 
port remains 25. However, in /etc/services the smtps is by default set 
for port 465.

So, my question is: what is advisable a) change the smtp port for all 
clients to 465; or b) change smtps in services to 25?

Curtis Vaughan
North Pacific Corporation
WashTech (CWA Local 37083)
IWW x353203
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



using diff command

2003-03-18 Thread Curtis Vaughan
I must be really stupid, so forgive me, but I can't figure out for the 
life of me how to use the diff command. I've read the man pages and 
looked at some stuff on the internet, but I can't get it to do what I 
want it to do.  But then maybe it doesn't do what I want it to do.

Basically, the issue is this, I have 2 files: File1 File2

Both are text files. File1 was File2 a day ago. Since then File2 has had 
additional information tagged on to it (it's a log file). All I want to 
see is what information has been added since yesterday.  So, I would 
think that "diff File2 File1" should provide me with that information. 
But all I ever get is a message that the files differ.  I have tried 
with various arguments, but no luck.

What am I doing wrong?

Curtis

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: using diff command

2003-03-19 Thread Curtis Vaughan
Cameron Hutchison wrote:
Once upon a time Curtis Vaughan said...

Basically, the issue is this, I have 2 files: File1 File2

Both are text files. File1 was File2 a day ago. Since then File2 has had 
additional information tagged on to it (it's a log file). All I want to 
see is what information has been added since yesterday.  So, I would 
think that "diff File2 File1" should provide me with that information. 
But all I ever get is a message that the files differ.  I have tried 
with various arguments, but no luck.


Does the message you get actually say: "*Binary* files File2 and File1
differ"? [emphasis mine].
If so, diff is seeing some non-ascii characters in the file and treating
them as binary.
Try:
$ diff -a File1 File2
-a says to treat all files as text.


Thanks to everyone who replied, but the -a parameter worked.

Curtis

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Geological tracking application

2003-11-14 Thread Curtis Vaughan
Is anyone aware of Linux-based application capable of proving visual geographical tracking?

To be more specific:
We are a fishing company.  Every daily we receive reports from our vessels about their location, water temp and depth, fish caught, weather, fuel, etc., etc.
This data is entered into a database.  It would great to have an application that could take that data and put it on a map.  This way we could track trends, perform historical analyses, etc.

I realize there is probably nothing specifically that meets our needs, but close enough that with a little reprogramming would, in fact, work.

Curtis Vaughan


Webmin CD Burn

2003-01-20 Thread Curtis Vaughan
I've been trying to use the Webmin CD Burner app (cdrecord) with little 
success.

Perhaps the problem is the fact that I am using an iso-scsi device, 
which is picked up by CD Burner.  That's fine.

I want to burn files. So, when I do a test burn, here is my output:

*Testing burn with command cdrecord -v dev=0,0,0 speed=2 -dummy 
'/tmp/.webmin/burner.iso' ..*

scsidev: '0,0,0'
scsibus: 0 target: 0 lun: 0
Linux sg driver version: 3.1.22
Cdrecord 1.10 (i686-pc-linux-gnu) Copyright (C) 1995-2001 Jörg Schilling
TOC Type: 1 = CD-ROM
Using libscg version 'schily-0.5'
atapi: 1
Device type: Removable CD-ROM
Version: 0
Response Format: 1
Vendor_info: 'RICOH   '
Identifikation : 'MP6200A '
Revision   : '2.20'
Device seems to be: Generic mmc CD-RW.
Using generic SCSI-3/mmc CD-R driver (mmc_cdr).
Driver flags   : SWABAUDIO
Drive buf size : 786432 = 768 KB
FIFO size  : 4194304 = 4096 KB
cdrecord: Drive needs to reload the media to return to proper status.
Track 01: data1 MB
Total size:   2 MB (00:13.04) = 978 sectors
Lout start:   2 MB (00:15/03) = 978 sectors
Current Secsize: 2048
ATIP info from disk:
 Indicated writing power: 5
 Reference speed: 2
 Is not unrestricted
 Is erasable
 ATIP start of lead in:  -11615 (97:27/10)
 ATIP start of lead out: 962 (00:14/62)
 speed low: 0 speed high: 4
 power mult factor: 4 5
 recommended erase/write power: 3
 A2 values: 00 00 00
Disk type:Phase change
Manuf. index: 18
Manufacturer: Plasmon Data systems Ltd.
Trying to clear drive status.
Blocks total: 1166730 Blocks current: 1166730 Blocks remaining: 1165752
Starting to write CD/DVD at speed 2 in dummy mode for single session.
Last chance to quit, starting dummy write in 9 seconds.8 seconds.7 seconds.6 seconds.5 seconds.4 seconds.3 seconds.2 seconds.1 seconds.0 seconds. Operation starts.
Waiting for reader process to fill input buffer ... cdrecord: Input/output error. read track info: scsi sendcmd: no error
CDB:  52 01 00 00 00 FF 00 00 1C 00
status: 0x2 (CHECK CONDITION)
Sense Bytes: 70 00 05 00 00 00 00 0A 00 00 00 00 24 00 00 00
Sense Key: 0x5 Illegal Request, Segment 0
Sense Code: 0x24 Qual 0x00 (invalid field in cdb) Fru 0x0
Sense flags: Blk 0 (not valid) 
cmd finished after 0.003s timeout 240s
input buffer ready.
Writing  time:0.035s
Fixating...
WARNING: Some drives don't like fixation in dummy mode.
Fixating time:0.007s
cdrecord: fifo had 32 puts and 0 gets.
cdrecord: fifo was 0 times empty and 0 times full, min fill was 100%.

--------

--
Curtis Vaughan
North Pacific Corporation

Tel: (425) 822-1001
Cell: (206) 423-6979

WashTech (CWA Local 37083)
IWW x353203



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: vsound issue - a return

2003-01-24 Thread Curtis Vaughan
Actually, I also tried the command with the following variables: vsound 
-v -d -t -f  and got the same results.

Curtis

Travis Crump wrote:

Vaughan, Curtis wrote:


Whereas vsound would not record RealAudio on a PowerBook, I am now 
trying it
on an i686-based computer.

After issuing the command:
vsound -f test.wav realplay 
http://128.208.34.102:8080/ramgen/RadioIntersection/20021203intersection.rm 


RealPlayer is launched, connects and begins to stream and immediate 
crashes
with the following output:

/usr/bin/vsound: line 163: 4787 Aborted
LD_PRELOAD="$pkglibdir/libvsound.so"
"$@"

Any ideas how to this problem?

Curtis Vaughan



You have to use the '-t' option for internet streams.




--
Curtis Vaughan
North Pacific Corporation

Tel: (425) 822-1001
Cell: (206) 423-6979

WashTech (CWA Local 37083)
IWW x353203




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Aladdin Software's Stuffit for Linux

2003-01-24 Thread Curtis Vaughan
Has any installed Stuffit on Linux?

According to their instructions, all you have to do is untar their 
archive, place the files in /usr/local/bin and voila!

Well, I did that but I get the error: cannot execute binary file

So, it would seem I have to do something different.

Any ideas?

--
Curtis Vaughan
North Pacific Corporation

Tel: (425) 822-1001
Cell: (206) 423-6979

WashTech (CWA Local 37083)
IWW x353203



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: vsound issue - a return

2003-01-24 Thread Curtis Vaughan
 I removed the -d and it worked.

Thanks to those who replied.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



cdrecord

2003-01-28 Thread Curtis Vaughan
Trying to figure out how to record a CD using cdrecord with a Ricoh 
MP6200A CD Burner.

Here is what I have been able to do.

First thing I do before each session is erase the cd with the following 
command:
cdrecord dev=0,0,0 blank=all
I believe this works as there are no errors, at least.

But to burn I have tried the following commands with no luck with any of 
them.

cdrecord dev=0,0,0 -data /directory/
cdrecord dev=0,0,0 -data /directory/*
cdrecord dev=0,0,0 -data /directory/file.txt
mkisofs -R /directory/ | cdrecord speed=2 dev=0,0,0 tsize=960s -

I just need to save files from a specific directory to a CD that will be 
readable for Windows clients.

I appreciate any feedback,

--
Curtis Vaughan
[EMAIL PROTECTED]

WashTech (CWA Local 37083)
IWW x353203



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Samba home share

2003-01-28 Thread Curtis Vaughan
Very strange problem.

All of my samba shares from a single server are available except my home 
share. Although I can mount it, there is nothing in the share. If, 
however, I go to the server and look in my home directory, all files are 
there.

Any ideas?

Curtis



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



VPNed networks

2003-01-30 Thread Curtis Vaughan
As far as I understand, once I've set up 2 networks with a VPN, there 
are no firewalls between them.  Is this right?

The reason I ask is because I have 2 networks VPNed. I can gain access 
to their computers, but when I try to gain access to a specific 
computer over port 3050, there is no access. nmap confirms that this 
port is closed on that computer.  However, people on that network 
insist that the port is open.



Curtis Vaughan
WashTech (CWA Local 37083)
IWW x353203


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Samba + LDAP

2003-01-30 Thread Curtis Vaughan
A colleague of mine is RedHat nut, but regardless, he has compiled 
Samba + LDAP to act as a primary authentication server for his company.
When he tried to apply it to our Debian environment, he was stumped. So 
we turned to a Slackware nut, who was also stumped, but decided to 
forget the RedHat approach and try to do it the Debian way.  Well, 
suffice to say, he was also stumped.
So, my question is, has anyone been able to get such working on a 
Debian server.
More specifically, currently an NT4 server provides all authentication 
in our workplace. I want to shut it down and have a Debian server 
provide all authentication for Windows clients, regardless of whether 
they are just logging in to a computer, VPNing, obtaining mail (through 
an Exchange Server and a Postfix Server).  I would also like this to 
apply to any Linux clients (although I'm the only one so far).



Curtis Vaughan
North Pacific Corporation

Tel: (425) 822-1001
Mobile: (206) 423-6979

WashTech (CWA Local 37083)
IWW x353203


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Samba + LDAP

2003-01-31 Thread Curtis Vaughan

Try http://samba.idealx.org/dist/samba-ldap-howto.pdf

or Sid: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=178206


Sid sounds like it has the answer.

So, just to make sure I'm doing this right. I am going to install the 
sid samba package on a woody server. If I temporarily change my 
sources.list for sid, run apt-get install [the samba package], then I 
should also get just those dependencies I need, right? Then I can edit 
my sources.list back to woody and go forward.

Or is there a better approach?

Curtis


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Samba + LDAP

2003-02-01 Thread Curtis Vaughan
Great! So what am I supposed to do?
I don't see a tng branch in debian's distros. So are you suggesting I 
download it from, say, samba?
The main thing is that I need a samba package with LDAP built in.

Curtis

On Friday, Jan 31, 2003, at 16:30 US/Pacific, nate wrote:

Curtis Vaughan said:


So, just to make sure I'm doing this right. I am going to install the 
 sid
samba package on a woody server. If I temporarily change my
sources.list for sid, run apt-get install [the samba package], then I
should also get just those dependencies I need, right? Then I can 
edit  my
sources.list back to woody and go forward.

Or is there a better approach?

apt-get source samba and rebuild it on woody. if you get the 
dependencies
of samba from sid you'll probably get sid's libc6 as well which you 
probably
don't want.

I reccomend samba-tng over samba for PDC stuff, the -tng branch is much
more advanced, has more features(more PDC-like) then samba(in general)
though it's been a while(march 2002) since I last tried samba as a PDC

nate





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact 
[EMAIL PROTECTED]

Curtis Vaughan
North Pacific Corporation

Tel: (425) 822-1001
Mobile: (206) 423-6979

WashTech (CWA Local 37083)
IWW x353203


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Samba + LDAP

2003-02-01 Thread Curtis Vaughan
Well, I'm not certain whether I should use Samba-tng or the samba sid 
release, which apparently has ldap compiled in.
So, is LDAP built into samba-tng
Whereas sid is the unstable release, what should I be concerned about?

Curtis

On Saturday, Feb 1, 2003, at 08:45 US/Pacific, nate wrote:

Curtis Vaughan said:

Great! So what am I supposed to do?
I don't see a tng branch in debian's distros. So are you suggesting I
download it from, say, samba?
The main thing is that I need a samba package with LDAP built in.


there used to be a samba-tng package, i guess it's gone now.

I have extensive info on my LDAP website

http://howto.aphroland.de/HOWTO/LDAP

the samba-tng website is samba-tng.org, last time I downloaded a cvs
copy(~6/02) they had debian build scripts that worked fine on my woody
systems(that is, they made samba-tng .deb packages when you compiled).

nate




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact 
[EMAIL PROTECTED]

Curtis Vaughan
North Pacific Corporation

Tel: (425) 822-1001
Mobile: (206) 423-6979

WashTech (CWA Local 37083)
IWW x353203


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Samba + LDAP

2003-02-01 Thread Curtis Vaughan
Thanks for all your input. But my main question is really this.
I understand that the SID samba has LDAP compiled into it.
But I don't see anywhere where it says that LDAP is compiled into 
samba-tng.
Can you confirm either or both of these 'rumors'?

Curtis

On Saturday, Feb 1, 2003, at 09:17 US/Pacific, nate wrote:

Curtis Vaughan said:

Well, I'm not certain whether I should use Samba-tng or the samba sid
release, which apparently has ldap compiled in.
So, is LDAP built into samba-tng
Whereas sid is the unstable release, what should I be concerned about?


try them both ..they are probably of equal quality. LDAP is 
experimental
in all versions of samba that I have seen, and samba-tng itself is
experimental. doesn't mean it doesn't work though.

I'm just sayin i spent several months working and testing samba-tng and
it worked excellent(I kept a copy of my cvs checkout on my LDAP page
incase future versions were bad for whatever reason).

in either case you'll need to recompile samba, unless you upgrade your
whole system to sid.

the samba 2. whatever version in sid may be decent too.

nate




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact 
[EMAIL PROTECTED]

Curtis Vaughan
North Pacific Corporation

Tel: (425) 822-1001
Mobile: (206) 423-6979

WashTech (CWA Local 37083)
IWW x353203


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Samba + LDAP

2003-02-01 Thread Curtis Vaughan
Excuse my ignorance, but what does building samba-tng from source 
involve.

Curtis

On Saturday, Feb 1, 2003, at 11:38 US/Pacific, nate wrote:

Curtis Vaughan said:

Thanks for all your input. But my main question is really this.
I understand that the SID samba has LDAP compiled into it.
But I don't see anywhere where it says that LDAP is compiled into
samba-tng.
Can you confirm either or both of these 'rumors'?


if you get either samba from sid or samba-tng you will have to build
it from source.

that means neither come "with" anything. the LDAP portion is added in
when you compile it.

this is assuming your not running sid and using the samba from sid. if
you do run sid(which I reccomend against running the unstable distro
in a production enviornment unless its a last resort), then samba does
indeed come with LDAP support, or at least it depends upon LDAP
libraries according to the packages.debian.org site.

in order to compile it you'll need all the dependencies including
the ldap development libs. if you plan to use LDAP/SSL on woody you'll
need to recompile OpenLDAP on woody to include SSL/TLS support as
well as install the dependencies for compiling that as well(Details
are again on my LDAP website).

samba-tng by default includes LDAP support I believe(LDAP is one of
the main priorities of the project).

nate




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact 
[EMAIL PROTECTED]

Curtis Vaughan
North Pacific Corporation

Tel: (425) 822-1001
Mobile: (206) 423-6979

WashTech (CWA Local 37083)
IWW x353203


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



proftp. Accessing an FTP server

2003-09-06 Thread Curtis Vaughan
I've got proftp running and it works great, in fact perfect inside our 
company LAN.  So, I thought everything was perfect. HA!

Outside in the real world, I am able (through a terminal session) to 
ftp in (login and password checked) but I can't do anything.
Here as an example is what happens inside the LAN when I issue the 
command "ls"

Remote system type is UNIX.
Using binary mode to transfer files.
ftp> ls
200 PORT command successful.
150 Opening ASCII mode data connection for file list.
-rwxrwxr--   1 536  540 13824 Sep  4 22:15 Test.xls
drwx--   2 0daemon   4096 Aug 27 20:07 bin
drwx--   2 0daemon   4096 Aug 27 20:03 etc
226-Transfer complete.
226 Quotas off
However, outside the LAN I get the following errors:

Remote system type is UNIX.
Using binary mode to transfer files.
ftp> ls
500 EPSV not understood.
227 Entering Passive Mode (10,0,1,11,18,205).
Any ideas?

BTW, trying to use a web browser for ftp outside the LAN, just times 
out.

Curtis

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Amanda or taper

2003-09-08 Thread Curtis Vaughan
I have been using taper for backups for some time now, but just read an 
interesting article about Amanda.  Is anyone using Amanda and is it 
better than taper?

Thanks for your opinions,

Curtis

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



apt-get upgrade but hold certain packages

2003-09-08 Thread Curtis Vaughan
I've been looking through man pages and the list archives.  I would 
have sworn there was a recent post about this, but...

I want to hold back certain packages prior to running apt-get upgrade. 
How can I do that by configuring some file and not with aptitude or 
dselect?

Curtis

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



burning a CD

2003-09-25 Thread Curtis Vaughan
I have put a CD with MS Office in one Linux Box.  I need to copy its 
contents for burning on a separate Linux box. What is the best way to 
do this?

I supposed I could just copy the entire contents to a directory on the 
second box. Or I could tar the contents to the Linux box, couldn't I, 
and then somehow tell xcdroast to burn from a tar image?
Or, I supposed I could somehow mount the CDRom of the first box on the 
second box and then just do a CD copy?

I don't really know, I've never done this before.

Curtis 

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Samba 3 on stable

2003-10-07 Thread Curtis Vaughan
Has anyone installed Samba 3 (final) from untesting on a stable version 
of Debian?  Any concerns I should be aware of before giving it a try?

Curtis

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



gzip question

2003-10-07 Thread Curtis Vaughan
Actually this doesn't have to be just in regards to gzip, but any file 
compression application.

Is there a way to force the application to provide a specific directory 
structure for the files you wish to compress.
For example: let's say I have serveral files in my home directory.  I 
want to zip them so that when someone unzips them, the directory 
structure will be for a windows system something like: c:\Program 
Files\special directory\

Is there a way to do this?

Curtis

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Can't access 1 IP address on Lan

2002-10-07 Thread Curtis Vaughan

Strangest thing.

Our network is 10.0.1.0/255.255.255.0
I can access any address in our network except 10.0.1.1, which is our 
mail server.  It won't ping it or anything.  Any ideas?

Curtis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Can't access 1 IP address on Lan

2002-10-07 Thread Curtis Vaughan

route information follows:

route -n
DestinationGateway   Genmask
10.0.1.0   0.0.0.0   255.255.255.0
0.0.0.010.0.1.2540.0.0.0


Exactly the same as on another Debian computer, but it ping 10.0.1.1 no 
problem.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Can't access 1 IP address on Lan - Recap

2002-10-09 Thread Curtis Vaughan

  By the way, I still can't ping one IP address from a Debian computer 
within my LAN.

To repeat, my network setup is 10.0.1.0/255.255.255.0

eth0 information is:
inet addr: 10.0.1.5 Bcast: 10.0.1.255 Mask:255.255.255.0

route information follows:

route -n
DestinationGateway   Genmask
10.0.1.0   0.0.0.0   255.255.255.0
0.0.0.010.0.1.2540.0.0.0


This data (except IP address) is exactly the same as on another Debian computer, but 
it pings 10.0.1.1 no 
problem.




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Offsite backup

2002-10-09 Thread Curtis Vaughan

I was wondering what options there are for maintaining offsite backups?

The most feasible way I can imagine (maybe not the most practical) is to 
basically tarball everything necessary and then secure copy it to the 
offsite server.

However, whereas I use taper to backup servers, I was wondering whether 
it is possible to do the following. After backup is complete, would it 
be possible to somehow then copy all data that was just backed up onto 
tape media to an offsite server?  I'm not sure how that would work at 
all, but that would be great for consistency (i.e., the backup on tape 
is the same as the backup off site).

Keep in mind that I do not wish to purchase any backup software, btw.

Thanks for any input.

Curtis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Postfix routing restrictions

2002-10-09 Thread Curtis Vaughan

Anyone know what I need to do to stop my postfix server from routing 
email from non-users.

Curtis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




UPDATE: Relaying restrictions cont.

2002-10-10 Thread Curtis Vaughan



In addition to what I have written below:

It turns out I was wrong about those changes. In fact, it was still 
relaying. Since then I made the following changes and now it seems to be 
working more or less.

Changes:

smtpd_client_restrictions = check_relay_domains, reject_unknown_client
relay_domains = $mydestination, $virtual_domains
virtual_domains = domain1.com, domain2.com

So, now mail can be sent by anyone to either my domain or a virtual 
domain, but to no other addresses. At least using a mail client and 
telneting in, I always got a relay reject on any other addresses.

Nevertheless, can you believe this?

3811834B365 9269 Thu Oct 10 14:54:35  (MAILER-DAEMON)
 [EMAIL PROTECTED]

37F013474D0 4484 Thu Oct 10 15:07:45  (MAILER-DAEMON)
 [EMAIL PROTECTED]


Although I made the changes at around 14:45.

Curtis



Curtis Vaughan wrote:

> So, here's some history.
>
> My SEMSIII is relaying outside mail.
>
> Some relevant parameters in main.cf and a history follows:
>
> Originally, these lines were in there:
>
> smtpd_sender_restrictions = hash:/etc/postfix/access
> smtpd_recipient_restrictions = ldap:ldapmailenab,
> permit_tls_clientcerts, permit_sasl_authenticated,
> permit_mynetworks, check_sender_access,
> check_relay_domains
>
>
> On the advice of a user I made the following addition:
>
> smtpd_client_restrictions = permit_mynetworks, reject_unknown_client
>
>
> However, it was still relaying. So, I commented out the lines that 
> were originally there so that it read.
>
> #smtpd_sender_restrictions = hash:/etc/postfix/access
> #smtpd_recipient_restrictions = ldap:ldapmailenab,
> permit_tls_clientcerts, permit_sasl_authenticated,
> permit_mynetworks, check_sender_access,
> check_relay_domains
> smtpd_client_restrictions = permit_mynetworks, reject_unknown_client
>
>
> Now, it stopped relaying for anyone sending mail to anyone who is not 
> part of my domain (mynetworks).
>
> Check this out however! Looking at mailq I get the following output 
> even now:
>
> 35FFE34D70C 3000 Thu Oct 10 10:00:48  (MAILER-DAEMON)
> [EMAIL PROTECTED]
>
> 35AED347242 2998 Thu Oct 10 10:18:14  (MAILER-DAEMON)
> [EMAIL PROTECTED]
>
> 3562134889E 2927 Thu Oct 10 10:18:32  (MAILER-DAEMON)
> [EMAIL PROTECTED]
>
> 352CE34762C 2934 Thu Oct 10 10:27:04  (MAILER-DAEMON)
> [EMAIL PROTECTED]
>
> 3F774348E4F10179 Tue Oct  8 09:13:25  [EMAIL PROTECTED]
>(connect to ns.perceptics.com[208.252.202.66]: Connection 
> refused)
> [EMAIL PROTECTED]
>(connect to ns.perceval.be[194.183.227.1]: Connection 
> refused)
> [EMAIL PROTECTED]
>
> I don't remember the exact time I commented out those lines and 
> therefore prevented any relaying, but it was before 10:00.  Where the 
> hell is this coming from then?
> Curtis
>



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Postfix setup

2002-10-14 Thread Curtis Vaughan

I am trying to set up a Postfix server, but without any luck. So, I 
would like to know whether, perhaps, I have been answering some of the 
Postfix setup questions wrong. The following are the questions and how I 
answered them:

1. General type of configuration;
No configuration
Internet Site
Internet with smarthost
Satellite system
Local only
HP

Whereas, I want to have a mail server for our office, which is 
accessible not only to employees while in our office, but out of office 
as well. This server is to serve only our employees of course and not 
act as a relay, but employees must be able to send and receive messages 
to and from people outside of our office. Finally, I do wish to have 
virtual hosts as well.

So, with that in mind I chose:  INTERNET SITE

2, Mail name?

vostok1.com

3. Append .domain to simple address?

No

4. Other destinations to accept mail for?

vostok1.com, pacifica.vostok1.com, localhost,vostok1.com, localhost

5. Local networks?

I just left this as it is by default, since it doesn't really matter, 
yet. By I would think in the end I will change this to: 10.0.1.0/24

Default is: 127.0.0.0/8

6. Use procmail for local delivery?

No.

7. Mailbox size limit: 10

8. Local address extension character?

left blank



By the way, I also want to configure this server with cyrus.


Thanks,

Curtis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




postfix relaying for approved users

2002-10-16 Thread Curtis Vaughan

So, I now have postfix up and running. Unfortunately, users can only 
relay mail to those domains that I indicate in main.cf under 
virtual_domains.  Attached it my main.cf file.  What do I need to do in 
order to allow authenticated users to relay to whomever they wish.

Thanks!

Curtis

# Do not change these directory settings - they are critical to Postfix
# operation.
command_directory = /usr/sbin
daemon_directory = /usr/lib/postfix
program_directory = /usr/lib/postfix

mail_owner = postfix

smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)
setgid_group = postdrop
biff = no

# appending .domain is the MUA's job.
append_dot_mydomain = no
myhostname = pacifica.vostok1.com
mydomain = vostok1.com
alias_maps = hash:/etc/aliases, ldap:ldapdata
myorigin = /etc/mailname
# mydestination = Pacifica.Vostok1.com, localhost.Vostok1.com, localhost
mydestination = $mydomain, $myhostname, localhost.$mydomain, localhost
#relayhost =
mynetworks = 10.0.1.0/24

local_transport = cyrus
#mailbox_transport = lmtp:unix:/cyrus/socket/lmtp
mailbox_transport = cyrus

smtpd_client_restrictions = check_relay_domains, reject_unknown_client

mailbox_command =
mailbox_size_limit = 0
recipient_delimiter =
#relayhost =

relay_domains = $mydestination, $virtual_domains
virtual_domains = pacificseabass.com, vostok.pt, npc-usa.com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Strange Postfix message

2002-10-18 Thread Curtis Vaughan


martin f krafft wrote:

also sprach Curtis Vaughan <[EMAIL PROTECTED]> [2002.10.18.0354 +0200]:


If I send a message to more than one recipient on my postfix server, I




get a message back stating that each recipient does not exist. 


what's the output of

  postconf local_recipient_maps

?



The output is just:

local_recipient_maps =


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Terminal like server for linux

2002-10-18 Thread Curtis Vaughan


Gonzalez Castillo, Alain wrote:

Apt-get install rdesktop


about rdesktop

Actually, i have been using rdesktop for some time. After reinstalling 
Debian 3 with KDE 3 on my laptop, however, I can't get it to work. The 
error is:

When I tried make after downloading both v 1.0.0 and 1.1.0, I got the 
following errors:

for v. 1.1.0
xwin.c:21: X11/Xlib.h: No such file or directory
xwin.c:22: X11/Xutil.h: No such file or directory
make: *** [xwin.o] Error 1

for v. 1.0.0
xwin.c:21: X11/Xlib.h: No such file or directory
make: *** [xwin.o] Error 1


According to the advice of one person:


Install X Window headers.  I'm not a Debian user, so I don't know the
name of the package, but on Red Hat it's XFree86-devel.

If you are certain the headers are installed, you'll need to point
rdesktop to them.


How do I know whether I have them installed? XFree86-devel is not a 
Debain package.

I'm not sure if this is what your looking for but
check out 
www.ltsp.org

As for LTSP.  My question is this.  If I create a client boot floppy can 
it be used out of office?  i.e., provided I programmed it for the public 
ip of our LTSP server, would it work from the internet?


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Terminal like server for linux

2002-10-21 Thread Curtis Vaughan
Unfortunately, when trying ot install xlibs-dev, I get the following 
error. Can I force it? And is it advisable?

Sorry, but the following packages have unmet dependencies:
 xlibs-dev: Depends: xlibs (= 4.1.0-16) but 4.1.0-17 is to be installed
E: Sorry, broken packages

Crispin Wellington wrote:

On Sat, 2002-10-19 at 07:43, Curtis Vaughan wrote:

 

How do I know whether I have them installed? XFree86-devel is not a 
Debain package.
   


apt-get install xlibs-dev

 

I'm not sure if this is what your looking for but
check out 
www.ltsp.org
 

As for LTSP.  My question is this.  If I create a client boot floppy
   

can 
 

it be used out of office?  i.e., provided I programmed it for the
   

public 
 

ip of our LTSP server, would it work from the internet?
   


You probably could use it via the Internet but you wouldn't want to as
the ltsp project is really for a diskless workstation, not a thin
client. It uses NFS to mount the root filesystem over the network AFAIK.
Thus you would need to allow the world to mount your root filesystems
(eek!).

Kind Regards
Crispin Wellington
 




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



unment dependencies - force?

2002-10-22 Thread Curtis Vaughan
I believe this is because I have a partial testing/woody environment 
that I often get errors when trying to configure certain applications 
like the following.  My question is, what can I do when I get such 
errors. Is it advisable to force installation?

Sorry, but the following packages have unmet dependencies:
 libglib1.2-dev: Depends: libglib1.2 (= 1.2.10-4) but 1.2.10-6 is to be 
installed
E: Sorry, broken packages



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Corporate Anti-virus solutions

2002-10-28 Thread Curtis Vaughan
One year ago, our organization was totally MS. So, for our corporate 
anti-virus product we have been using Norton Anti-virus corporate addition.

Now, our organization is 50/50 linux/ MS. Norton anti-virus is not 
available for linux, so I'm wondering what other options there may be 
for a corporate environment, which option is recommended by some of you 
out there!

Personally, I would like one that would also work with our mail servers 
(1 exchange server, 1 postfix server).

Currently, all linux machines use clamav, btw.  Maybe this is good enough?

Curtis


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Strange Postfix message revisited

2002-10-29 Thread Curtis Vaughan
Earlier I wrote that if I sent a message to more than 1 recipient on my 
postfix server, I would get a message back stating the users do not exist.

One advice I got, by virtue of the fact that local_recipient_maps = 
[nothing] was to execute:

postconf -e 'local_recipient_maps = $relocated_maps, $alias_maps, 
unix:passwd.byname'

After doing that, however, no mail is delivered to any recipient.

Leaving local_reciepient_maps = unix:passwd.byname as well as
= $relocated_maps, $alias_maps
produces the same results.

Any ideas on how to rectify this problem?

Curtis


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Shared Calendars with Linux

2002-11-04 Thread Curtis Vaughan
By the way, we've installed something call Web Calendar, which might be 
what you're looking for. You can find it at: 
http://www.ma.utexas.edu/~mzou/webCal/index.html

Curtis

Mikael Jirari wrote:

Thank you Alvin,

Yes I have installed xminian on one workstation today and it looks 
really good.
But actually i'm looking for a shared calendars software thaqt lives 
on one main server so all the users (mostly ms workstations) could 
access this one. I have apache on that machine so why not use a web 
interface shared calendar...

Same for the mails, I'd need to check for viruses before letting the 
users take their mails, since they are running windows i guess i'd 
need an efficient antivirus. Spam is very anoying but it's not the 
first class priority at the moment.

I'm checking these links right now

Cheers

-Original Message-
From: Alvin Oga [mailto:aoga@;Maggie.Linux-Consulting.com]
Sent: 04 November 2002 16:02
To: Mikael Jirari
Cc: 'Debian'
Subject: Re: Shared Calendars with Linux





hi ya mikael

On Mon, 4 Nov 2002, Mikael Jirari wrote:

>
> Does anyone have already implemented shared calendars on a linux box ?
> Do anyone knows packages that could correspond to this functionality ?

xaminian comes to my cloudy mind..

> For mails antivirus should I consider a commercial product or a free
> product ? are free product the same (or almost) as the commercial ones
> ?

free is better ...
- you get to ask lots o people the same qustions and get
lots o answers ( for free )

- commercical producs... you get to ask one tech support
person for their answer... and who knows when you will
the the answer... sometimes right... sometimes not the
right answer

spam is biggger problem in terms of occurances  than virii
but virus is a bigger problem when it bites/hits ya

which do you wanna do first

anti-spam -- mta specific features
http://www.Linux-Sec.net/Mail/antispam.gwif.html

anti-virus
http://www.Linux-Sec.net/Mail/antivirus.gwif.html

c ya
alvin

> ps : I'll try pptp later because it seems quite complicated

much simpler than the antivirus/antispam problems...





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Pwcheck messing up again

2002-11-06 Thread Curtis Vaughan
Been going over everything we did over a month ago, but can't seem to 
figure this out.

I restarted our postfix server for certain reasons, only to discover 
that now no one can log in to receive mail. The problem is that pwcheck 
server is not working.  Every time I start pwcheck, the process is never 
there. Performing strace gives me the following information.  Any ideas?


Pacifica:/var/log# strace /usr/sbin/pwcheck
execve("/usr/sbin/pwcheck", ["/usr/sbin/pwcheck"], [/* 15 vars */]) = 0
uname({sys="Linux", node="Pacifica", ...}) = 0
brk(0)  = 0x804a434
open("/etc/ld.so.preload", O_RDONLY)= -1 ENOENT (No such file or 
directory)
open("/etc/ld.so.cache", O_RDONLY)  = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=10735, ...}) = 0
old_mmap(NULL, 10735, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40014000
close(3)= 0
open("/lib/libcrypt.so.1", O_RDONLY)= 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320\t\0"..., 
1024) = 1024
fstat64(3, {st_mode=S_IFREG|0644, st_size=19136, ...}) = 0
old_mmap(NULL, 182044, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x40017000
mprotect(0x4001c000, 161564, PROT_NONE) = 0
old_mmap(0x4001c000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 
3, 0x4000) = 0x4001c000
old_mmap(0x4001d000, 157468, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x4001d000
close(3)= 0
open("/lib/libc.so.6", O_RDONLY)= 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\30\222"..., 
1024) = 1024
fstat64(3, {st_mode=S_IFREG|0755, st_size=1153784, ...}) = 0
old_mmap(NULL, 1166560, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x40044000
mprotect(0x40157000, 40160, PROT_NONE)  = 0
old_mmap(0x40157000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 
3, 0x113000) = 0x40157000
old_mmap(0x4015d000, 15584, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x4015d000
close(3)= 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, 
-1, 0) = 0x40161000
munmap(0x40014000, 10735)   = 0
socket(PF_UNIX, SOCK_DGRAM, 0)  = 3
fcntl64(3, F_SETFD, FD_CLOEXEC) = 0
connect(3, {sin_family=AF_UNIX, path="/dev/log"}, 16) = 0
fork()  = 1033
--- SIGCHLD (Child exited) ---
_exit(0)= ?



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Pwcheck messing up again

2002-11-06 Thread Curtis Vaughan
Something's definitely wrong with the way i have the server set up.

I finally found the log I was looking for in order to identify the 
problem as well as the post one Debian user had posted about the same 
problem. Here's that letter:

I straced pwcheck and inetd (which pop3d is working from) and saw that
the former tries to open /var/run/pwcheck/pwcheck, and the latter
connects to /var/state/pwcheck/pwcheck.


As a workaround, I ln -s ../state/pwcheck /var/run, and it works. But I
don't understand what has happened. I've searched the archives and read
/usr/share/doc/libsasl7/sysadmin.html, but I can't see how pop3d knows
that it should use pwcheck and not anything else, or why pwcheck started
to look for /var/run/pwcheck instead of /var/state/pwcheck. Could anyone
please explain what has happened, and possibly point me to the proper
solution?


But I looked in /var/run earlier and there was no link. So my symlink 
must have been deleted or something.

It's working again, but I worry that if the server were to reboot due to 
a power outage that it will be down again.

Curtis


nate wrote:

Curtis Vaughan said:

 

fork()  = 1033
   



try strace -fF /usr/sbin/pwcheck

maybe it can catch the stuff that happens in the fork

nate




 




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



about quotas?

2002-11-12 Thread Curtis Vaughan
I have a question, which really doesn't concern quotas as far as I 
understand them.

Over the weekend, I needed to perform a task whereby a file was written 
from an NT 4 server to a samba share on a Debian server.  The file was 
about 3.5 gig. At 3.2 I received an error to the effect that there was 
no more disk space left, although in fact the partition size was about 
28 gig.

So, just for the sake of it, I copied the file from the server to the 
partition and it worked!  After deleting the file, I tried to perform 
the original operation again, but it would only write about 1 meg of 
information and then error out that there was no space.

Why would this be happening?

btw, I don't have quotas enabled.

Curtis Vaughan


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Debian on an iBook

2002-11-14 Thread Curtis Vaughan
I was wondering whether anyone has been able to successfully install 
Debian on an iBook. What problems were there?  And have you been able to 
have it set up for dual boot between Debian linux and OS X?

Curtis


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Debian on an iBook

2002-11-14 Thread Curtis Vaughan
Yeh, I agree that Fink is over-rated. I've used it and find it 
frustrating.  In fact, for whatever reason, running KDE under fink will 
eventually just drag my system down to a near stop.  I then have to 
close it and restart it.  

Here's a site I found.

http://mij.oltrelinux.com/ibook/step_step/index.html

Gilger.John wrote:

Fink is highly over-rated (as is OSX). I am running Debian on a Ti PowerBook. Here are a couple of install guides: http://people.debian.org/~branden/ibook.html

http://cattlegrid.net/~christophe/titanium/

HTH

John

-Original Message-
From: Jim Hickstein [mailto:jxh@;jxh.com]
Sent: Thursday, November 14, 2002 01:41 PM
To: [EMAIL PROTECTED]
Cc: Debian User List
Subject: Re: Debian on an iBook 


I haven't tried this yet, but depending on your motivations you might want 
to know about Fink (fink.sourceforge.net), which ports Debian's apt system 
to MacOS X.  Would that Fink got as much energy devoted to it as Debian 
generally

--On Thursday, November 14, 2002 12:57:18 -0800 Curtis Vaughan 
<[EMAIL PROTECTED]> wrote:

 

I was wondering whether anyone has been able to successfully install
Debian on an iBook. What problems were there?  And have you been able to
have it set up for dual boot between Debian linux and OS X?

Curtis


   




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Sophos for Postfix

2002-11-15 Thread Curtis Vaughan
I recall someone from this list stating that they were using Sophos.  I 
think it might have been Nate, but I'm not sure.  

My question, is anyone using Sophos on a Postfix server?   If so, here's 
the problem.  Sophos had me switch smtp over to port 2525 in the 
master.cf and services files.  Well, then scanning worked great, but no 
mail would get sent out.  What's going on?

Curtis


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



FreeSwan ipsec.conf file configuration

2002-11-25 Thread Curtis Vaughan
Can I use a FQDN in my ipsec.conf file for, in my case, the right= 
paramater.

i.e., right=mydomain.name.com

Curtis


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Postfix server acting as relay !!!!

2002-11-25 Thread Curtis Vaughan
I thought I had fixed my server so it wouldn't relay, but I just now 
looked at the queue and OH MY GOD!!!

Here is my main.cf

Any ideas


Curtis
# see /usr/share/postfix/main.cf.dist for a commented, fuller
# version of this file.

# Do not change these directory settings - they are critical to Postfix
# operation.
command_directory = /usr/sbin
daemon_directory = /usr/lib/postfix
program_directory = /usr/lib/postfix

mail_owner = postfix

smtpd_banner = $myhostname ESMTP $mail_name (Debian/GNU)
setgid_group = postdrop
biff = no

# appending .domain is the MUA's job.
append_dot_mydomain = no
myhostname = pacifica.vostok1.com
mydomain = vostok1.com
alias_maps = hash:/etc/aliases, ldap:ldapdata
myorigin = /etc/mailname
# mydestination = Pacifica.Vostok1.com, localhost.Vostok1.com, localhost
mydestination = $mydomain, $myhostname, localhost.$mydomain, localhost
#relayhost = 
mynetworks = 10.0.1.0/24, 10.0.0.0/24 

local_transport = cyrus
#mailbox_transport = lmtp:unix:/cyrus/socket/lmtp
mailbox_transport = cyrus

#smtpd_recipient_restrictions = permit_sasl_authenticated
smtpd_client_restrictions = permit_sasl_authenticated, permit_mynetworks, 
reject_unknown_client
smtpd_delay_reject = yes

#local_recipient_maps = unix:passwd.byname

mailbox_command = 
mailbox_size_limit = 0
recipient_delimiter = 
#relayhost = 

#relay_domains = $mydestination, $virtual_domains
#virtual_domains = pacificseabass.com, vostok.pt, npc-usa.com 



Re: Postfix server acting as relay !!!!

2002-11-25 Thread Curtis Vaughan
I'm not using SASL actually, although I would love to. I just haven't 
gotten to configuring that yet.

Curtis

nate wrote:
Curtis Vaughan said:


I thought I had fixed my server so it wouldn't relay, but I just now
looked at the queue and OH MY GOD!!!



your main.cf looks good to me. if someone is relaying through you
perhaps they are spoofing their ip address? I reccomend blocking
all non routable ips at your firewall. Either that or perhaps the
sasl thing is broken?(I've never used it), maybe it is allowing
everyone through ..

nate








--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Postfix server acting as relay !!!!

2002-11-25 Thread Curtis Vaughan
I have changed my main.cf with the following. Do you think this might work?

I unquoted the parameter:
local_recipient_maps = unix:passwd.byname
and then added to smtpd_client_restrictions, permit_local_recipient_maps



I'm not using SASL actually, although I would love to. I just haven't 
gotten to configuring that yet.

Curtis

nate wrote:
Curtis Vaughan said:


I thought I had fixed my server so it wouldn't relay, but I just now
looked at the queue and OH MY GOD!!!



your main.cf looks good to me. if someone is relaying through you
perhaps they are spoofing their ip address? I reccomend blocking
all non routable ips at your firewall. Either that or perhaps the
sasl thing is broken?(I've never used it), maybe it is allowing
everyone through ..

nate




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Postfix server acting as relay !!!!

2002-11-25 Thread Curtis Vaughan
Well, I took your advice, except for the check_relay_domains, but still 
I am relaying. I guess the intended recipients have FQDNs.

check_relay_domains I am not using because originally that is what I 
did, but it would only relay to those domains.  What if an authorized 
user wishes to send a letter to someone at yahoo.com?  It's not in the 
relay domains, therefore it is dropped.

Curtis

Antoine Jacoutot wrote:
On Tue, 2002-11-26 at 01:22, Curtis Vaughan wrote:


I thought I had fixed my server so it wouldn't relay, but I just now 
looked at the queue and OH MY GOD!!!

Here is my main.cf

Any ideas


You could add a line like this:
smtpd_recipient_restrictions = permit_mynetworks,
reject_non_fqdn_recipient, check_relay_domains





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: RealPlayer

2002-12-05 Thread Curtis Vaughan
That installed it, but there is no sound. I tried switching from 
built-in sound system to old OSS drivers, but no go.
Any ideas?

Curtis

Raph HP wrote:

Hello,
 

Will RealPlayer work on an iBook?  And, if so Well, I downloaded
the yes, it does, and really good
   


 

bin file for installation, but everytime I enter the command to
execute the bin, I get the following error: cannot execute binary file
   

looks like this is not a linux-ppc executable
 

By the way, I did make the file executable.
   

hm... are you really sure that you downloaded the right file? The
selection form is _really_ strange, the names are ambigous. I used the
link http://huxley.real.com/real/player/unix/unix.html?src=rpbform

The file I downloaded (and that works) is named:
rp8_linux_powerpc_cs1.bin
In the form, under "Select OS" you have to chose Linux/PPC 2000 and
under "Select CPU" PowerPC. I know this is a bit confusing, but it was
not me who wrote this pages :-)

raph
 




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



dates on share

2002-12-06 Thread Curtis Vaughan
I just noticed that whatever I save from my Linux computer over to my Linux server, the date for the file is all wrong!

The date will be different depending on how I copy it over there.
For example:
1) If I copy through smb mount, then the date is always Dec. 31, 1969. This is the date shown in Konquerer and when in a bash screen.
2) If I copy through scp, then the date in Konquerer is also Dec. 31, 1969, but in the bash screen it shows today's date and time.




capture realaudio

2002-12-09 Thread Curtis Vaughan
Is there a way to capture a streaming RealAudio file, so that I can have 
it recorded on my computer?

Curtis


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



proftp or wu-ftp?

2003-09-03 Thread Curtis Vaughan
I need to set up an ftp server.   I've looked at wu-ftp and a little at 
proftp.  I'm wondering what people find to be the better, and easiest 
to set up.

Actually, I'm having trouble setting either up.  But let me tell you 
what I want to do.

Right now I need to set up an ftp site that authenticated users can 
only access in order to download files.  Authentication in our network 
is provided by LDAP w/PAM.  I see that proftp has an LDAP package, 
which I have installed right now.  So, it seems at first the better.  
Ultimately, we may be setting up additional Virtual hosts.

Basically, that's it.

Curtis

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: proftp or wu-ftp?

2003-09-04 Thread Curtis Vaughan
Ryan do you or does anyone have any instructions for a dim-wit like 
myself on how to set up proftp.

I've got it installed and kind of operating, but how do I make it 
default to /home/ftp whenever ANYONE logs in.

Curtis

On Wednesday, Sep 3, 2003, at 20:50 US/Pacific, Ryan Nowakowski wrote:

On Wed, Sep 03, 2003 at 01:26:20PM -0700, Curtis Vaughan wrote:
I need to set up an ftp server.   I've looked at wu-ftp and a little
at
proftp.  I'm wondering what people find to be the better, and easiest
to set up.
Actually, I'm having trouble setting either up.  But let me tell you
what I want to do.
Right now I need to set up an ftp site that authenticated users can
only access in order to download files.  Authentication in our network

is provided by LDAP w/PAM.  I see that proftp has an LDAP package,
which I have installed right now.  So, it seems at first the better.
Ultimately, we may be setting up additional Virtual hosts.
I use proftpd and find it to be very flexible.  It takes a little time
setting it up but works great.
--
Ryan Nowakowski
Computer Support for Small Business and Individuals
http://austincomputersupport.com


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: proftp or wu-ftp?

2003-09-04 Thread Curtis Vaughan
After editing /etc/pam.d/proftpd do I need to restart proftp?  It 
doesn't seem to work: i.e., for whatever reason I am the only one 
allowed to log in.  I can't log in under any other user period.  Now, 
this may be due to the fact that I have a home directory on this 
server, no one else does.

Curtis

On Thursday, Sep 4, 2003, at 06:45 US/Pacific, Mark Roach wrote:

On Wed, 2003-09-03 at 16:26, Curtis Vaughan wrote:
[...]
Right now I need to set up an ftp site that authenticated users can
only access in order to download files.  Authentication in our network
is provided by LDAP w/PAM.  I see that proftp has an LDAP package,
which I have installed right now.  So, it seems at first the better.
Ultimately, we may be setting up additional Virtual hosts.
You don't need to use a separate LDAP package, proftp uses pam for
authentication, just twiddle your /etc/pam.d/proftpd
-Mark

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact 
[EMAIL PROTECTED]


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: proftp or wu-ftp?

2003-09-04 Thread Curtis Vaughan
Got it working just before I got the replies.

Actually, I found a how-to dealing with a OSX server, which pointed me 
in the right direction. Seems to be working now.

Thanks!

Curtis

On Thursday, Sep 4, 2003, at 14:40 US/Pacific, Mark Roach wrote:

On Thu, 2003-09-04 at 17:25, Curtis Vaughan wrote:
After editing /etc/pam.d/proftpd do I need to restart proftp?
No

It doesn't seem to work: i.e., for whatever reason I am the only one
allowed to log in.  I can't log in under any other user period.  Now,
this may be due to the fact that I have a home directory on this
server, no one else does.
It could be, I know that proftpd will allow you to "chroot" ftp 
sessions
to the user's home dir. I think you have to do that on purpose though.
Have you tested your pam_ldap setup with other services to make sure it
is correct? I think the default setup requires the user to have a valid
shell (listed in /etc/shells) did you check that? What does "getent
passwd username" show for a user who can't log on. Also, make sure that
"AuthPAM on" is in your config file.

As for the default path for users to see (mentioned in another message)
I believe that all you need is a section like this: "DefaultRoot
/home/ftp" or whatever path.
It sounds like you really need to take a few minutes to go through the
manpage for proftpd.conf to get a general overview of the options 
before
you start trying to wrangle the config file.

-Mark

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact 
[EMAIL PROTECTED]


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



proftp outside the LAN problem

2003-09-05 Thread Curtis Vaughan
I've got proftp running and it works great, in fact perfect inside our 
company LAN.  So, I thought everything was perfect. HA!

Outside in the real world, I am able (through a terminal session) to 
ftp in (login and password checked) but I can't do anything.
Here as an example is what happens inside the LAN when I issue the 
command "ls"

Remote system type is UNIX.
Using binary mode to transfer files.
ftp> ls
200 PORT command successful.
150 Opening ASCII mode data connection for file list.
-rwxrwxr--   1 536  540 13824 Sep  4 22:15 Test.xls
drwx--   2 0daemon   4096 Aug 27 20:07 bin
drwx--   2 0daemon   4096 Aug 27 20:03 etc
226-Transfer complete.
226 Quotas off
However, outside the LAN I get the following errors:

Remote system type is UNIX.
Using binary mode to transfer files.
ftp> ls
500 EPSV not understood.
227 Entering Passive Mode (10,0,1,11,18,205).
Any ideas?

BTW, trying to use a web browser for ftp outside the LAN, just times 
out.

Curtis

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



SBS4.5 with Samba PDC

2003-04-03 Thread Curtis Vaughan
Has anyone made a Samba server the PDC for a Windows environment with 
SBS4.5?  My concern is that SBS4.5 is going to have problem with 
relinquishing its PDC role.  As I understand, SBS4.5 does not recognize 
any other PDC.  But that's with respect to a Windows environment.  If I 
raise the OS level of the Samba server high enough would it "overrule" 
SBS 4.5?

Curtis Vaughan

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Samba permissions

2003-05-27 Thread Curtis Vaughan
Wow, I thought I knew Samba permissions, but I guess I don't.

Currently, any user that has an account on the Samba server has access 
to the share "Accounting".

So, let's say I have user1, user2, user3, user4
I have added user1, user2 and user3 to the accounting group.  user4 is 
not a member of accounting.

On the server itself (not for Samba), I set up permissions for the 
folder as 774 for all directories and files therein.  User/group 
permission are set as admin.accounting

The samba section for this share reads:

[Accounting]
comment = Accounting
path = /home/accounting
read only = No
create mask = 0770
force create mode = 0770
security mask = 0770
directory mask = 0770
force directory mode = 0770
directory security mask = 0770
inherit permissions = Yes
If any local user access this share, they also automatically become part 
of the accounting group (as far as samba is concerned).

Now, if I add a line "valid users = user1, user2, user 3" then of 
course, just they can get in. But that doesn't seem to be the right 
solution.  The right solution would be to permit only accounting group 
users into the folder.  What am I doing wrong?

--
Curtis Vaughan
North Pacific Corporation
http://www.angelfire.com/wa/noentry/home.htm
WashTech (CWA Local 37083)
IWW x353203


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



KDE problem on startup

2003-06-20 Thread Curtis Vaughan
When KDE is starting, it goes through like 5 stages represented by 
icons. Unfortunately, I can't remember them all but on the second one, 
where it's starting system something or other it hangs for a long time, 
then the startup screen disappears leaving just a light blue background 
and nonething else.

What could be wrong?

I'm using Debian stable on a PowerPC.  It's been working fine for almost 
a year now.

Curtis

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Embedded Linux PDA

2002-12-11 Thread Curtis Vaughan
I'm thinking of getting a Linux embedded PDA, but was wondering what 
people would advise. Looking at what's out there Sony's Zaurus looks 
pretty good.  Anyhow, really the main reason I would want one is not 
just for addresses and some scheduling, but really, I would like to be 
certain that I could ssh in to servers as necessary.  No one in any 
documents about PDAs, which I have looked at, has mentioned bash or 
other shells that can be used for such purposes.  

Any advice?

Curtis


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Phonetic Russian Keyboard

2002-12-13 Thread Curtis Vaughan
Does anyone know how to get a Russian phonetic keyboard under KDE for woody?

ëÔÏ-ÌÉÂÏ ÒÁÓÓËÁÖÅÔ, ËÁË ÕÓÔÁÎÏ×ÉÔØ ÆÏÎÅÔÉÞÅÓËÕÀ ËÌÁ×ÉÁÔÕÒÕ ÒÕÓÓËÏÇÏ ÑÚÙËÁ?

Curtis


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



pam

2002-12-13 Thread Curtis Vaughan
 I have found the following document from a post dated Nov. 1999.  I am 
wondering how relevant it is today to Debian.  Particularly, the part I 
have highlighted concerning pam_pwdb.so


 [ANNOUNCE]: Mini-Policy regarding PAM usage in Debian



   * //

Because of all the questions I get pertaining to PAM and its
implementation in Debian wrote a small document which answers most of the
common questions and describes things to look for when enabling PAM in
applications for Debian. Please feel free to comment, and note this file
will be in the libpam0g doc directory on the next upload.

Also, for those interested in packaging some small modules from other
sources, I have a nice list of some that should be worth while. Please
email me for the URL's:

pam_krb5: (requires a non-US developer)

pam_mysql: auth against a mysql database

pam_opie: OPIE style authentication

pam_if: provides if/else style syntax for pam.d config files

pam_nw_auth: auth against a netware server

pam_pwdfile: unix style authentication on databases other then the
standard /etc/shadow,/etc/passwd

pam_radius_auth: auth against a radius server

pam_smb_passwd: helps to keep smb/unix passwords in sync

Xauth: authentication agent for X (prompts using graphical interface)

Thanks

--
---===-=-==-=---==-=--
/  Ben Collins  --  ...on that fantastic voyage...  --  Debian GNU/Linux   \
` [EMAIL PROTECTED]  -  [EMAIL PROTECTED]  -  [EMAIL PROTECTED]'
`---=--===-=-=-=-===-==---=--=---'

Author: Ben Collins <[EMAIL PROTECTED]>

Objective: To document a base set of policies regarding PAM (Pluggable
Authentication Modules) usage in Debian packages.

===

In order to have a consitent and stable implementation across packages
that use PAM, these guidelines will help to avoid some common mistakes and
be usable as a cross reference for FAQ's.

This document will not go into the details of how to add PAM usage to
existing code, please read the documentation in the libpam-doc package for
info on this.

==
PAM Applications
==

Each application that uses PAM also must contain a file in /etc/pam.d/.
This file specifies which PAM modules will be used for the common PAM
functions in that application. There are several notes concering what
modules to use in this file. Most commonly, the pam_unix.so module will be
all that is needed. Under some circumstances (such as ftp auth, or auth
based on tty) other modules will be required.

The name of this file is determined by the call to pam_start() in the
application source code. The first parameter will be a string containing
the "service" name (eg. "login", "httpd", etc..). Please make sure that
the filename coincides with this parameter.

The file should _not_ reference the full path of the modules. It only needs
to reference the basename (eg. "pam_unix.so"). This will ensure that the
program continues to work even if the module location changes, since
libpam itself will resolve the location.

*Under no circumstances should any program in Debian use the pam_pwdb.so
module by default. Instead the pam_unix.so module should be used. *Most
programs with RedHat support/default files will reference pam_pwdb.so in
their example files. Do not use this. There are several problems with
regard to pam_pwdb.so:

 1) It attempts to reimplement glibc's NSS code. For example, if your
 program uses pam_pwdb.so, and the user changes /etc/nsswitch.conf to use
 NIS, NIS+, or LDAP, then your program will fail to work unless the user
 also knows to edit /etc/pwdb.conf (which is not neccesary for
 pam_unix.so). In the case of LDAP, the program would become absolutely
 useless until the user modifies the pam.d file themselves to use
 pam_unix.so.

 2) It adds to the layer of glibc function calls making it harder to
 debug problems. Because libpwdb masks glibc native calls, it requires
 being able to debug libpwdb, libpam, libc and the offending program.

Note that pam_unix.so takes the same module arguments as pam_pwdb.so, so
you can just replace the references. If you are not sure if the pam.d
files is correctly setup, please feel free to email it to me, and I will
glance it over.

Currently libpam-modules is in the base setup, so it's dependency is not
needed (since the library depends on the correct version). However, if any
modules other than the base set in libpam-modules are used, that package
must be depended on.

The pam_unix.so module allows programs to verify the authentication of the
uid of the calling process without any set bits (uid or gid). NOTE: this
means the user executing the program, you cannot authenticate agaist other
users without suid root (root makes sure the NIS and NIS+ works too) or
atleast sgid shadow (wont work in the above

Russian Phonetic Keyboard, pt 2

2002-12-18 Thread Curtis Vaughan
According to some advice I got, there should be a file ru_yawerty in 
/etc/X11/xkb/symbols, which apparently is for a Russian phonetic 
keyboard.  However, in my installation of Debian 3.0, KDE 2, there is no 
such file.  So, I found the file on the internet, and copied it over to 
this directory.

According to the advice, I then need to issue the command:
setxkbmap ru_yawerty

which I did.  After which I could no longer  even type anything. So, 
either I got the wrong ru_yawerty file or something else needs to be 
done.  Also, I need to somehow use the yawerty file for Russian and not 
for English.  When I issued the aforementioned command, I couldn't type 
regardless of whether I chose English or Russian.

Curtis


ðÏ ÓÏ×ÅÔÕ Ñ ÐÏÎÉÍÁÀ, ÞÔÏ ÄÏÌÖÅÎ ÂÙÔØ ÆÁÊÌ ru_yawerty × ÐÁÐËÅ 
/etc/X11/xkb/symbols, ËÏÔÏÒÙÊ ÐÏÌØÚÕÅÔÓÑ ÄÌÑ ÒÕÓÓËÏÊ ÆÏÎÅÔÉÞÅÓËÏÊ 
ËÌÁ×ÉÁÔÕÒÙ. ë ÓÏÖÁÌÅÎÉÀ ÎÅÔ ÔÁËÏÇÏ ÆÁÊÌÁ × ÍÏÅÊ ÉÎÓÔÁÌÌÁÃÉÉ Debian 3.0, 
KDE 2. ðÏÜÔÏÍÕ Ñ ÎÁÛÅÌ ÔÁËÏÊ ÆÁÊÌ × ÉÎÔÅÒÎÅÔÅ É ÓËÏÐÉÒÏ×ÁÌ ÅÇÏ × ÄÁÎÎÏÊ 
ÄÉÒÅËÔÏÒÉÉ.

ðÏ ÓÏ×ÅÔÕ Ñ ××ÅÌ ÓÌÅÄÕÀÝÕÀ ËÏÍÍÁÎÄÕ:
setxkbmap ru_yawerty

ðÏÓÌÅ ÜÔÏÇÏ Ñ ÂÏÌØÛÅ ÎÅ ÍÏÇ ÐÅÞÁÔÁÔØ ×ÏÏÂÝÅ! éÌÉ Ñ ÓËÏÐÉÒÏ×ÁÌ 
ÎÅÐÒÁ×ÉÌØÎÙÊ ÆÁÊÌ ru_yawerty ÉÌÉ ÞÔÏ-ÔÏ ÄÒÕÇÏÅ ÎÁÄÏ ÄÅÌÁÔØ. ôÁËÖÅ ÍÎÅ 
ÎÁÄÏ ÕËÁÚÁÔØ, ÞÔÏÂÙ ÐÏÌØÚÏ×ÁÌØÓÑ ÜÔÉÍ ÆÁÊÌÏÍ ÌÉÛØ ÄÌÑ ÒÕÓÓËÏÇÏ ÑÚÙËÁ É 
ÎÅ ÄÌÑ ÁÎÇÌÉÊÓËÏÇÏ. ÷ÅÄØ ÐÏÓÌÅ ××ÏÄÁ ÄÁÎÎÏÊ ËÏÍÍÁÎÄÙ Ñ ÎÅ ÍÏÇ ÐÅÞÁÔÁÔØ × 
ÒÅÖÉÍÅ ÎÉ ÁÎÇÌÉÊÓËÏÇÏ ÎÉ ÒÕÓÓËÏÇÏ ÑÚÙËÁ.

ëÕÒÔÉÓ


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



vsound issue

2002-12-30 Thread Curtis Vaughan
I want to record a streaming audio file.  In order to do this I am 
issuing the following command, which gives me the following error.

vsound -f test.wav realplay 
http://128.208.34.102:8080/ramgen/RadioIntersection/20021203intersection.rm

About to start the application. The output will not be available
until the application exits.
Missing file ./vsound837.au.
This means that the libvsound wrapper did not work correctlty.
Here are some the possible reasons :
- You are trying to record a stream (RTSP or PNM protocol) from 
  the internet. You will need to use the --timing option.
- The program you are trying to run is setuid. You will need to 
  run vsound as root.
- Vsound was not properly installed and hence won't work at all.

Any ideas how to this problem?

There really is no vsound837.au file, but then I can't find any such 
file on my computer at all.  Is there something else wrong?

Curtis

--
Curtis Vaughan


WashTech (CWA Local 37083)
IWW x353203



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Postfix bounce

2003-01-09 Thread Curtis Vaughan
Is it possible to turn off bounce under postfix?

Or, at least, configure bounce so that it doesn't attach any attachments 
to the original letter?

--
Curtis Vaughan
North Pacific Corporation

Tel: (425) 822-1001
Cell: (206) 423-6979

WashTech (CWA Local 37083)
IWW x353203



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Postfix options

2002-09-04 Thread Curtis Vaughan

I was wondering if anyone might be able to give me advice on the 
following options, and I don't wish to start a flame war here.

I want to set up a Postfix server for our office.  As I see it I could 
go Suse Email Server III or use the Debian Postfix package in conjuction 
with something like Squirrelmail.

I can think of advantages and disadvantages to each, but I would like to 
know what anyone out there with a working knowledge of these two options 
thinks.

I really appreciate your response,

Curtis Vaughan
Seattle


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: dead keys?

2002-09-09 Thread Curtis Vaughan

Matt Price wrote:
> Hi everyone,
> 
> can anyone tel\l me how to activate dead keys?  I'm running KDE over
> Woody & Xfree4.1, using a standard ;Wondoze us keyboard on an
> amd-based machine.  I checked under XFConfig-4 and the keyboard is NOT
> set to nodeadkeys.  
> 
> argh! so close..,.  thanks,
> matt
> 
> 

That's easy.  In your control center there is a keyboard configuration 
tool.  You need to add an additional layout called US English w/ deadkeys.

Curtis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Virtual Servers on Apache

2002-09-11 Thread Curtis Vaughan

I have moved all our web pages from IIS to Apache on a Debian Server. We 
have multiple web sites all on one public IP. Specifically,


www.npc-usa.com
www.vostok1.com
www.pacificseabass.com

all fixed to the public IP of 208.12.13.138.

If I understand the instructions right, configuring this is simply a 
matter of setting up Virtual Domains.  So, in httpd.conf file I have:

NameVirtualHost 208.12.13.138:80


DocumentRoot /var/www/NPC/
ServerName www.npc-usa.com



DocumentRoot /var/www/Vostok1/
ServerName www.vostok1.com



DocumentRoot /var/www/Seabass/
ServerName www.pacificseabass.com


But regardless of which site I go to I end up in the directory for 
www.npc-usa.com

In addition, so far I can't figure out for the life of me where I tell 
Apache which file is the default (home) file for each host (i.e., when 
one goes to www.npc-usa.com the default file is NPC_Home.htm).

Curtis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Virtual Servers on Apache

2002-09-11 Thread Curtis Vaughan

YES!

That worked.

Any ideas about how to tell Apache that the default file for a Host is a 
particular file (i.e., for www.npc-usa.com the default (home) file is 
NPC_Home.htm).

Curtis

Tom Goulet (UID0) wrote:
> Try it this way:
> 
> 
>>NameVirtualHost 208.12.13.138:80
> 
> NameVirtualHost *
>  
> 
>>
>>DocumentRoot /var/www/NPC/
>>ServerName www.npc-usa.com
>>
>>
>>
> 
> 
> 
> 
> For everything that isn't the default.
> 
> 
>>But regardless of which site I go to I end up in the directory for 
>>www.npc-usa.com
> 
> 
> You have too many _default_s :)
>  




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Moving mailboxes in Postfix

2002-09-19 Thread Curtis Vaughan

Can anyone tell me if it's possible to move mailboxes from 1 postfix 
server to another?  Provided, of course, that it's not a total pain in 
the ass to do.

Basically, I have users on a virtual domain on one Postfix Server that I 
want to move to a new server where they will be the primary domain.

Curtis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Moving mailboxes in Postfix

2002-09-19 Thread Curtis Vaughan

nate wrote:
> Curtis Vaughan said:
> 
>>Can anyone tell me if it's possible to move mailboxes from 1 postfix
>>server to another?  Provided, of course, that it's not a total pain in
>>the ass to do.
>>
>>Basically, I have users on a virtual domain on one Postfix Server that I
>>want to move to a new server where they will be the primary domain.
> 
> 
> I may be missing something, but from what I know, postfix doesn't
> store mail(other then the mail queue), if your referring to moving
> a mail account from 1 system to another, and how easy it is, that
> entirely depends upon the kind of mail system your using. I use cyrus
> and it's not too difficult to move from one system to another, though
> its not as simple as just copy the files over
> 
> nate
> 
> 
> 
> 

Ok, I have a SuSe email server III set up.

Also, if you are using IMAP then the mail is stored in respective 
folders of the user on the server until the user deletes it.  While for 
POP3 it remains on the server until the user pulls it down or deletes 
it, depending on how it's set up for the user.  So, somehow it is, in 
fact, storing messages in some manner.

I would really like to move some users off this server over to a 
strictly Debian Postfix solution.

Curtis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Moving mailboxes in Postfix

2002-09-19 Thread Curtis Vaughan

Telneting in I get:

+OK oceanica Cyrus POP3 v2.0.16 server ready

And I intend to use Postfix on the new system.

And I have all passwords, but as you say that wouldn't matter as I can 
do basically whatever I want with their accounts.

> 
> er, i shoulda been more clear. When I mean mail system I meant what
> software, that is, UW IMAP? Cyrus ? Courier? I'm not famillar with
> SuSE's email server software, also what software do you plan to use
> on the debian side? And do you have the passwords for those users so
> you can migrate the authentication?(or you could just assign them
> new ones and tell them).
> 
> A last resort method, a method I used for migrating from UW IMAP to
> Cyrus almost 2 years ago at my company was to bring up the cyrus
> server and have users copy/move the mail from the old server to the
> new server via their IMAP clients since there was not a solid migration
> system that I could trust to do the migration offline.
> 
> So:
> 
> 1) what email server software does SusE use?(one way to try to find out
> is to telnet to ports 110 and 143 and look at the banner the software sends
> out)2) what email server software(UW IMAP, Courier, Postfix, other?) do you
> plan to use on the debian system?
> 
> nate
> 
> 
> 
> 




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Samba w/LDAP

2002-10-03 Thread Curtis Vaughan

I'm currently trying to compile Samba to work with LDAP.  I found a 
HOWTO by a Olivier Lemaire, which provides some specifics for compiling 
Samba with LDAP support for Woody.  However, not everything is so 
straight forward. Prior to going to the next step, could someone tell me 
if this is right?

This HOWTO uses Samba v. 2.2.4-1, however the stable version available 
is 2.2.3a-6.  This IS the version I am using. This may, therefore, 
account for some discrepancies.

According to this HOWTO, I need to edit the /rules/ file to read:

[ -f source/Makefile ] || (cd source && ./configure \
--host=$(DEB_HOST_GNU_TYPE) \
--build=$(DEB_BUILD_GNU_TYPE) \
--with-fhs \
--prefix=/usr \
--sysconfdir=/etc \
--with-privatedir=/etc/samba \
--localstatedir=/var \
--with-netatalk \
--with-smbmount \
--with-pam \
--with-syslog \
--with-sambabook \
--with-utmp \
--with-readline \
--with-libsmbclient \
--with-winbind \
--with-msdfs \
--with-automount \
--with-acl-support \
--with-profile \
--disable-static \
--with-ldapsam)

and I need to comment out the following lines:

#   install -m 0644 source/nsswitch/pam_winbind.so 
$(DESTDIR)/lib/security/
#   cp debian/samba.pamd $(DESTDIR)/etc/pam.d/samba

One line that it stated I should comment out follows, but I found no 
such line:

mv $(DESTDIR)/usr/bin/pam_smbpass.so $(DESTDIR)/lib/security/


I should also remove the only line of text in /libpam-smbpass.files

/I should remove the line for pam in the file /samba-common.conffiles/. 
 According to the HOWTO this is the only line of text in this file, but 
I have one other line of text in the file which I left.

Finally, I should remove lines of text in /winbind.files/, but I don't 
have such a file.

After all this I'm supposed to build the package.

Additional questions:
Prior to building, shouldn't I have OpenLDAP installed?
Also, in the instructions, they talk about being sure you have a 
/samba.schema/ file copied over to an LDAP directory, but I have no such 
file.  Or will that file be available after building and installing the 
new Samba compile.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Fwd: DailySet1 AMANDA PROBLEM: FIX BEFORE RUN, IF POSSIBLE

2003-11-26 Thread Curtis Vaughan
Hopefully there are some amanda users out there.  I sent this to the 
amanda users list, but haven't gotten any replies, so, here is the 
result of an amcheck.  What is the possible problem with the system?  
Why is expecting a new tape?  Is there a way to reset the device and 
make it think there is a new tape in?  Thanks!

Amanda Tape Server Host Check
-
Holding disk /var/tmp: 728376 KB disk space available, that's plenty
ERROR: /dev/nst0: reading label: Input/output error
   (expecting a new tape)
NOTE: skipping tape-writable test
NOTE: info dir /var/lib/amanda/DailySet1/curinfo: does not exist
NOTE: it will be created on the next run
NOTE: index dir /var/lib/amanda/DailySet1/index/localhost: does not 
exist
Server check took 16.436 seconds

(brought to you by Amanda 2.4.2p2)


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Linux on HardDrive

2004-11-22 Thread Curtis Vaughan
I just got hold of an old portable PC, which I want to put linux on. 
Since the networking on this device is poor, I removed the harddrive 
and hooked it up to my own computer. So, my question is what do I need 
to do to the hard drive to get Linux to boot up on it, when I put it 
back in the original computer?

I have formatted the hard disk, but I need to set it up so that it will 
boot. How do I do that?

Curtis
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Linux on HardDrive

2004-11-22 Thread Curtis Vaughan
> On Mon, 22 Nov 2004 15:51:02 -0800, Curtis Vaughan <[EMAIL PROTECTED]>
> wrote:
>> I just got hold of an old portable PC, which I want to put linux on.
>> Since the networking on this device is poor, I removed the harddrive
>> and hooked it up to my own computer. So, my question is what do I need
>> to do to the hard drive to get Linux to boot up on it, when I put it
>> back in the original computer?
>>
>> I have formatted the hard disk, but I need to set it up so that it will
>> boot. How do I do that?
>
> Install a bootloader on that hard disk's MBR.  I recommend grub for that
> task.
> --
> Paolo Alexis Falcone
> [EMAIL PROTECTED]
>

But how do I go about creating the MBR and putting the bootloader there?


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Linux on an old machine

2004-11-23 Thread Curtis Vaughan
Ok, I want to put a linux distro on an old handheld pc. Here are it 
specs. Most distros, however, don't seem to like the lack of RAM.

TOSHIBA LIBRETTO 50CT
PROCESSOR Intel Pentiumï 75 Mhz
16Mbit EDO DRAM
I wanted to put Knoppix on it, but Knoppix won't like the low ram at 
all. I would put Debian on it, if I thought I wouldn't have problems 
with devices. Any ideas about how to do this?

Curtis


Question about a networking issue

2004-12-14 Thread Curtis Vaughan
I realize the following issue I describe has nothing necessarily to do 
with Debian, but I've found this to be one of the better forums to get 
answers.

Here is a really strange problem we are having between our 2 companies, 
which no one so far seems to be able to figure out.

Our company is in the Seattle area and is connected to our parent 
company in Russia by a VPN. The VPN, firewall, gateway solution for 
both our offices is IPCop (1.4.1 in Seattle, 1.3.0 in Russia).

In the Seattle office we have postfix server using Courier-IMAP with a 
POP3 daemon on a Linux server.

Last Friday, when the Russian personnel came to work, they were 
receiving their mail just fine for about 2 hours. Then 5 employees (and 
only 5 specific employees) were no longer able to receive any mail. 
They were all using POP3.
In the logs I could see that they would LOGIN and the there would be an 
immediate DISCONNECTED. Given the error they were getting at their end, 
it was as if they would connect and login to the server, but certain 
networking issues caused the server to believe that it had lost 
connectivity with those users.
The IT Admin on the Russian side was one of the 5 experiencing 
problems. His computer was set up to pull mail through a mail proxy 
server in their office. So, I told him not to use the proxy and 
circumvent it. Just go directly to our mail server through the VPN. He 
started pulling mail fine.
AHA! The culprit was the mail proxy server. Wrong
It turns out only a few people were going through the proxy server. The 
IT Admin in the Russian office went to the remaining 4 employees having 
problems and switched them to either using the proxy or not. In the end 
only one other of the employees starting pulling mail. In his case, he 
went from going directly through the VPN to going through the mail 
proxy in order to pull mail. Very strange. I had him try reconfiguring 
the remaining three to go through the Internet (not through the VPN), 
but that didn't resolve the problem either.
I asked him if they had any switches over there. Turns out they had 
several.
Since he didn't want to shut down the switches till the office was 
empty, we tried one other solution.
We switched the remaining 3 from POP3 to IMAP. It worked! But why?
That evening when the office emptied out, he shut down all the switches 
for 10 minutes. As I understand 2 of the 3 remaining employees 
nonetheless cannot get mail through POP3, but IMAP works.

So, I was wondering why this might be the case?  What could possibly be 
going on? What tests could we do to see what's going on?

BTW, we did do telnet sessions from the client computers. What happens 
is the clients LOGIN through POP3, but then a disconnect happens.

Curtis Vaughan
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



fsck on /dev/hde1 during boot,

2005-05-27 Thread Curtis Vaughan
Just installed Sarge on a server with 3 SCSIs and one IDE drive on an  
Adaptec ATA RAID 1200 A card.


The system starts booting otherwise fine, until it gets to apparently  
running fsck on the IDE drive. Then it errors out with:


fsck.ext3: No such device or address while trying to open /dev/hde1
Possibly non-existent or swap device?

Then it tells me to run fsck against it or hit Control-D to continue.

Doing a Control-D continues the boot process. Whereas /dev/hde1 = / 
home, all I have to do after booting up is issue the command mount / 
home and everything is working fine.


My guess is that for some reason /dev/hde1 is never mounted during  
the boot process. How can I overcome this problem?


BTW, fstab does have an entry for this partition.


Curtis


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Outlook to Mozilla

2001-12-19 Thread Curtis Vaughan
I remember recently someone wonderning about converting their Outlook 
mail to Mozilla.


In response someone else noted that Mozilla for Windows can import 
Outlook mail.


SO!  The obvious thing to do is to import Outlook mail into Mozilla.  It 
works!
Then, copy the folder and all of its contents Mozilla creates (you might 
want to archive it) and move that folder to your Linux partition.


In this case I copied everything to ~/.mozilla/default/Mail/

Here you will find the folder for whatever mail account you have already 
created - assuming there is no mail in it, I renamed the Mozilla mail 
account folder (say it was, "AOL" to "Old" and renamed the imported mail 
account folder to the name of the Mozilla mail account folder (i.e., 
"AOL").   You may not find this step necessary as this made all of my 
Public folder available - which I wanted.


Under the folder "AOL" you will see 2 folders, one is "Public 
Folders.sbd" and the other in my case is "a19922df.sbd". 

In order to get the contents of "a19922df.sbd" to be available, open 
Mozilla mail.  Create a new folder under "Local Folders".  Say it's 
called "Mail". Go ahead and close Mozilla mail.


Now, Take the "a19922df.sbd" folder and move it to 
~/.mozilla/default/Mail/Local Folders


Under "Local Folders" you will see the folder "Mail.sbd" which you just 
created in Mozilla mail.  Delete it and change the name of folder 
"a19922df.sbd" to "Mail.sbd"


Now open Mozilla and all your mail will be there.

Actually, it failed to import mail in some subfolders, but I had so 
little mail in them, that it didn't matter.


Good luck!

Curtis



Jumping on the printer setup problem bandwagon

2002-01-30 Thread Curtis Vaughan
Background info: Using potato
installed: lprng
installed: apsfilter

Apsfilter seems to have successfully set up my printer.  I assume this as it 
successfully printed the test sheet.  When I try to print any file from bash 
(i.e., cat printcap > /dev/lp0), however, paper just runs through the printer 
with nothing printed.

Any ideas?

Curtis



Re: Jumping on the printer setup problem bandwagon

2002-01-30 Thread Curtis Vaughan
Trying "a2ps" yields the same results were I to try "lpr": i.e.,

 sending job '[EMAIL PROTECTED]' to [EMAIL PROTECTED]
 connecting to 'localhost', attempt 1
 connected to 'localhost'
 requesting printer [EMAIL PROTECTED]
 error 'LINK_TRANSFER_FAIL' sending str '^Blp' to [EMAIL PROTECTED]
 job '[EMAIL PROTECTED]' transfer to [EMAIL PROTECTED] failed
[Total: 1 page on 1 sheet] sent to the printer `lp'


Curtis

On Wednesday 30 January 2002 11:54, you wrote:
> * Curtis Vaughan <[EMAIL PROTECTED]>, 2002-01-30 14:46 -0500:
> > Background info: Using potato
> > installed: lprng
> > installed: apsfilter
> >
> > Apsfilter seems to have successfully set up my printer.  I assume this
>
> as it
>
> > successfully printed the test sheet.  When I try to print any file
>
> from bash
>
> > (i.e., cat printcap > /dev/lp0), however, paper just runs through the
>
> printer
>
> > with nothing printed.
> >
> > Any ideas?
> >
> > Curtis
>
> a2ps?
>
> -Andre



Printer bandwagon

2002-01-30 Thread Curtis Vaughan
Although I hate using this as a solution to problems, rebooting got my 
printer working.  However, in light of the fact that apsfilter didn't offer 
me an HP4L, I chose just the HP4.  This is not the right printer specs 
obviously.  How do I know change the specs to what I need?  

Thanks,

Curtis



Samba clarification

2002-02-01 Thread Curtis Vaughan
I'm a little confused.

Background:
We have a network with a single subnet, which is divided between a Windows 
'community' and a Linux 'community'.  Communications between these 2 
'communities' is facilitated by a Samba server - or what we may call a 
gateway between the two.

Recently when I installed printer utilities on my workstation computer, I was 
informed that whereas samba was not installed locally I would not be able to 
share out the printer.  

Correct me if I'm wrong, but as I understand it all resources on my and other 
Linux workstations are not shared out to Windows OSes from the local Linux 
workstation per se, but by the Samba server (which in my case is a seperate 
box).  

Curtis



Fwd: Re: Samba clarification

2002-02-01 Thread Curtis Vaughan


--  Forwarded Message  --
Subject: Re: Samba clarification
Date: Fri, 1 Feb 2002 11:11:08 -0800
From: Curtis Vaughan <[EMAIL PROTECTED]>
To: Ron Johnson <[EMAIL PROTECTED]>


> You said "printer utilities".  What does that mean?

I installed LPRng and used apsfilter to configure.  I believe it was the
latter ap the gave me the 'warning' message.

> Why not run Samba on your machine?  Then all the Windows boxen can
> see your locally attached printer.  There's no tecnical reason why
> Samba must only run on one machine in the network.

In my work, the best way to run a network is to keep to a minimum the number
of computers you have to service.  Therefore, if Samba can be configured on 1
computer, thereby making all Linux workstation share resource available to
all Windows workstations and visa versa, then why install Samba on each Linux
workstation?

Curtis

---



Re: Samba clarification

2002-02-01 Thread Curtis Vaughan
On Friday 01 February 2002 12:41, you wrote:
> Hi,
> Wired 4 Life installs a number of linux servers which allow Windows Boxes
> to access network services such as windows, internet and ... Printers.
> Printer services dont need to be integrated with Samba, in fact samba can
> be confusing for many admins as they want to integrate systems in a windows
> fashion. Have you played with either
>   lpd
>   cups

This brings up another question, and I don't mean to start a debate but
What do most prefer; lprng, cups, etc.? What are the benifits of one over the 
other?
I used LPRng because it was already installed on my workstation.

Curtis



Networking - in theory

2002-02-08 Thread Curtis Vaughan
Ok, a theoretical question.

If I wish to network linux computers along with Windows computers, it seems 
that I have to have Samba server on each Linux workstation.

Is this correct?

Originally, it was my understanding that Samba server was installed only a 
seperate box that was basically a gateway between, what we might call 2 
'networks'.

Thanks for some input.

Curtis



Messenger

2002-02-13 Thread Curtis Vaughan
Is there an application that will allow me to communicate with people using 
MS Instant Messenger (or whatever it's called)?  One that will let me log in 
to hotmail.com as well?

thanks



  1   2   3   >