Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Linux > Suse

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-22-2008, 07:01 PM
anonuserca@yahoo.com
 
Posts: n/a
how do you install or configure csh?

Hello, how do I turn on or install the csh option on open suse 11?
Reply With Quote
  #2 (permalink)  
Old 07-22-2008, 07:33 PM
Nikos Chantziaras
 
Posts: n/a
Re: how do you install or configure csh?

anonuserca@yahoo.com wrote:
> Hello, how do I turn on or install the csh option on open suse 11?


Check if it's there. Simply type "csh". If it starts, it's installed.
Go to YaST, user management section, and change your shell from bash
to csh there.

If it's not installed, install it in YaST software manager first.
Reply With Quote
  #3 (permalink)  
Old 07-22-2008, 08:20 PM
houghi
 
Posts: n/a
Re: how do you install or configure csh?

anonuserca@yahoo.com wrote:
>
>
> Hello, how do I turn on or install the csh option on open suse 11?


Installing you do with YaST. Software, Software management.
Making it default, you do with YaST. Security and Users, User and group
management, select user you want to have csh and go to Edit. Next to
Details and select /bin/csh.

You can make a selection there or select anything you want. E.g. I once
had a login 'adventure' and a password 'adventure' and that user had
instead of /bin/bash or any of the other options
/usr/local/bin/login_adventure.sh and that contained:
#!/bin/bash
clear
if [ ! -e .lockfile ]
then
touch .lockfile
/usr/games/adventure
rm .lockfile
else
echo "Sorry, somebody is already playing."
fi

kill -9 $$

What that did was run /usr/games/adventure when you logged in. A second
person would not be able to log in and /usr/games/adventure was the only
thing you could run.

houghi
--
Let's not be too tough on our own ignorance. It's the thing that makes
America great. If America weren't incomparably ignorant, how could we
have tolerated the last eight years? -- Frank Zappa, in 1988
Reply With Quote
  #4 (permalink)  
Old 07-23-2008, 03:17 PM
Gary Gapinski
 
Posts: n/a
Re: how do you install or configure csh?

anonuserca@yahoo.com wrote:
> Hello, how do I turn on or install the csh option on open suse 11?


man chsh

Also, see http://www.faqs.org/faqs/unix-faq/shell/csh-whynot/.
Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Linux > Suse


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 12:59 AM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109