Sponsored Content
Full Discussion: unix login welcome message
Top Forums UNIX for Dummies Questions & Answers unix login welcome message Post 58186 by zazzybob on Monday 15th of November 2004 05:23:50 PM
Old 11-15-2004
Have a look at /etc/motd.

If it's happening after /etc/motd is displayed it could be an "echo" within one of your shell initialisation files.

If it's not within /etc/motd, post which shell you're using.

Cheers
ZB
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Remove login message

Hi All expert, I am about to perform remote shell to another unix server. But whenever i logged in into the remote server, the message prompt, "Setting up environment for MCI backend databases on Oracle 9.2^J" I'm suppose to rsh and cat a flat file that return only number. I tried "nohup"... (4 Replies)
Discussion started by: agathaeleanor
4 Replies

2. UNIX for Dummies Questions & Answers

I want to change login failure message, "login incorrect"

I want to change login failure message, "login incorrect" deny user login for user id tom sudo passwd -l tom type username and type password on login prompt and then it will display login failure message "login incorrect" console ############ login: tom password: login incorrect... (2 Replies)
Discussion started by: lifegeek
2 Replies

3. UNIX for Dummies Questions & Answers

login message

hi friends.....can anyone help me out.... i want to display a message whenever a user logs in...like goodmorning,goodafternoon etc depending on the time of login.can anyone suggest a shell script for this???? (2 Replies)
Discussion started by: nikhilneela
2 Replies

4. HP-UX

telnet banner message before login

why I didn't set /etc/inetd.conf telnet stream tcp nowait root /usr/lbin/telnetd \ telnetd -b /etc/issue only telnet stream tcp nowait root /usr/lbin/telnetd in /etc/ineted.conf but when I telnet my HPUX machine it shows those message HP-UX hp1008 B.11.31 U ia64 (tb) login: ... (1 Reply)
Discussion started by: alert0919
1 Replies

5. Solaris

error message rmclomv ... SC Login Failure for user Please login:

Hello World ~ HW : SUN Fire V240 OS : Solaris 8 Error message prompts 'rmclomv ... SC login failure ...' on terminal. and Error Message prompts continually 'SC Login Failure for user Please login:' on Single Mode(init S) The System is in normal operation, though In case of rain, Can... (1 Reply)
Discussion started by: lifegeek
1 Replies

6. Solaris

A DT Message error on login... other symptoms

First let me apologize for joining and posting... but this thing is killing me. I can usually solve these problems myself but I am reaching for help now. I have about 2 years Unix 8 experience but I am by no means an expert but not a newb either. A little background. My system runs a... (8 Replies)
Discussion started by: mpb218
8 Replies

7. AIX

Really strange unix message

We are getting this message on our AIX box. No one knows where its coming from. Where can I find any information on it? Warning: file system free space is less than 10 file system total size = -2621440 file system available space = 2485160 file system used space = -5106592 file system... (3 Replies)
Discussion started by: t01scra
3 Replies

8. Shell Programming and Scripting

How to change banner message for console login?

Hi All, Whenever I login to server via console, after providing username (root) it displays a banner message. I want to remove this message Serverabc : root Welcome to Server !!! Password: It is Centos 5.4 box. I have checked /etc/issue and /etc/motd. It does not... (8 Replies)
Discussion started by: kalpeer
8 Replies

9. Post Here to Contact Site Administrators and Moderators

Login message

My location is set to London. Why does the 2nd line of my welcome message say "You are somewhere around Glasgow."? (1 Reply)
Discussion started by: Robert W.Mills
1 Replies
GETLIST(1)						    InterNetNews Documentation							GETLIST(1)

NAME
getlist - Get a list from an NNTP server SYNOPSIS
getlist [-AR] [-h host] [-p port] [list [pattern [types]]] DESCRIPTION
getlist obtains a list from an NNTP server and sends it to standard output. list may be one of "active" (which is the default value), "active.times", "distrib.pats", or "newsgroups". "active" contains a list of all newsgroups carried by the server with the high and low article numbers in the group, and the group status field. "active.times" is a list of newsgroups, their creation times (in seconds since epoch), and the creator of the group. "distrib.pats" is a list of relevant distributions and the newsgroups they apply to. "newsgroups" is a list of newsgroups along with their short descriptions. For more information on the formats of these files, see active(5), active.times(5), distrib.pats(5) and newsgroups(5). The listing files other than the active file are common extensions to the NNTP protocol and may not be available on all servers. For instance, "counts" "distributions", "headers", "moderators", "motd", "overview.fmt" and "subscriptions", amongst other, may be available. Moreover, a uwildmat(3) pattern pattern may also be usable for some of these listing files. For more information on the formats of these files, see distributions(5), moderators(5), motd.news(5) and subscriptions(5). The overview fields obtained with "overview.fmt" are the ones for which the overview database is consistent (see extraoverviewadvertised in inn.conf for more information). The list obtained with "headers" contains the fields that can be retrieved using the HDR command (pattern can then be either "msgid" or "range"). The list obtained with "counts" is like the "active" one except that the number of articles in a newsgroup is mentioned just before the flag of this newsgroup. The pattern parameter may be used with a list value of "active", "active.times" or "newsgroups" to limit the output. If given, only entries corresponding to newsgroups that match the uwildmat(3) pattern pattern will be printed. If the list parameter is "active", a third parameter, types, may also be used to restrict the list. If given, only entries corresponding to newsgroups with a newsgroup mode found in types will be printed. For example, a types value of "y" would only show unmoderated groups, and a types value of "ym" would show all unmoderated and moderated groups but not aliased groups or groups that disallow postings. OPTIONS
-A Try to authenticate using the username and password information in passwd.nntp(5) before issuing the LIST command. -h host Connect to the server host rather than to the value of server in inn.conf or the value of the NNTPSERVER environment variable. -p port Connect to the port port, which is by default 119. -R Try to switch to nnrpd with a MODE READER command before issuing the LIST request. It can be useful in case a feeding access exists for the news server: more information can be retrieved from nnrpd, compared with innd. EXAMPLES
The following command will obtain the one-line descriptions of all newsgroups found on UUNET: getlist -h news.uu.net newsgroups The following command will show the active file entries for all moderated comp.* groups on the default server: getlist active 'comp.*' m The following command lists all groups where local postings are permitted, are moderated or aliased: getlist active '*' ym= Note that the wildcard character "*" has to be quoted by simple quotes to protect it from the shell. HISTORY
Written by Landon Curt Noll <chongo@toad.com> for InterNetNews. Rewritten in POD by Russ Allbery <rra@stanford.edu>. $Id: getlist.pod 8837 2009-12-03 21:08:59Z iulius $ SEE ALSO
active(5), active.times(5), distrib.pats(5), distributions(5), inn.conf(5), moderators(5), motd.news(5), newsgroups(5), nnrpd(8), passwd.nntp(5), subscriptions(5), uwildmat(3). INN 2.5.2 2010-02-08 GETLIST(1)
All times are GMT -4. The time now is 10:12 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy