Change default shell


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Change default shell
# 8  
Old 10-08-2008
No, not on this box, but sh is in there.
The test box has a nightly build on

0.7 Sardaukar (revision 3514)
built on Fri Jun 6 22:03:39 CEST 2008
# 9  
Old 10-08-2008
Managed to create a small script just now, it creates a directory /root/.ssh and then copy the authorized_keys2 file to it, from local disk and change its permissions.
Can get it to run and work from the CLI, just trying to get it to work from PostInit in the WebGUI now.

The script in your eyes is probably the equivalent of a 3 year old child's scrawl with crayon, but at least I managed to get it to work.

Last edited by npaisnel; 10-08-2008 at 03:31 PM.. Reason: Speling and grammar
# 10  
Old 10-08-2008
No, it is not there.

I have nightly build
0.7 Sardaukar (revision 3514)
built on Fri Jun 6 22:03:39 CEST 2008
on this test box

I can always put a 0.69b4 back on.

Anyway. I have had some success.
I managed to create a small script that creates a directory, copies my authorized_keys2 file to it from a local HDD, and chmod's it.
the script, also stored on the local HDD I have got it running PostInit.
It also seems to work. Probably very childish script that you guys could have done in a much more elegant way, but it works, I have acheived something today any how.

Thanks for your help Dan, would not have done it without you.


So thanks Dan,

Neil


Edit: Sorry for the long list of posts, don't quite know what is happening, they were not there when I started this post, then after posting, they were suddenly there. Maybe the browser is pulling the page form cache rather than refreshing? I am running all from USB stick and portable apps. Any way that is not important.

I would still like to get a basic sh shell, so I can get on with the tutorial

Last edited by npaisnel; 10-08-2008 at 03:29 PM.. Reason: Seen new posts
# 11  
Old 10-08-2008
0.7 is in alpha stage for the moment. Once FreeBSD 6.4 will be released we can release the 0.69 final and move on with 0.7.

PS: Take a look at https://www.unix.com/shell-programmin...-spaces-2.html
# 12  
Old 10-08-2008
Gulp.....wont be trying anything like that lot for a while......ever.... Smilie


I was happy to get this to work and then work out the syntax to put in the PostInit line toget it to run without being in that directory

cd /root
mkdir .ssh
cp /mnt/BootDisk/authorized_keys2 /root/.ssh/
cd /root/.ssh
chmod 600 authorized_keys2

OK, so what would be a neater way of doing the above?

Last edited by npaisnel; 10-08-2008 at 05:10 PM..
# 13  
Old 10-09-2008
You don't need to cd to a directory -- any file-oriented command will accept a full path name just as well as a plain file name.

Code:
mkdir -p /root/.ssh  # -p makes it not do anything if the directory exists already
cp /mnt/BootDisk/authorized_keys2 /root/.ssh/
chmod 600 /root/.ssh/authorized_keys2

If you want to avoid repeating the path name, use a variable to abbreviate it.

Code:
p=/root/.ssh
a=authorized_keys2
mkdir -p "$p"
cp /mnt/BootDisk/"$a" "$p"/
chmod 600 "$p"/"$a"

This way, it's also easier to globally replace the path name if you ever want to do that -- only one place to change.

PS. Since this question is by and large unrelated to your original question,. perhaps you should have started a new thread.
# 14  
Old 10-09-2008
Yes, your right, prob should have startd a new thread.

I see what you mean when you said:

You don't need to cd to a directory -- any file-oriented command will accept a full path name just as well as a plain file name.

At first I was wondering; "If you do not use cd to move into a dir, how did you move into that directory."

If I understand correctly I think what you are saying is that,you don't need to go into that directory to create a new directory inside it, just use the complete path.

I had just started to read a bit about variables, and seen basic use in the tutorial I have been trying to work through....but until I get sh rather than csh, I am still a bit stuck.

Later today, I will downgrade my test box to the older 0.69b4 as suggested by Dan, and I should be able to learn a bit more.

Up until two weeks ago, I had not even looked at doing anything via the command line since I was at school 20 years ago, so learning a lot at the moment.

Thanks for the help

Neil

Last edited by npaisnel; 10-09-2008 at 12:44 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Change default shell of a specific user with awk

I would like to replicate the functionality of chsh (or passwd -e) by awk. This is what I got so far, but I think there should be an easier way to search and replace field $7 only for lines beginning with user_name: awk -v user_name="$user_name" -v new_shell="$new_shell" -F: '$1 == user_name {... (2 Replies)
Discussion started by: nomad84
2 Replies

2. Shell Programming and Scripting

Shell script to change the ip

I am writing a simple DHCP server application that gets ip from a server at boot up ! i wrote a shell script to run the java program that obtains ip from server on another machine... The problem is when i have obtained the ip i store it in a file ! using awk i retrieve the... (1 Reply)
Discussion started by: dinesh17
1 Replies

3. Shell Programming and Scripting

command to change the shell

Hi, I want to change the shellrite now I am in ksh shell , I want to switch to bash shell I have tried the command ... $ chsh -s /bin/bash but it is showing error .... -ksh: chsh: not found (1 Reply)
Discussion started by: rahul125
1 Replies

4. Solaris

Can't change default shell

Hello, I've changed the shell for user jack in /etc/passwd to ksh but when I log in it's still saying the shell is bash. Any help much appreciated (4 Replies)
Discussion started by: Grueben
4 Replies

5. UNIX for Dummies Questions & Answers

How to change display in shell

Hi The line for input of my shell currently looks like in the image attached. What I wanted is for the line where I input, it showed in last, the folder I'm in (in the attached images is "Documents") and not my user name "Pedro_Gordo". How do I do this? My OS is Mac OS X 10.6. Thanks in... (7 Replies)
Discussion started by: tirwit
7 Replies

6. UNIX for Dummies Questions & Answers

How to change Default Shell for any user?

Hi, I am new for solaris... how can we change default shell for any user and how to check that which shall currently we are in...... (1 Reply)
Discussion started by: lalit21984
1 Replies

7. Shell Programming and Scripting

how to change default shell in linux?

currently the default shell in my linux enviornemnt is ksh. how to change the default shell to bash? thanks! (8 Replies)
Discussion started by: princelinux
8 Replies

8. Shell Programming and Scripting

How to change your default login shell.

I am new to UNIX hence the question. Most of the time when I have an environment set up for me to develop my systems, I have had my ID logon and I can edit the .profile for my account and it understand commands korn shell. It seems this machine, a new SUN machine, was setup with users getting the... (3 Replies)
Discussion started by: klarue7
3 Replies

9. UNIX for Dummies Questions & Answers

Change the default shell from bash to ksh

Currently my default shell is bash.How can i change itto ksh... (2 Replies)
Discussion started by: dr46014
2 Replies

10. Shell Programming and Scripting

How can I change my default shell

hi ; Right now my default shell on our school system is : /bin/ksh but i want to change it to another shell. There is also bash shell installed in the system as : /bin/bash So, how can I change my default shell to bash shell? Or maybe any other shell? (17 Replies)
Discussion started by: milhan
17 Replies
Login or Register to Ask a Question