DATE CHANGE

1998-04-28 Thread Jeffrey Velez
How do I change the date on my linux machine?


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


Re: DATE CHANGE

1998-04-28 Thread Jeffrey Velez
That worked!

Thanks! Jeff


On Tue, 28 Apr 1998, Jeff Noxon wrote:

 On Tue, Apr 28, 1998 at 10:38:09AM -0400, Jeffrey Velez wrote:
  How do I change the date on my linux machine?
 
 You can change the software date/time with the date command.
 
 You can change your CMOS clock with the hwclock command, or possibly
 the clock command -- it depends on the version of Debian you're using.
 
 Check out the man pages on these programs.
 
 You can keep your clock forever synchronized using the xntp3 package,
 if your machine is connected to the Internet.
 
 Jeff
 
 
 --
 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: DATE CHANGE

1998-04-28 Thread Jeffrey Velez
Which NTP Server on the Net I can configure my xntp3?


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


Knowledge Base Applications

1998-02-25 Thread Jeffrey Velez
Could anyone tell me if there is a good Knowledge Base Application for
Linux?

Knowledge Base for Help Desk Personal that consist of technical notes on
Microsoft, Novell and other Company.

_
.__.   ___  ___
|  |   .__. .__..__. .__. .__. \  \/  /
|  |   |  | |   \   |  | |  | |  |  \  \  /  /
|  |   |  | |  |\ \ |  | |  | |  |   \  \/  /
|  |__.|  | |  | \ \|  | |  |_|  |  /  /\  \
|__|__.|__| |__|  \| |___| /__/   \__\
* DEBIAN GNU/Linux *





--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


LPRng and Magicfilter

1998-02-03 Thread Jeffrey Velez
I'm trying to print to a Novell 4.11 HP Laserjet 4 printer using a
JetDirect Box using LPRng and Magicfilter.  I can print to it, but it
prints out like this:

THIS IS A TEST
THIS IS A TEST 
THIS IS A TEST

My printcap file looks like this:

rlp|Remote HP LaserJet 4 printer entry
:lp=/dev/lp1
:rm=129.171.67.10
:rp=PQ_MNS_HELPDESK_DPG_4
:sd=/var/spool/lpd/ljet4
:if=/usr/sbin/ljet4-filter
:pl#66
:pw#80
:pc#150
:mx#0
:sh

Can anyone tell me if this printcap file is ok?





--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Settup Majordomo

1998-01-28 Thread Jeffrey Velez
I have the same directory permission as you, but I need to be group
majordom in order to excute anything.  I don't know how to find my setuid
for the wrapper, if you can tell me exactly how I can't find it!
I think it's set to majordom.  

Here is a copy of my Makefile.

# current directory (where you unpacked the distribution)
W_HOME = /usr/local/majordomo-$(VERSION)

# Where do you want man pages to be installed?
MAN = $(W_HOME)/man

# You need to have or create a user and group which majordomo will run as.
# Enter the numeric UID and GID (not their names!) here:
W_USER = 1004
W_GROUP = 1004

# These set the permissions for all installed files and executables
(except
# the wrapper), respectively.  Some sites may wish to make these more
# lenient, or more restrictive.
FILE_MODE = 644
EXEC_MODE = 755
HOME_MODE = 751

# If your system is POSIX (e.g. Sun Solaris, SGI Irix 5 and 6, Dec Ultrix
MIPS,
# BSDI or other 4.4-based BSD, Linux) use the following four lines.  Do
not
# change these values!
WRAPPER_OWNER = root
WRAPPER_GROUP = $(W_GROUP)
WRAPPER_MODE = 4755


On Tue, 27 Jan 1998, Steve Mayer wrote:

 Jeffrey,
 
   My /usr/lib/majordomo directory as permissions of
drwxrwxr_x  majordom majordom  
 
I can enter it as any user on the system.
 
What did you find out about the wrapper script?  Is the setuid bit
 set on it?
 
 Steve



--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Settup Majordomo

1998-01-28 Thread Jeffrey Velez
Steve,
Here is a copy of my wrapper.c file, can you take a look at it!




/*
 *  $Source: /sources/cvsrepos/majordomo/wrapper.c,v $
 *  $Revision: 1.8 $
 *  $Date: 1997/08/27 15:01:12 $
 *  $Author: cwilson $
 *  $State: Exp $
 *
 *  $Locker:  $
 *  
 */

#ifndef lint
static char rcs_header[] = $Header: /sources/cvsrepos/majordomo/wrapper.c,v 
1.8 1997/08/27 15:01:12 cwilson Exp $;
#endif

#include stdio.h
#include sysexits.h

#if defined(sun)  defined(sparc)
#include stdlib.h
#endif


#ifndef STRCHR
#  include string.h
#  define STRCHR(s,c) strchr(s,c)
#endif

#ifndef BIN
#  define BIN /usr/local/mail/majordomo
#endif

#ifndef PATH
#  define PATH PATH=/bin:/usr/bin:/usr/ucb
#endif

#ifndef HOME
#  define HOME HOME=/usr/local/mail/majordomo
#endif

#ifndef SHELL
#  define SHELL SHELL=/bin/sh
#endif

char * new_env[] = {
HOME,   /* 0 */
PATH,   /* 1 */
SHELL,  /* 2 */
#ifdef MAJORDOMO_CF
MAJORDOMO_CF,   /* 3 */
#endif
0,  /* possibly for USER or LOGNAME */
0,  /* possible for LOGNAME */
0,  /* possibly for timezone */
0
};

int new_env_size = 7;   /* to prevent overflow problems 
*/

main(argc, argv, env)
int argc;
char * argv[];
char * env[];

{
char * prog;
int e, i;

if (argc  2) {
fprintf(stderr, USAGE: %s program [arg ...]\n, argv[0]);
exit(EX_USAGE);
}

/* if the command contains a /, then don't allow it */
if (STRCHR(argv[1], '/') != (char *) NULL) {
/* this error message is intentionally cryptic */
fprintf(stderr, %s: error: insecure usage\n, argv[0]);
exit(EX_NOPERM);
}

if ((prog = (char *) malloc(strlen(BIN) + strlen(argv[1]) + 2)) == NULL) {
fprintf(stderr, %s: error: malloc failed\n, argv[0]);
exit(EX_OSERR);
}

sprintf(prog, %s/%s, BIN, argv[1]);

/*  copy the USER= and LOGNAME= envariables into the new environment,
 *  if they exist.
 */

#ifdef MAJORDOMO_CF
e = 4; /* the first unused slot in new_env[] */
#else
e = 3; /* the first unused slot in new_env[] */
#endif

for (i = 0 ; env[i] != NULL  e = new_env_size; i++) {
if ((strncmp(env[i], USER=, 5) == 0) ||
(strncmp(env[i], TZ=, 3) == 0) ||
(strncmp(env[i], LOGNAME=, 8) == 0)) {
new_env[e++] = env[i];
}
}


#if defined(SETGROUP)
/* renounce any previous group memberships if we are running as root */
if (geteuid() == 0) { /* Should I exit if this test fails? */
char *setgroups_used = setgroups_was_included; /* give strings a hint */
#if defined(MAIL_GID)
int groups[] =  { POSIX_GID, MAIL_GID, 0 };
if (setgroups(2, groups) == -1) {
#else
int groups[] =  { POSIX_GID, 0 };
if (setgroups(1, groups) == -1) {
#endif
extern int errno;

fprintf(stderr, %s: error setgroups failed errno %d, argv[0],
errno);
}
}
#endif
  

#ifdef POSIX_GID
setgid(POSIX_GID);
#else
setgid(getegid());
#endif

#ifdef POSIX_UID
setuid(POSIX_UID);
#else
setuid(geteuid());
#endif

if ((getuid() != geteuid()) || (getgid() != getegid())) {
fprintf(stderr, %s: error: Not running with proper UID and GID.\n, 
argv[0]);
fprintf(stderr, Make certain that wrapper is installed setuid, and 
if so,\n);
fprintf(stderr, recompile with POSIX flags.\n);
exit(EX_SOFTWARE);
}

execve(prog, argv+1, new_env);

/* the exec should never return */
fprintf(stderr, wrapper: Trying to exec %s failed: , prog);
perror(NULL);
fprintf(stderr, Did you define PERL correctly in the Makefile?\n);
fprintf(stderr, HOME is %s,\n, HOME);
fprintf(stderr, PATH is %s,\n, PATH);
fprintf(stderr, SHELL is %s,\n, SHELL);
fprintf(stderr, MAJORDOMO_CF is %s\n, MAJORDOMO_CF);
exit(EX_OSERR);
}


Settup Majordomo

1998-01-27 Thread Jeffrey Velez
I INSTALLED MAJORDOMO-1.94.4 ON MY DEBIAN LINUX MACHINE USING SENDMAIL,
BUT I'M GETTING SOME ERROR WHEN TRYING TO POST OR UNSUBSCRIBE. I CAN
SUBSCRIBE, BUT CAN NOT POST OR UNSUBSCRIBE. 

I GET THE FOLLOWING ERROR WHEN DOING SO:

MAJORDOMO ABORT (mj_majordomo)!!

Can't append to /usr/local/majordomo-1.94.4/lists/ccmail: Permission
denied

MY LISTS DIRECTORY RIGHTS ARE:

drwxrwxrwx   3 majordom majordom 1024 Jan 27 10:18 lists

IN MY LIST DIRECTORY THE FOLLOWING FILES ARE IN THERE:

total 47
-rw-rw   1 majordom majordom4 Jan 27 06:36 L.ccmail
-rwxrwxrwx   1 majordom majordom   60 Jan 27 06:26 ccmail
-rwxrwxrwx   1 majordom majordom16088 Jan 27 06:24 ccmail.config
-rw-rw-r--   1 majordom majordom24672 Jan 27 06:18 ccmail.info
-rwxrwxrwx   1 majordom majordom0 Jan 27 06:36 ccmail.new
-rw-rw   1 majordom majordom7 Jan 27 09:15 ccmail.passwd

CAN ANYONE TELL ME WHY I CAN NOT POST OR UNSUBSCRIBE?





--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Settup Majordomo

1998-01-27 Thread Jeffrey Velez
I ONLY SENT THIS EMAIL IN ALL CAPS!

THANKS ANYWAY!


On 27 Jan 1998, Ben Pfaff wrote:

CAN ANYONE TELL ME WHY I CAN NOT POST OR UNSUBSCRIBE?
 
 Perhaps majordomo is case-sensitive and you are typing everything in
 all-caps?
 


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Settup Majordomo

1998-01-27 Thread Jeffrey Velez
Steve
I run the script as another user and I get no errors, of course this user
is a majordom group.


On Tue, 27 Jan 1998, Steve Mayer wrote:

 Jeffrey,
 
   Verify that the wrapper script in the Majordomo directory is setuid
 root.  Also, log in as someone other than root and run 
 ./wrapper config-test from the majordomo directory (where wrapper is
 located).  This will tell you if there are any permission or
 configuration problems.
 
 Steve Mayer
 [EMAIL PROTECTED]
 
 Jeffrey Velez wrote:
  
  I INSTALLED MAJORDOMO-1.94.4 ON MY DEBIAN LINUX MACHINE USING SENDMAIL,
  BUT I'M GETTING SOME ERROR WHEN TRYING TO POST OR UNSUBSCRIBE. I CAN
  SUBSCRIBE, BUT CAN NOT POST OR UNSUBSCRIBE.
  
  I GET THE FOLLOWING ERROR WHEN DOING SO:
  
  MAJORDOMO ABORT (mj_majordomo)!!
  
  Can't append to /usr/local/majordomo-1.94.4/lists/ccmail: Permission
  denied
  
  MY LISTS DIRECTORY RIGHTS ARE:
  
  drwxrwxrwx   3 majordom majordom 1024 Jan 27 10:18 lists
  
  IN MY LIST DIRECTORY THE FOLLOWING FILES ARE IN THERE:
  
  total 47
  -rw-rw   1 majordom majordom4 Jan 27 06:36 L.ccmail
  -rwxrwxrwx   1 majordom majordom   60 Jan 27 06:26 ccmail
  -rwxrwxrwx   1 majordom majordom16088 Jan 27 06:24 ccmail.config
  -rw-rw-r--   1 majordom majordom24672 Jan 27 06:18 ccmail.info
  -rwxrwxrwx   1 majordom majordom0 Jan 27 06:36 ccmail.new
  -rw-rw   1 majordom majordom7 Jan 27 09:15 ccmail.passwd
  
  CAN ANYONE TELL ME WHY I CAN NOT POST OR UNSUBSCRIBE?
  
  --
  TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
  [EMAIL PROTECTED] .
  Trouble?  e-mail to [EMAIL PROTECTED] .
 


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Settup Majordomo

1998-01-27 Thread Jeffrey Velez

I NOTICE IF I TRY TO CHANGE MAJORDOMO DIRECTORY AS A REGULAR USER, I GET
ACCESS DENIED.

WHAT GROUP SHOULD I CHANGE IT TO, SO THAT ALL USERS CAN CHANGE DIRECTORY
IN MAJORDOMO?






--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Settup Majordomo

1998-01-27 Thread Jeffrey Velez
Sorry about the caps!

On 27 Jan 1998, Martin Bialasinski wrote:

 Jeffrey Velez [EMAIL PROTECTED] writes:
 
  I ONLY SENT THIS EMAIL IN ALL CAPS!
  
  THANKS ANYWAY!
  
  
  On 27 Jan 1998, Ben Pfaff wrote:
  
  CAN ANYONE TELL ME WHY I CAN NOT POST OR UNSUBSCRIBE?
   
   Perhaps majordomo is case-sensitive and you are typing everything in
   all-caps?
   
 Good point :-)
 
 Maybe setleds -caps will help as well.
 
 Or to say it with RFC 1855 (ftp://ds.internic.net/rfc/rfc1855.txt) :
 
 [...]
   - Use mixed case.  UPPER CASE LOOKS AS IF YOU'RE SHOUTING.
 
 And just in case he is the one who has already falsified a comment I gave
 about shouting:
 
 From the same RFC:
 
 - If you are forwarding or re-posting a message you've received, do
   not change the wording.  If the message was a personal message to
   you and you are re-posting to a group, you should ask permission
   first.  You may shorten the message and quote only relevant parts,
   but be sure you give proper attribution.
 
 Greetings,
   Martin
 
 
 --
 TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
 [EMAIL PROTECTED] . 
 Trouble?  e-mail to [EMAIL PROTECTED] .
 


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: nprint error:

1998-01-24 Thread Jeffrey Velez
On Sat, 24 Jan 1998, Hamish Moffatt wrote:

 On Fri, Jan 23, 1998 at 04:52:06AM -0500, Jeffrey Velez wrote:
  I can't mount a print queue on a Novell 4.1 Server using:
  
   nprint -s umsm3 -p .Network_Services.dpg.Mednet.mednet 
  -q pq_mns_helpdesk_dpg_4
  
  I get the following Error:
  
  nprint: Could not find valid connection spec in ncp_initialize
  
  Where is this configured? (ncp_initialize).
 
 I think this occurs because it does not know your username and password.
 You need to use -U username, and it will prompt for your password.
 You can also put these in a dotfile in your home directory (I do not
 recall the name).
 
 Is NDS supported these days with ncpfs? Neat.
 
 Hamish
 -- 
 Hamish Moffatt, [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED]
 Latest Debian packages at ftp://ftp.rising.com.au/pub/hamish. PGP#EFA6B9D5
 CCs of replies from mailing lists are welcome.   http://hamish.home.ml.org
 
--

I tried everything, but it said that it could not find valid connection
spec in ncp_initialize.

Where is this configuration file located in?


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


nprint error:

1998-01-23 Thread Jeffrey Velez
I can't mount a print queue on a Novell 4.1 Server using:

 nprint -s umsm3 -p .Network_Services.dpg.Mednet.mednet 
-q pq_mns_helpdesk_dpg_4

I get the following Error:

nprint: Could not find valid connection spec in ncp_initialize

Where is this configured? (ncp_initialize).


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Help!

1998-01-21 Thread Jeffrey Velez
Why I can Not Post!

---
Jeffrey Velez * [EMAIL PROTECTED] * http://jvelez2.med.miami.edu 
   UM, MNS * 165 Dominion Garage * Miami, FL 33136 * 305/243-3664





--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Newbie Setting up LPRng

1998-01-21 Thread Jeffrey Velez
I installed LPRng on my linux machine using dselect.  How do I set this
program to print to my Remote HP LaserJet 4 using a JetDirect Box?
It's on a Novell Server 4.1.

I never printed on my linux machine, so I don't know if it is setup
already.

Please Help!
Thanks!


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: a single command

1997-12-26 Thread Jeffrey Velez

Just use rm -R (directory name)
Where directory name, put the name of the directory.

---
Jeffrey Velez * [EMAIL PROTECTED] * http://jvelez2.med.miami.edu 
   UM, MNS * 165 Dominion Garage * Miami, FL 33136 * 305/243-3664




On Wed, 24 Dec 1997, Aaron Walker wrote:

 Is there a command to delete all files and subdirectories within a
 directory. For example, I have the directory apps in my home directory.
 Lets says apps has 7 files and 2 directories.  With one command, how can
 I delete the apps directory and all its contents.  I looked at the man
 page but didn't see anything helpful.  Thanks.
 
 --
 ``
 Aaron Walker
 
 Work:
   Site: http://www.iconmedia.com
   Email: [EMAIL PROTECTED]
 
 Personal:
   Site: http://www.iconmedia.com/aaron
   Email: [EMAIL PROTECTED]
 ``
 
 
 
 --
 TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
 [EMAIL PROTECTED] . 
 Trouble?  e-mail to [EMAIL PROTECTED] .
 
 


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .