banner:command not found


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting banner:command not found
# 1  
Old 08-11-2008
Bug banner:command not found

hi,
When i execute banner command the output is being displayed as
banner:command not found

When ever i give yum install banner the output is

Loading "installonlyn" plugin
Setting up Install Process
Setting up repositories
Parsing package install arguments
Nothing to do

what is the problem here.
Any help appreciated.

Thanks,
Prakash.Smilie
# 2  
Old 08-11-2008
which os version you are using ?
# 3  
Old 08-11-2008
Bug

I am using centos 5.2

Thanks,
Prakash
# 4  
Old 08-11-2008
It could be installed but not in the PATH. Either you can do
Code:
rpm -qa --list| grep banner
#or a bit more brutal not depending on any package tool
find / -type f -name "banner" -print

I have to admit that I don't know if yum-packages are the same as rpms or can be listed with rpm commands - have no Fedora/RedHat at hand.
Nevertheless, you might check it with a similar yum command if it is definetly installed.
If you found it, maybe add it to your PATH variable in your .profile or wherever you have your PATH definition.
# 5  
Old 08-11-2008
Hi,
Thanks for your reply.
When i give the first command the output is

/usr/share/cups/banners
/usr/share/cups/banners/classified
/usr/share/cups/banners/confidential
/usr/share/cups/banners/mls
/usr/share/cups/banners/secret
/usr/share/cups/banners/selinux
/usr/share/cups/banners/standard
/usr/share/cups/banners/te
/usr/share/cups/banners/topsecret
/usr/share/cups/banners/unclassified
/usr/share/pixmaps/tsclient/banner-ar.png
/usr/share/pixmaps/tsclient/banner-en.png
/usr/share/pixmaps/tsclient/banner-es.png
/usr/share/pixmaps/tsclient/banner-hu.png
/usr/share/pixmaps/tsclient/banner-ja.png
/usr/share/pixmaps/tsclient/banner-ms.png
/usr/share/pixmaps/tsclient/banner-nl.png
/usr/share/pixmaps/tsclient/banner-pa.png
/usr/share/pixmaps/tsclient/banner-ru.png
/usr/share/pixmaps/tsclient/banner-sv.png
/usr/share/pixmaps/tsclient/banner-zh-cn.png
/usr/share/pixmaps/tsclient/banner-zh-tw.png

When i give the second command you have mentioned there the output is nothing but the prompt

thanks,
Prakash.
# 6  
Old 08-11-2008
Then it seems there is no tool/binary on your harddisk called "banner". Tbh I don't know that tool or what it should do. Is it listed as available by yum or any other package manager?

Maybe there is an alternative tool/binary for it.
# 7  
Old 08-11-2008
HI,
When ever i give yum install to the package that contains banner, its displaying that

Loading "installonlyn" plugin
Setting up Install Process
Setting up repositories
Parsing package install arguments
Nothing to do

Please check this once.
there is one doubt for me.
Do a system require printer to execute banner command?

Thanks,
Prakash.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

[Solved] Banner not found ,need equivalent comand in Linux

Hi guys, I need to create a large text,In Unix i used banner command.But when i use banner in linux i am getting command not found error. My Os version is Linux Please help me what is the equvalent command for banner to achieve. I cant able to install banner in Linux because of admin... (2 Replies)
Discussion started by: mohanalakshmi
2 Replies

2. Shell Programming and Scripting

Banner command equivalent in Linux

Hi guys can i get banner equivalent command in linux. I am using Linux xcclx0619.target.com 2.6.18-308.11.1.el5xen #1 SMP Fri Jun 15 16:19:17 EDT 2012 x86_64 x86_64 x86_64 GNU/Linux (1 Reply)
Discussion started by: mohanalakshmi
1 Replies

3. Shell Programming and Scripting

Banner causes scp to fail from script but not command line.

Hi, We have an interesting issue which is similar to the one in this thread, but that never provided a full answer. - Ohh apparently I can't post URLs till I have 5 posts, sorry. We have a simple script that copies files from one shelf to the other. Both shelves have an ssh banner defined. ... (3 Replies)
Discussion started by: RECrerar
3 Replies

4. UNIX for Dummies Questions & Answers

UNIX Banner Command

Hi, I am logging in into an UNIX environment with my user id and password. I want to display my name there , each time I login into the environment, for which I can use the banner command. Which file should I add the banner command to , so that I will get the desired result? Regards,... (7 Replies)
Discussion started by: Kishore_1
7 Replies

5. Shell Programming and Scripting

regarding banner command

Iam a MCA student having some doubts about 1) different disk related commands 2) Banner command 3) Different file related commands 4) set eb (where it is used) (1 Reply)
Discussion started by: gururajbhat
1 Replies

6. Shell Programming and Scripting

doubt in banner command !!!

hello, I am using banner command in my shell.I used :- The problem is that the output is printed in 3 separate lines.I want to display it in a single line.If the size is not enough then at least 2 words should come in the same line. Can you tell me what is the option in banner that would help... (4 Replies)
Discussion started by: nsharath
4 Replies

7. UNIX for Dummies Questions & Answers

banner command

can I use Banner command in Linux, if not, what is the similar command in linux then... (7 Replies)
Discussion started by: vasikaran
7 Replies

8. Shell Programming and Scripting

how can i check in csh if command found or not found ?

hello all im trying to use in sun Solaris the information received from the top command now i several machines that dont have install the top program so when im running the script im geting error saying after im running this code : set MemoryInfo = `top | grep Memory` if (... (2 Replies)
Discussion started by: umen
2 Replies

9. Linux

banner command

is there a similiar function to the solaris banner function in linux? (1 Reply)
Discussion started by: BG_JrAdmin
1 Replies

10. UNIX for Dummies Questions & Answers

Banner command

Hey all, I want to use the banner/echo command to write messages on different console windows. I knew that before, but I completely forget how to do it ! I just remenber that /dev/pts/# is the number of the window. and it's useful. It would be great if someone knows how to solve my... (4 Replies)
Discussion started by: maxwell17
4 Replies
Login or Register to Ask a Question