From owner-freebsd-questions Thu Mar 30 5:44:27 2000 Delivered-To: freebsd-questions@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 4726237B97F for ; Thu, 30 Mar 2000 05:44:10 -0800 (PST) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.13 #1) id 12afEu-0006g4-00; Thu, 30 Mar 2000 15:44:00 +0200 From: Sheldon Hearn To: =?Windows-1252?Q?Ari_Sigur=F0sson?= Cc: freebsd-questions@FreeBSD.ORG Subject: Re: messages on screen In-reply-to: Your message of "Thu, 30 Mar 2000 13:05:28 +0100." <012101bf9a40$3de25210$05aa90c2@solver.is> Date: Thu, 30 Mar 2000 15:44:00 +0200 Message-ID: <25671.954423840@axl.ops.uunet.co.za> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Thu, 30 Mar 2000 13:05:28 +0100, =?Windows-1252?Q?Ari_Sigur=F0sson?= wrote: > sorry if I forgot to mention that I'm not rather new to unix > what is vty and HUP signal? The term "vty" means "virtual terminal". When your FreeBSD box boots up (assuming you don't automatically launch X), you'll see something like: FreeBSD (hostname) (ttyv0) login: What's on your screen is a virtual terminal connected to /dev/ttyv0. If you press Alt-F2, you'll see the virtual terminal connected to /dev/ttyv1. Usually, the virtual terminal connected to /dev/ttyv0 is the console. The stock /etc/syslog.conf configures syslogd(8) to send certain (usually) important messages to the console. I'd recommend that you leave this alone. Instead, play around on virtual terminals other than ttyv0, by switching to them with Alt-F2, Alt-F3 etc. > another question, how do I change group so I don't get > > "su : you are not in the correct group to su root." The FreeBSD su(1) utility insists that users belong to group wheel before it allows them to attempt to change user identity to that of the super-user (i.e. root). You need to add your non-priveledged user to group wheel. As root, edit the file /etc/group and append your user name to the line that begins with "wheel:". You should separate your user name from the last one on the line with a comma, e.g. wheel:*:0:root,sheldonh The format of the /etc/group file is described in the group(5) manual page. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message